mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-14 20:03:52 +00:00
8ad260d28a
fix: parsing of custom fields for blocks refactor: extract cuesheet settings refactor: cuesheet actions refactor: improve cuesheet performance on resizing
36 lines
753 B
SCSS
36 lines
753 B
SCSS
@import '../CuesheetTable.module.scss';
|
|
|
|
.blockRow {
|
|
margin-top: 1rem;
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: start;
|
|
font-size: 1rem;
|
|
border-radius: 2px 0 0 0;
|
|
background-color: $gray-1300;
|
|
border-left: 4px solid var(--user-bg, $gray-500);
|
|
background: color-mix(in srgb, transparent 90%, var(--user-bg, $gray-500) 10%);
|
|
|
|
position: relative;
|
|
line-height: 1em;
|
|
|
|
td {
|
|
min-height: 3.5rem;
|
|
padding-top: 0.75rem !important; // fighting styles from cuesheet-table
|
|
}
|
|
|
|
.indexColumn {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.title {
|
|
font-weight: 600;
|
|
}
|
|
|
|
&:hover {
|
|
outline: 1px solid $blue-500;
|
|
outline-offset: -1px;
|
|
background: color-mix(in srgb, transparent 80%, var(--user-bg, $gray-500) 20%);
|
|
}
|
|
}
|