bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/audio-test/styles.scss

28 lines
490 B
SCSS
Raw Normal View History

.testAudioBtn {
--hover-color: #0c5cb2;
2019-01-24 20:05:59 +08:00
margin: 0 !important;
background-color: transparent;
color: var(--color-primary);
font-weight: normal;
border: none;
i {
color: var(--color-primary);
:global(.animationsEnabled) & {
transition: all .2s ease-in-out;
}
}
&:hover,
&:focus,
&:active {
2019-01-24 20:05:59 +08:00
border: none;
background-color: transparent !important;
color: var(--hover-color) !important;
i {
color: var(--hover-color);
}
}
2017-03-27 23:45:24 +08:00
}