bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/settings/submenus/styles.scss

116 lines
1.8 KiB
SCSS
Raw Normal View History

@import '/imports/ui/stylesheets/mixins/focus';
@import '/imports/ui/stylesheets/mixins/_indicators';
@import '/imports/ui/stylesheets/variables/_all';
2017-01-27 23:41:11 +08:00
.title {
color: var(--color-gray-dark);
2017-01-27 23:41:11 +08:00
font-weight: 400;
font-size: 1.3rem;
margin: 0;
margin-bottom: 1.5rem;
}
.subtitle {
font-size: 0.9rem;
}
2017-01-27 23:41:11 +08:00
.form {
display: flex;
flex-flow: column;
}
2017-01-27 23:41:11 +08:00
.row {
display: flex;
flex-flow: row;
flex-grow: 1;
justify-content: space-between;
margin-bottom: 0.7rem;
}
2017-01-27 23:41:11 +08:00
.col {
display: flex;
flex-grow: 1;
flex-basis: 0;
2017-01-27 23:41:11 +08:00
&:last-child {
padding-right: 0;
padding-left: 1rem;
[dir="rtl"] & {
padding-right: 0.1rem;
padding-left: 0;
}
2017-01-27 23:41:11 +08:00
}
}
2017-01-27 23:41:11 +08:00
.label {
color: var(--color-gray-label);
2017-01-27 23:41:11 +08:00
font-size: 0.9rem;
margin-bottom: 0.5rem;
}
2017-01-27 23:41:11 +08:00
.labelSmall {
color: var(--color-link);
2017-01-27 23:41:11 +08:00
font-size: 0.7rem;
margin-bottom: 0.3rem;
2016-08-24 23:06:51 +08:00
}
2017-01-27 23:41:11 +08:00
.formElement {
2017-02-16 02:49:40 +08:00
position: relative;
2017-01-27 23:41:11 +08:00
display: flex;
flex-flow: column;
flex-grow: 1;
}
2017-01-27 23:41:11 +08:00
.select {
@include elementFocus(var(--color-primary));
background-color: var(--color-white);
border: var(--border-size) solid var(--color-white);
border-radius: var(--border-size);
border-bottom: 0.1rem solid var(--color-gray-lighter);
color: var(--color-gray-label);
width: 100%;
2017-01-27 23:41:11 +08:00
height: 1.75rem;
2017-09-16 03:25:45 +08:00
padding: 1px;
&:hover {
@include highContrastOutline();
}
&:focus {
@include highContrastOutline();
outline-style: solid;
}
}
2017-01-27 23:41:11 +08:00
.pullContentRight {
display: flex;
justify-content: flex-end;
flex-flow: row;
2016-12-23 16:26:22 +08:00
}
2017-01-27 23:41:11 +08:00
.pullContentCenter {
display: flex;
justify-content: center;
flex-flow: row;
}
2017-01-27 23:41:11 +08:00
.separator {
margin: 2.5rem 0;
border: 1px solid var(--color-gray-lighter);
2017-01-27 23:41:11 +08:00
opacity: 0.25;
}
2017-01-27 23:41:11 +08:00
.bold {
font-weight: bold;
}
2017-01-27 23:41:11 +08:00
.spacedLeft {
margin: 0 0 0 1rem;
[dir="rtl"] & {
margin: 0 1rem 0 0;
}
2016-12-23 16:26:22 +08:00
}