mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-22 15:39:11 +00:00
style: tweaks to editor (#738)
This commit is contained in:
@@ -29,7 +29,7 @@ $skip-opacity: 0.1;
|
||||
}
|
||||
|
||||
&.selected {
|
||||
background-color: $gray-1350;
|
||||
background-color: $gray-1325;
|
||||
}
|
||||
|
||||
&.play {
|
||||
@@ -123,15 +123,12 @@ $skip-opacity: 0.1;
|
||||
.eventTimers {
|
||||
grid-area: times;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: $block-clearance;
|
||||
height: 100%;
|
||||
|
||||
.timerNote {
|
||||
display: grid;
|
||||
place-content: center;
|
||||
color: $blue-500;
|
||||
margin-right: 0.5em;
|
||||
margin-right: $block-clearance;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
}
|
||||
@@ -145,9 +142,7 @@ $skip-opacity: 0.1;
|
||||
|
||||
.eventActions {
|
||||
grid-area: actions;
|
||||
display: flex;
|
||||
gap: $block-clearance;
|
||||
justify-content: flex-end;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.progressBg {
|
||||
|
||||
@@ -24,7 +24,7 @@ function formatOverlap(previousEnd: number | null, timeStart: number): string |
|
||||
|
||||
const overlapString = removeLeadingZero(millisToString(Math.abs(overlap)));
|
||||
|
||||
return `${overlap > 0 ? 'Overlap' : 'Gap'}: ${overlapString}`;
|
||||
return `${overlap > 0 ? 'Overlap' : 'Gap'} ${overlapString}`;
|
||||
}
|
||||
|
||||
export default function RundownIndicators(props: RundownIndicatorProps) {
|
||||
|
||||
Reference in New Issue
Block a user