mirror of
https://github.com/lutinglt/gitea-github-theme.git
synced 2025-12-24 07:28:26 +00:00
38 lines
647 B
SCSS
38 lines
647 B
SCSS
// Made by Luting ^-^
|
|
.job-step-summary {
|
|
color: var(--color-console-fg-subtle);
|
|
}
|
|
|
|
.job-log-line {
|
|
color: var(--color-text);
|
|
|
|
&:hover {
|
|
color: var(--color-console-fg);
|
|
}
|
|
}
|
|
|
|
.job-brief-item {
|
|
position: relative;
|
|
border-radius: 0.5rem !important;
|
|
|
|
&:hover {
|
|
background-color: var(--color-hover) !important;
|
|
}
|
|
|
|
&.selected {
|
|
background-color: #161a21 !important;
|
|
|
|
&:after {
|
|
overflow: visible;
|
|
background: #1f6feb;
|
|
border-radius: 0.375rem;
|
|
content: '';
|
|
height: 1.8rem;
|
|
left: calc(0rem * -1);
|
|
position: absolute;
|
|
top: calc(50% - 13px);
|
|
width: 0.25rem;
|
|
}
|
|
}
|
|
}
|