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

61 lines
996 B
SCSS
Raw Normal View History

@import "/imports/ui/stylesheets/variables/_all";
@import "/imports/ui/components/actions-bar/styles.scss";
.container {
display: flex;
flex-flow: row;
> * {
margin: 0 var(--sm-padding-x);
@include mq($small-only) {
margin: 0 var(--sm-padding-y);
}
span:first-child {
box-shadow: 0 2px 5px 0 rgb(0, 0, 0);
}
}
> :first-child {
margin-left: 0;
}
> :last-child {
margin-right: 0;
}
}
.button {
&:focus {
outline: none !important;
}
2017-11-17 19:52:48 +08:00
&.glow {
animation: pulse calc(var(--enableAnimation) * 1s) infinite ease-in;
border-radius: 50%;
}
}
[style~="--enableAnimation:0;"] .button.glow {
background-clip: padding-box;
border: 3px solid transparent;
box-shadow: 0 0 0 2px rgba(255,255,255,.5);
}
@keyframes pulse {
0% {
box-shadow: 0 0 0 0 white;
}
70% {
box-shadow: 0 0 0 0.5625rem transparent;
}
100% {
box-shadow: 0 0 0 0 transparent;
2017-11-17 19:52:48 +08:00
}
}
.ghostButton {
@extend .btn;
}