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

56 lines
892 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;
padding: calc(var(--line-height-computed) / 2) var(--line-height-computed);
2017-09-16 02:29:56 +08:00
outline: none;
2017-12-19 19:13:37 +08:00
@include mq($small-only) {
width: 100%;
2017-12-19 19:13:37 +08:00
}
2016-09-01 03:52:17 +08:00
}
.content {
color: var(--color-text);
2016-09-01 03:52:17 +08:00
font-weight: normal;
padding: var(--line-height-computed) 0;
2016-09-01 03:52:17 +08:00
}
.header {
display: flex;
padding: var(--line-height-computed) 0;
border-bottom: var(--border-size) solid var(--color-gray-lighter);
2016-09-01 03:52:17 +08:00
}
.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;
}
%btn {
flex: 0 1 48%;
}
.dismiss,
.confirm {
@extend %btn;
}
.dismiss {
}
.confirm {
color: var(--color-white) !important;
background-color: var(--color-link) !important;
2016-09-01 03:52:17 +08:00
}