mirror of
https://github.com/cpvalente/ontime.git
synced 2026-09-10 08:39:34 +00:00
refactor: allow overriding operator styles
This commit is contained in:
committed by
Carlos Valente
parent
73ada99596
commit
0b8a694e4f
@@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
&.running {
|
&.running {
|
||||||
border-top: 1px solid $gray-1300;
|
border-top: 1px solid $gray-1300;
|
||||||
background-color: $active-red;
|
background-color: var(--operator-running-bg-override, $active-red);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.past {
|
&.past {
|
||||||
@@ -92,12 +92,14 @@
|
|||||||
|
|
||||||
.fields {
|
.fields {
|
||||||
grid-area: fields;
|
grid-area: fields;
|
||||||
font-size: 1.25rem;
|
font-size: var(--operator-customfield-font-size-override, 1.25rem);
|
||||||
font-weight: 400;
|
font-weight: 400;
|
||||||
color: $ui-black;
|
color: $ui-black;
|
||||||
margin: 0.25rem 0;
|
margin: 0.25rem 0;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
|
gap: 0.5em;
|
||||||
|
row-gap: 0.25em;
|
||||||
|
|
||||||
.field {
|
.field {
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
|
|||||||
Reference in New Issue
Block a user