mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-09 17:33:55 +00:00
62 lines
878 B
SCSS
62 lines
878 B
SCSS
@use '../../../theme/viewerDefs' as *;
|
|
|
|
.baseButton {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5em;
|
|
|
|
width: fit-content;
|
|
padding-inline: 1em;
|
|
|
|
border: 1px solid transparent;
|
|
border-radius: 3px;
|
|
|
|
cursor: pointer;
|
|
|
|
&:disabled {
|
|
opacity: 0.4;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
|
|
.subtle {
|
|
background: $gray-1050;
|
|
color: $blue-400;
|
|
|
|
&:hover:not(:disabled):not(:active) {
|
|
background: $gray-1000;
|
|
color: $blue-500;
|
|
}
|
|
|
|
&:active:not(:disabled) {
|
|
background: $gray-1100;
|
|
border-color: $gray-1250;
|
|
}
|
|
}
|
|
|
|
.primary {
|
|
background: $blue-700;
|
|
color: $ui-white;
|
|
|
|
&:hover:not(:disabled):not(:active) {
|
|
background: $blue-600;
|
|
}
|
|
|
|
&:active:not(:disabled) {
|
|
background: $blue-800;
|
|
border-color: $blue-900;
|
|
}
|
|
|
|
&:disabled {
|
|
opacity: $viewer-opacity-disabled;
|
|
}
|
|
}
|
|
|
|
.medium {
|
|
height: 2rem;
|
|
}
|
|
|
|
.large {
|
|
height: 3.5rem;
|
|
}
|