bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/audio-settings/styles.scss
2017-09-29 10:38:10 -03:00

120 lines
1.7 KiB
SCSS

@import "/imports/ui/stylesheets/variables/_all";
.form {
display: flex;
flex-flow: column;
margin-top: 1.5rem;
}
.audioNote {
@include mq($small-only) {
font-size: 0.8rem;
}
}
.row {
display: flex;
flex-flow: row;
justify-content: space-between;
margin-bottom: 0.7rem;
}
.col {
display: flex;
flex-grow: 1;
flex-basis: 0;
margin-right: 1rem;
&:last-child {
margin-right: 0;
padding-right: 0.1rem;
padding-left: 4rem;
}
}
.labelSmall {
color: black;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 0.5rem;
}
.formElement {
position: relative;
display: flex;
flex-flow: column;
flex-grow: 1;
}
.select {
background-color: #fff;
border: 0;
border-bottom: 0.1rem solid $color-text;
color: $color-text;
width: 100%;
// appearance: none;
height: 1.75rem;
}
.audioMeter {
width: 100%;
}
.pullContentRight {
display: flex;
justify-content: flex-end;
flex-flow: row;
}
.verticalLine {
color: #f3f6f9;
border-left: 1px solid;
height: 5rem;
}
.backBtn {
margin-right: 0.5rem;
border: none;
@include mq($small-only) {
margin-right: auto;
}
}
.enterAudio {
margin-top: 1.5rem;
display: flex;
justify-content: flex-end;
}
.chooseAudio {
position:absolute;
left:50%;
transform: translate(-50%, 0);
}
.calling:after {
overflow: hidden;
display: inline-block;
vertical-align: bottom;
-webkit-animation: ellipsis steps(4,end) 900ms infinite;
animation: ellipsis steps(4,end) 900ms infinite;
content: "\2026"; /* ascii code for the ellipsis character */
width: 0;
margin-right: 1.25em;
}
@keyframes ellipsis {
to {
width: 1.25em;
margin-right: 0;
}
}
@-webkit-keyframes ellipsis {
to {
width: 1.25em;
margin-right: 0;
}
}