f71d32a464
WIP wip wip format wip Move from SCSS variables to CSS custom properties (variables) and add custom parameters for theming/skinning
26 lines
455 B
SCSS
26 lines
455 B
SCSS
@import "/imports/ui/stylesheets/variables/_all";
|
|
|
|
.testAudioBtn {
|
|
--hover-color: #0c5cb2;
|
|
|
|
background-color: transparent;
|
|
color: var(--color-primary);
|
|
font-weight: normal;
|
|
border: none;
|
|
|
|
i {
|
|
color: var(--color-primary);
|
|
transition: all .2s ease-in-out;
|
|
}
|
|
|
|
&:hover,
|
|
&:focus,
|
|
&:active {
|
|
background-color: transparent !important;
|
|
color: var(--hover-color) !important;
|
|
i {
|
|
color: var(--hover-color);
|
|
}
|
|
}
|
|
}
|