mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-05 23:43:57 +00:00
5e481d49da
* style: labels on added time * style: remove mentions of PiP * refactor: unify usage of ms for timers * refactor: create events with 0 duration * style: several small tweaks * refactor: keep block when applying delays * feat: blocks have titles * style: improvements in time entry warnings * style: override progress bar styles * style: prevent overflow * feat: show character count in editor * refactor: provide initial payload * refactor: lower test boundary * refactor: get colour from swatches * style: rename title block * chore: version bump
38 lines
562 B
SCSS
38 lines
562 B
SCSS
@use "../../../../theme/v2Styles" as *;
|
|
|
|
$input-font-size: 15px;
|
|
$input-delayed-border-color: #E69056;
|
|
|
|
.timeInput {
|
|
width: fit-content !important;
|
|
|
|
.inputLeft {
|
|
max-width: fit-content;
|
|
}
|
|
|
|
.inputLeft,
|
|
.inputButton {
|
|
aspect-ratio: 1;
|
|
}
|
|
|
|
.inputField {
|
|
font-size: $input-font-size;
|
|
letter-spacing: 1px;
|
|
width: 7.5em;
|
|
padding: 0 0 0 2.6em;
|
|
}
|
|
|
|
.warn {
|
|
&::after {
|
|
content: "*";
|
|
color: $warning-orange;
|
|
}
|
|
}
|
|
|
|
&.delayed {
|
|
.inputField {
|
|
border: 1px solid $input-delayed-border-color;
|
|
}
|
|
}
|
|
}
|