mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-10 18:03:47 +00:00
113 lines
1.8 KiB
SCSS
113 lines
1.8 KiB
SCSS
@use '../../../theme/viewerDefs' as *;
|
|
|
|
$timeline-entry-height: 20px;
|
|
$lane-height: 120px;
|
|
$timeline-height: 1rem;
|
|
|
|
.timeline {
|
|
flex: 1;
|
|
font-weight: 600;
|
|
color: $ui-white;
|
|
background-color: $ui-black;
|
|
}
|
|
|
|
.timelineEvents {
|
|
position: relative;
|
|
height: 100%;
|
|
}
|
|
|
|
.column {
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: absolute;
|
|
border-left: 1px solid $ui-black;
|
|
// avoiding content being larger than the view
|
|
height: calc(100% - 3rem);
|
|
|
|
// decorate timeline element
|
|
&::before {
|
|
content: '';
|
|
position: absolute;
|
|
box-sizing: content-box;
|
|
top: -$timeline-height;
|
|
left: 0;
|
|
right: 0;
|
|
height: $timeline-height;
|
|
background-color: $white-40;
|
|
}
|
|
}
|
|
|
|
.smallArea {
|
|
.content {
|
|
gap: 0rem;
|
|
writing-mode: vertical-rl;
|
|
}
|
|
|
|
.timeOverview {
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.hide {
|
|
// hide text elements
|
|
& > div {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
padding-top: 0.25rem;
|
|
padding-inline-start: 0.25rem;
|
|
overflow: hidden;
|
|
line-height: 1rem;
|
|
|
|
background-color: var(--lighter, $viewer-card-bg-color);
|
|
border-bottom: 2px solid $ui-black;
|
|
box-shadow: 0 0.25rem 0 0 var(--color, $gray-300);
|
|
|
|
&[data-status='done'] {
|
|
opacity: $opacity-disabled;
|
|
}
|
|
|
|
&[data-status='live'] {
|
|
box-shadow: 0 0.25rem 0 0 $active-red;
|
|
}
|
|
}
|
|
|
|
.delay {
|
|
margin-top: -2rem;
|
|
margin-bottom: -1rem;
|
|
}
|
|
|
|
.timeOverview {
|
|
padding-top: 0.25rem;
|
|
padding-inline-start: 0.25em;
|
|
text-transform: capitalize;
|
|
white-space: normal;
|
|
height: 6rem;
|
|
|
|
&[data-status='done'] {
|
|
opacity: $opacity-disabled;
|
|
}
|
|
|
|
&[data-status='live'] {
|
|
.status {
|
|
color: $active-red;
|
|
}
|
|
}
|
|
|
|
&[data-status='future'] {
|
|
.status {
|
|
color: $green-500;
|
|
}
|
|
}
|
|
}
|
|
|
|
.cross {
|
|
text-decoration: line-through;
|
|
}
|