mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 02:13:48 +00:00
87 lines
1.3 KiB
SCSS
87 lines
1.3 KiB
SCSS
.outerColumn {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
font-size: calc(1rem - 1px);
|
|
color: $ui-white;
|
|
|
|
// the shared modal body owns scrolling for this regular form modal
|
|
min-height: 100%;
|
|
padding-block: 0.5rem;
|
|
|
|
h3 {
|
|
font-size: 1rem;
|
|
}
|
|
}
|
|
|
|
.innerColumn {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.ruleSection {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.titleSection,
|
|
.filterSection,
|
|
.oscSection,
|
|
.httpSection,
|
|
.actionSection {
|
|
display: grid;
|
|
grid-gap: 0.5rem;
|
|
|
|
button {
|
|
align-self: flex-end;
|
|
}
|
|
}
|
|
|
|
.titleSection,
|
|
.ruleSection,
|
|
.filterSection,
|
|
.oscSection,
|
|
.httpSection,
|
|
.actionSection {
|
|
label,
|
|
div {
|
|
// we use the div as non-interactive placeholder for button cells
|
|
// it needs to match the size of the label element
|
|
font-size: calc(1rem - 3px);
|
|
}
|
|
label {
|
|
color: $label-gray;
|
|
}
|
|
}
|
|
|
|
.titleSection {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.filterSection {
|
|
grid-template-columns: 2fr 1fr 2fr auto;
|
|
}
|
|
|
|
.oscSection {
|
|
grid-template-columns: 9rem 5rem 3fr 4fr auto;
|
|
}
|
|
|
|
.httpSection {
|
|
grid-template-columns: 1fr auto;
|
|
}
|
|
|
|
.actionSection {
|
|
grid-template-columns: auto 1fr 1fr auto;
|
|
|
|
.test {
|
|
grid-column: -1;
|
|
}
|
|
}
|
|
|
|
.outputCard {
|
|
border-left: 0.25rem solid $gray-1200;
|
|
padding-left: 0.5rem;
|
|
}
|