mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-09 17:33:55 +00:00
10852eecdd
* refactor: simplify settings * refactor: quick add around selection * refactor: no action menu in delay block * refactor: no action menu in event block * style: context menu dark * refactor: context menu actions
34 lines
520 B
SCSS
34 lines
520 B
SCSS
.quickAdd {
|
|
display: grid;
|
|
grid-template-columns: 1fr auto;
|
|
align-items: center;
|
|
margin: 0.25rem 0;
|
|
font-size: $inner-section-text-size;
|
|
padding: 0 0.75rem;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.btnRow {
|
|
justify-self: center;
|
|
display: flex;
|
|
gap: max(0.5rem, 2rem);
|
|
|
|
.quickBtn {
|
|
font-weight: 400;
|
|
}
|
|
}
|
|
|
|
.keyboard {
|
|
margin-left: 0.5rem;
|
|
padding: 0 0.25rem;
|
|
color: $label-gray;
|
|
border-radius: 2px;
|
|
background-color: $black-10;
|
|
}
|
|
|
|
.options {
|
|
display: flex;
|
|
flex-direction: column;
|
|
white-space: nowrap;
|
|
}
|