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

45 lines
714 B
SCSS
Raw Normal View History

@import "../../../stylesheets/variables/_all";
2016-09-01 03:52:17 +08:00
.modal {
display: flex;
flex-direction: column;
align-self: flex-start;
2016-12-06 05:15:12 +08:00
padding: ($line-height-computed / 2) $line-height-computed;
2016-09-01 03:52:17 +08:00
}
.content {
overflow: auto;
color: $color-text;
font-weight: normal;
padding: $line-height-computed 0;
}
.header {
display: flex;
padding: $line-height-computed 0;
border-bottom: $border-size solid $color-gray-lighter;
flex-shrink: 0;
}
.actions {
flex: 0 1 35%;
display: flex;
align-items: center;
justify-content: space-between;
}
.title {
@extend %text-elipsis;
flex: 1;
margin: 0;
font-weight: 400;
}
.dismiss {
flex: 0 1 48%;
2016-09-01 03:52:17 +08:00
}
.overlay {
background-color: rgba(0, 0, 0, .5);
2016-09-01 03:52:17 +08:00
}