2020-09-02 02:46:13 +08:00
|
|
|
@import "/imports/ui/stylesheets/variables/breakpoints";
|
2020-04-13 23:31:16 +08:00
|
|
|
@import "/imports/ui/components/modal/simple/styles";
|
2021-04-08 21:01:20 +08:00
|
|
|
@import "/imports/ui/stylesheets/mixins/_scrollable";
|
|
|
|
@import "/imports/ui/stylesheets/mixins/focus";
|
|
|
|
@import "/imports/ui/stylesheets/mixins/_indicators";
|
|
|
|
@import "/imports/ui/stylesheets/variables/placeholders";
|
2017-04-06 00:20:32 +08:00
|
|
|
|
2020-04-13 23:31:16 +08:00
|
|
|
.modal {
|
|
|
|
@extend .modal;
|
|
|
|
padding: var(--jumbo-padding-y);
|
|
|
|
min-height: var(--min-modal-height);
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.overlay {
|
|
|
|
@extend .overlay;
|
|
|
|
}
|
|
|
|
|
|
|
|
.title {
|
|
|
|
font-weight: var(--headings-font-weight);
|
|
|
|
font-size: var(--font-size-large);
|
|
|
|
color: var(--color-background);
|
|
|
|
white-space: normal;
|
|
|
|
padding-bottom: var(--md-padding-x);
|
2019-11-08 01:33:03 +08:00
|
|
|
}
|
|
|
|
|
2021-08-11 10:44:34 +08:00
|
|
|
.offsetBottom {
|
|
|
|
:global(.MuiPaper-root) {
|
|
|
|
top: auto !important;
|
|
|
|
bottom: 4rem !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-11 03:00:06 +08:00
|
|
|
.quickPollBtn {
|
2020-01-14 10:29:31 +08:00
|
|
|
padding: var(--whiteboard-toolbar-padding);
|
2020-03-05 02:46:45 +08:00
|
|
|
background-color: var(--color-off-white) !important;
|
|
|
|
box-shadow: none !important;
|
2020-01-14 10:29:31 +08:00
|
|
|
|
2017-11-13 20:24:06 +08:00
|
|
|
span:first-child {
|
2020-01-14 10:29:31 +08:00
|
|
|
border: 1px solid var(--toolbar-button-color);
|
|
|
|
border-radius: var(--border-size-large);
|
2020-01-11 03:00:06 +08:00
|
|
|
color: var(--toolbar-button-color);
|
|
|
|
font-size: small;
|
2020-01-14 10:29:31 +08:00
|
|
|
font-weight: var(--headings-font-weight);
|
|
|
|
opacity: 1;
|
|
|
|
padding-right: var(--border-size-large);
|
|
|
|
padding-left: var(--border-size-large);
|
2020-01-11 03:00:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
span:first-child:hover {
|
|
|
|
opacity: 1 !important;
|
2017-11-13 20:24:06 +08:00
|
|
|
}
|
|
|
|
}
|
2018-11-28 20:59:03 +08:00
|
|
|
|
2021-03-22 22:42:13 +08:00
|
|
|
.dropdown{
|
|
|
|
z-index: 4;
|
|
|
|
}
|
2021-05-12 22:07:18 +08:00
|
|
|
|
2020-01-25 09:02:36 +08:00
|
|
|
.presentationItem {
|
|
|
|
span {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
white-space: nowrap;
|
|
|
|
overflow: hidden;
|
2021-03-22 22:42:13 +08:00
|
|
|
max-width: 15rem;
|
|
|
|
|
|
|
|
@include mq($small-only) {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2020-01-25 09:02:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.isCurrent {
|
|
|
|
i,
|
|
|
|
span {
|
|
|
|
color: var(--color-primary);
|
|
|
|
}
|
|
|
|
}
|
2021-04-08 21:01:20 +08:00
|
|
|
|
|
|
|
.scrollableList {
|
|
|
|
@include elementFocus(var(--list-item-bg-hover));
|
|
|
|
@include scrollbox-vertical();
|
|
|
|
@extend %highContrastOutline;
|
|
|
|
|
|
|
|
&:focus-within,
|
|
|
|
&:focus {
|
|
|
|
outline-style: solid;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
box-shadow: none;
|
|
|
|
border-radius: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
overflow-x: hidden;
|
|
|
|
outline-width: 1px !important;
|
|
|
|
outline-color: transparent !important;
|
|
|
|
max-height: 50vh;
|
2021-05-24 21:42:53 +08:00
|
|
|
padding: 0.25rem;
|
2021-04-08 21:01:20 +08:00
|
|
|
|
|
|
|
@include mq($small-only) {
|
|
|
|
max-height: 100%;
|
|
|
|
}
|
|
|
|
}
|