bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/audio-controls/styles.scss
Ghazi Triki 1f6326f7fd Change layout direction for RTL languages.
Update styles for RTL layout.
2019-05-14 14:17:19 +01:00

62 lines
1.0 KiB
SCSS
Executable File

@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);
}
}
> :first-child {
margin-left: 0;
margin-right: inherit;
[dir="rtl"] & {
margin-left: inherit;
margin-right: 0;
}
}
> :last-child {
margin-left: inherit;
margin-right: 0;
[dir="rtl"] & {
margin-left: 0;
margin-right: inherit;
}
}
}
.glow {
border-radius: 50%;
:global(.animationsEnabled) & {
animation: pulse 1s infinite ease-in;
}
:global(.animationsDisabled) & span {
content: '';
outline: none !important;
background-clip: padding-box;
box-shadow: 0 0 0 4px 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;
}
}