Files
ontime/apps/client/src/views/cuesheet/cuesheet-table/cuesheet-table-elements/TextLikeInput.module.scss
T
Carlos Valente 4d419c0877 refactor: style tweaks and bug fixes
- italic and bold for rundown metadata entries
- allow deleting groups
- make groups in order
- correct style for milestones
- open playing groups
- style tweaks
2025-07-12 18:41:17 +02:00

31 lines
546 B
SCSS

/* element matching input styles */
.textInput {
height: 2rem;
background-color: transparent;
border-radius: $component-border-radius-md;
text-wrap: nowrap;
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;
}
}