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

148 lines
2.4 KiB
SCSS
Raw Normal View History

@import "/imports/ui/stylesheets/variables/_all";
@import "/imports/ui/components/modal/simple/styles";
2017-05-02 03:52:57 +08:00
.header {
margin: 0;
padding: 0;
border: none;
line-height: 2rem;
2017-05-02 03:52:57 +08:00
}
2016-10-12 03:10:06 +08:00
.content {
display: flex;
justify-content: center;
padding: 0;
2017-10-05 04:49:11 +08:00
margin-top: auto;
margin-bottom: auto;
.audioBtn:first-child {
margin-right: 3rem;
@include mq($small-only) {
margin-right: 1rem;
}
}
2016-10-12 03:10:06 +08:00
}
//
.overlay {
@extend .overlay;
}
.modal {
@extend .modal;
padding: 1.5rem;
2017-10-05 04:49:11 +08:00
min-height: 35vh;
}
2017-03-23 04:52:41 +08:00
.closeBtn {
right: 0;
top: 0;
position: absolute;
background-color: $color-white;
border: none;
padding: .75rem;
i {
color: $color-gray-light;
}
&:focus,
&:hover{
background-color: $color-white;
i{
2017-09-29 21:38:10 +08:00
color: $color-primary;
}
}
2016-10-12 03:10:06 +08:00
}
2017-10-05 04:49:11 +08:00
.audioBtn {
i{
color: #3c5764;
}
2016-10-12 03:10:06 +08:00
}
// Modifies the audio button icon colour
2017-10-05 04:49:11 +08:00
.audioBtn span:first-child {
color: #1b3c4b;
background-color: #f1f8ff;
2016-10-12 03:10:06 +08:00
box-shadow: none;
border: 5px solid #f1f8ff;
2017-10-05 04:49:11 +08:00
font-size: 3.5rem;
@include mq($small-only) {
font-size: 2.5rem;
}
2016-10-12 03:10:06 +08:00
}
// When hovering over a button of class audioBtn, change the border colour of first span-child
2017-10-05 04:49:11 +08:00
.audioBtn:hover span:first-child,
.audioBtn:focus span:first-child {
2016-10-12 03:10:06 +08:00
border: 5px solid $color-primary;
background-color: #f1f8ff;
2016-10-12 03:10:06 +08:00
}
// Modifies the button label text
2017-10-05 04:49:11 +08:00
.audioBtn span:last-child {
color: black;
2017-10-05 04:49:11 +08:00
font-size: 1rem;
2017-03-24 22:24:23 +08:00
font-weight: 600;
}
// Button.audioBtn:first-of-type {
// margin-right: 5%;
// }
//
// Button.audioBtn:last-of-type {
// margin-left: 5%;
// }
2017-03-23 04:52:41 +08:00
.title {
text-align: center;
font-weight: 400;
font-size: 1.3rem;
white-space: normal;
@include mq($small-only) {
font-size: 1rem;
padding: 0 1rem;
}
}
2017-10-05 04:49:11 +08:00
.connecting {
font-size: 2rem;
}
.connecting: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;
}
}
.audioNote {
2017-07-08 00:11:22 +08:00
color: $color-text;
display: inline-block;
font-size: 0.9rem;
}