bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/audio/audio-settings/styles.scss
Oswaldo Acauan f71d32a464 Move from SCSS variables to CSS custom properties (variables) and add custom parameters for theming/skinning
WIP

wip

wip

format

wip

Move from SCSS variables to CSS custom properties (variables) and add custom parameters for theming/skinning
2018-10-23 14:21:58 -02:00

127 lines
2.0 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;
}
&.spacedLeft {
// @extend .spaced;
label {
flex-grow: 1;
flex-basis: 0;
margin-right: 0;
padding-right: 0.1rem;
padding-left: 4rem;
}
&:before {
content: "";
display: block;
flex-grow: 1;
flex-basis: 0;
margin-right: 1rem;
}
&:last-child {
margin-right: 0;
padding-right: 0;
padding-left: 0;
}
}
}
.labelSmall {
color: black;
font-size: 0.85rem;
font-weight: 600;
& > :first-child {
margin-top: 0.5rem;
}
}
.formElement {
position: relative;
display: flex;
flex-flow: column;
flex-grow: 1;
}
.select {
-webkit-appearance: none;
-webkit-border-radius: 0px;
background: var(--color-white) url("data:image/svg+xml;charset=utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'><path fill='#667189' d='M2 0L0 2h4zm0 5L0 3h4z'/></svg>") no-repeat right .35rem center/.4rem .5rem;
background-repeat: no-repeat;
border: 0.07rem solid var(--color-gray-light);
border-radius: .125rem;
color: var(--color-text);
width: 100%;
// appearance: none;
padding: .4rem;
}
.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);
}