mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 03:43:50 +00:00
ac4257ece9
fix: parsing of custom fields for blocks refactor: extract cuesheet settings refactor: cuesheet actions refactor: improve cuesheet performance on resizing
30 lines
525 B
SCSS
30 lines
525 B
SCSS
/* element matching input styles */
|
|
.textInput {
|
|
height: 2rem;
|
|
background-color: transparent;
|
|
border-radius: $component-border-radius-md;
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.25rem;
|
|
letter-spacing: 0.5px;
|
|
font-size: 1rem;
|
|
font-variant-numeric: tabular-nums;
|
|
|
|
overflow: hidden;
|
|
|
|
&.delayed {
|
|
color: $ontime-delay-text;
|
|
}
|
|
|
|
&.muted {
|
|
// we use opacity instead of colour to handle delayed values
|
|
opacity: 0.4;
|
|
}
|
|
|
|
&:hover {
|
|
background-color: $gray-1100;
|
|
cursor: text;
|
|
}
|
|
}
|