mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-09 09:23:51 +00:00
657cc22b44
* feat: parse cue * refactor: get delay from backend * feat: add cue to UI * refactor: remove deprecated delay logic * refactor: extract studio clock specific logic * refactor: extract utilities * refactor: fix issue with missing key * style: prevent cue overflow * style: prevent whitespace wrap * feat: add support for cues in integrations
108 lines
1.4 KiB
SCSS
108 lines
1.4 KiB
SCSS
@use '../../theme/v2Styles' as *;
|
|
|
|
.eventEditor {
|
|
padding: 1rem 2rem 2rem 2rem;
|
|
width: 100%;
|
|
gap: max(1rem, 2vh);
|
|
|
|
display: grid;
|
|
grid-template-areas: 'time left right';
|
|
grid-template-columns: auto 1fr 1fr;
|
|
}
|
|
|
|
.timeOptions {
|
|
grid-area: time;
|
|
display: flex;
|
|
gap: 1.5rem;
|
|
|
|
.timers,
|
|
.timeSettings {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
}
|
|
|
|
.left,
|
|
.right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.left {
|
|
grid-area: left;
|
|
padding: 0 1rem;
|
|
border-left: 1px solid $border-color-ondark;
|
|
}
|
|
|
|
.right {
|
|
padding-left: 1rem;
|
|
grid-area: right;
|
|
border-left: 1px solid $border-color-ondark;
|
|
}
|
|
|
|
@mixin input-label() {
|
|
font-size: calc(1rem - 3px);
|
|
color: $label-gray;
|
|
}
|
|
|
|
.countedInput {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
@include input-label;
|
|
}
|
|
|
|
.inputLabel {
|
|
display: block;
|
|
@include input-label;
|
|
|
|
&.delayLabel {
|
|
color: $ontime-delay-text;
|
|
}
|
|
|
|
&.publicToggle {
|
|
height: 2rem;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
}
|
|
|
|
.eventActions {
|
|
margin-left: auto;
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.spacer {
|
|
height: 1.25rem;
|
|
}
|
|
|
|
.inline {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.splitTwo {
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: 1.5rem;
|
|
}
|
|
|
|
.column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.padTop {
|
|
margin-top: 0.5rem;
|
|
}
|
|
|
|
.fullHeight {
|
|
height: 100%
|
|
}
|