bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/polling/styles.scss

128 lines
2.3 KiB
SCSS
Raw Normal View History

2016-07-28 05:50:35 +08:00
@import "../../stylesheets/variables/_all";
2018-10-26 09:40:15 +08:00
:root {
--col-amount: 2;
--max-btn-width: 9em;
--overlayIndex: 9999;
2018-10-26 09:40:15 +08:00
--overlayOpacity: 0.349;
--pollIndex: 1016;
--poll-width: 18rem;
}
2018-10-15 22:36:26 +08:00
.overlay {
position: absolute;
height: 100vh;
width: 100vw;
2018-10-26 09:40:15 +08:00
z-index: var(--overlayIndex);
pointer-events: none;
2018-10-26 09:40:15 +08:00
@include mq($hasPhoneDimentions) {
pointer-events: auto;
2018-10-26 09:40:15 +08:00
background-color: rgba(0, 0, 0, var(--overlayOpacity));
}
}
2016-07-28 05:50:35 +08:00
.pollingContainer {
pointer-events:auto;
min-width: var(--poll-width);
2018-10-12 23:05:53 +08:00
position: absolute;
2018-10-26 02:19:25 +08:00
2018-10-26 09:40:15 +08:00
z-index: var(--pollIndex);
2018-10-26 01:44:03 +08:00
border: 1px solid var(--color-off-white);
border-radius: var(--border-radius);
box-shadow: var(--color-gray-dark) 0px 0px var(--lg-padding-y);
align-items: center;
2018-10-12 23:05:53 +08:00
text-align: center;
font-weight: 600;
2018-10-26 01:44:03 +08:00
padding: var(--md-padding-y);
background-color: var(--color-white);
bottom: var(--sm-padding-x);
right: var(--sm-padding-x);
@include mq($medium-only) {
bottom: var(--jumbo-padding-x);
right: calc(var(--jumbo-padding-x) / 2);
}
2018-10-26 09:40:15 +08:00
@include mq($hasPhoneDimentions) {
bottom: auto;
right: auto;
top: 50%;
left: 50%;
margin:0 -50% 0 0;
transform: translate(-50%, -50%);
[dir="rtl"] & {
margin: 0 -50% 0 0;
}
}
2018-10-26 02:33:02 +08:00
}
2016-07-28 05:50:35 +08:00
2018-10-26 02:33:02 +08:00
.pollingTitle {
color: var(--color-text);
white-space: nowrap;
padding-bottom: var(--md-padding-y);
padding-top: var(--md-padding-y);
2016-07-28 05:50:35 +08:00
}
.pollButtonWrapper {
text-align: center;
padding: var(--sm-padding-y);
width: 100%;
}
.pollingButton {
width: 100%;
max-width: var(--max-btn-width);
@include mq($hasPhoneDimentions) {
max-width: none;
}
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.pollingAnswers {
display: grid;
2018-10-26 09:40:15 +08:00
grid-template-columns: repeat(var(--col-amount), 1fr);
2018-10-12 23:05:53 +08:00
> pollButtonWrapper:nth-child(odd) {
grid-column: 1;
}
> pollButtonWrapper:nth-child(even) {
2018-10-26 09:40:15 +08:00
grid-column: var(--col-amount);
2018-10-12 23:05:53 +08:00
}
2018-10-26 09:40:15 +08:00
@include mq($hasPhoneDimentions) {
grid-template-columns: repeat(1, 1fr);
.pollButtonWrapper button {
2018-10-26 09:40:15 +08:00
grid-column: 1;
}
}
z-index: 1;
2016-07-28 05:50:35 +08:00
}
.stacked {
grid-template-columns: repeat(1, 1fr);
.pollButtonWrapper button {
max-width: none !important;
}
}
.removeColumns {
grid-template-columns: auto;
}
2018-10-26 09:40:15 +08:00
.autoWidth {
width: auto;
}
.hidden {
display: none;
2016-07-28 05:50:35 +08:00
}