mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 16:33:51 +00:00
1b1aced296
* style: element relationship * feat: utility to add first element * refactor: organise dir * ux: deleting element closes drawer * fix: issue with escaped characters * fix: issue with overflow in events list * fix: prevent event timer from receiving non event * style: prevent small shift on class change * style: visually detach event editor * fix: entry block knows last event * fix: skip event timer updates on non events * fix: prevent electron OPENGL error * style: cleanup text styles * style: unify input styles * refactor: simplify style and composition * refactor: tweaks on style + ts * refactor: add validation to events post * fix: handle non events in event timer * refactor: cleanup unused
58 lines
822 B
SCSS
58 lines
822 B
SCSS
@use '../../../theme/main' as *;
|
|
@use '../../../theme/mixins' as *;
|
|
|
|
.messageContainer,
|
|
.onAirToggle {
|
|
display: flex;
|
|
gap: 0.5em;
|
|
padding: 0.5em;
|
|
}
|
|
|
|
.messageContainer {
|
|
flex-direction: column;
|
|
|
|
.inputItems {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
gap: 1em;
|
|
}
|
|
|
|
.label {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-size: 0.9em;
|
|
color: $label-gray;
|
|
}
|
|
|
|
.inputRowActive {
|
|
.label {
|
|
color: $action-blue;
|
|
}
|
|
}
|
|
}
|
|
|
|
.onAirToggle {
|
|
margin-top: 1em;
|
|
align-items: center;
|
|
display: grid;
|
|
grid-template-areas:
|
|
'btn label'
|
|
'btn osc';
|
|
grid-template-columns: 2.5em 1fr;
|
|
grid-template-rows: 1.2em 0.8em;
|
|
|
|
.btn {
|
|
grid-area: btn;
|
|
}
|
|
|
|
.onAirLabel {
|
|
grid-area: label;
|
|
font-size: 1.2em;
|
|
}
|
|
|
|
.oscLabel {
|
|
@include osc-label;
|
|
grid-area: osc;
|
|
}
|
|
}
|