mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-16 12:53:32 +00:00
3603b836f6
* refactor: typescript migration * chore: remove prop-types package * refactor: file structure * refactor: migrate ontime table to tanstack table 8 * refactor: rundown controller uses service as data source * refactor: convert to typescript * feat: caching store * refactor: add delay values to rundown * feat: toggle past visibility * chore: update tests * refactor: add extra fields to CSV * style: show skipped events * chore: add route to navigation menu * style: allow jumping to bottom * chore: add tests
45 lines
657 B
SCSS
45 lines
657 B
SCSS
@use '../../../theme/v2Styles' as *;
|
|
@use '../../../theme/ontimeColours' as *;
|
|
|
|
.tableSettings {
|
|
grid-area: settings;
|
|
padding: 1rem;
|
|
background-color: $ui-black;
|
|
display: flex;
|
|
font-size: $inner-section-text-size;
|
|
}
|
|
|
|
.leftPanel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.sectionTitle {
|
|
color: $gray-700;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.options {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
column-gap: 1rem;
|
|
row-gap: 0.25em;
|
|
}
|
|
|
|
.option {
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.rightPanel {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
|
|
padding-left: 2rem;
|
|
}
|