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

30 lines
545 B
SCSS
Raw Normal View History

@import "/imports/ui/stylesheets/variables/_all";
.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);
[style~="--enableAnimation:1;"] & {
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
}