mirror of
https://github.com/go-gitea/gitea
synced 2025-07-24 19:28:38 +00:00
fix: use declared colors
This commit is contained in:
@@ -320,7 +320,7 @@ export function initRepositoryActionView() {
|
|||||||
display: block;
|
display: block;
|
||||||
margin: 5px 0;
|
margin: 5px 0;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
background: #f8f8f8;
|
background: var(--color-info-bg);
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
button.job-brief-rerun {
|
button.job-brief-rerun {
|
||||||
@@ -330,6 +330,9 @@ export function initRepositoryActionView() {
|
|||||||
outline: none
|
outline: none
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
a.job-brief-item:hover {
|
||||||
|
background-color: var(--color-secondary);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -340,8 +343,8 @@ export function initRepositoryActionView() {
|
|||||||
|
|
||||||
.action-view-right {
|
.action-view-right {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
background-color: #262626;
|
background-color: var(--color-console-bg);
|
||||||
color: #d6d6d6;
|
color: var(--color-console-fg);
|
||||||
max-height: 100%;
|
max-height: 100%;
|
||||||
margin-right: 10px;
|
margin-right: 10px;
|
||||||
|
|
||||||
@@ -351,13 +354,12 @@ export function initRepositoryActionView() {
|
|||||||
|
|
||||||
.job-info-header {
|
.job-info-header {
|
||||||
.job-info-header-title {
|
.job-info-header-title {
|
||||||
color: #fdfdfd;
|
|
||||||
font-size: 150%;
|
font-size: 150%;
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
.job-info-header-detail {
|
.job-info-header-detail {
|
||||||
padding: 0 10px 10px;
|
padding: 0 10px 10px;
|
||||||
border-bottom: 1px solid #666;
|
border-bottom: 1px solid var(--color-grey);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -378,7 +380,7 @@ export function initRepositoryActionView() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.job-step-summary:hover {
|
.job-step-summary:hover {
|
||||||
background-color: #333;
|
background-color: var(--color-black-light);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
@@ -408,11 +410,11 @@ body > div.full.height {
|
|||||||
display: flex;
|
display: flex;
|
||||||
line-num {
|
line-num {
|
||||||
width: 48px;
|
width: 48px;
|
||||||
color: #555;
|
color: var(--color-grey-light);
|
||||||
text-align: right;
|
text-align: right;
|
||||||
}
|
}
|
||||||
log-time {
|
log-time {
|
||||||
color: #777;
|
color: var(--color-grey-light);
|
||||||
margin-left: 10px;
|
margin-left: 10px;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user