2016-05-31 02:12:02 +08:00
|
|
|
.enter {
|
|
|
|
opacity: 0.01;
|
|
|
|
}
|
|
|
|
|
|
|
|
.enterActive {
|
|
|
|
opacity: 1;
|
2019-03-05 10:46:37 +08:00
|
|
|
|
2019-04-11 23:04:10 +08:00
|
|
|
:global(.animationsEnabled) & {
|
2019-03-05 10:46:37 +08:00
|
|
|
transition: opacity 400ms ease-in;
|
|
|
|
}
|
2016-05-31 02:12:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.appear {
|
|
|
|
opacity: 0.01;
|
|
|
|
}
|
|
|
|
|
|
|
|
.appearActive {
|
|
|
|
opacity: 1;
|
2019-03-05 10:46:37 +08:00
|
|
|
|
2019-04-11 23:04:10 +08:00
|
|
|
:global(.animationsEnabled) & {
|
2019-03-05 10:46:37 +08:00
|
|
|
transition: opacity 400ms ease-in;
|
|
|
|
}
|
2016-05-31 02:12:02 +08:00
|
|
|
}
|
2016-06-02 05:57:19 +08:00
|
|
|
|
2017-09-18 09:58:37 +08:00
|
|
|
.presentationArea {
|
2017-03-24 05:52:36 +08:00
|
|
|
order: 1;
|
|
|
|
display: flex;
|
2018-04-13 20:58:47 +08:00
|
|
|
flex-direction: row;
|
2017-03-24 05:52:36 +08:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2018-04-13 20:58:47 +08:00
|
|
|
height: 100%;
|
2018-10-19 04:37:14 +08:00
|
|
|
width: 100%;
|
2017-03-24 05:52:36 +08:00
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
2016-06-03 06:09:28 +08:00
|
|
|
}
|
|
|
|
|
2017-04-28 06:18:53 +08:00
|
|
|
.whiteboardSizeAvailable {
|
|
|
|
position: absolute;
|
2018-04-13 20:58:47 +08:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2017-04-28 06:18:53 +08:00
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
|
2019-02-19 20:27:54 +08:00
|
|
|
.svgContainer{
|
|
|
|
width: 100%;
|
|
|
|
position: relative;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2019-03-07 05:57:07 +08:00
|
|
|
align-items: flex-start;
|
2019-02-19 20:27:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.presentationToolbar{
|
|
|
|
display: flex;
|
2020-01-11 03:00:06 +08:00
|
|
|
overflow-x: visible;
|
2019-02-19 20:27:54 +08:00
|
|
|
order: 2;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
|
|
|
|
2016-06-03 06:09:28 +08:00
|
|
|
.svgStyles {
|
2018-04-13 20:58:47 +08:00
|
|
|
object-fit: contain;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
max-width: 100%;
|
2018-04-12 20:43:18 +08:00
|
|
|
max-height: 100%;
|
2018-04-13 20:58:47 +08:00
|
|
|
|
2017-04-28 06:18:53 +08:00
|
|
|
//always show an arrow by default
|
|
|
|
cursor: default;
|
2018-04-13 20:58:47 +08:00
|
|
|
|
2017-04-28 06:18:53 +08:00
|
|
|
//double click on the whiteboard shouldn't change the cursor
|
2018-04-13 20:58:47 +08:00
|
|
|
-moz-user-select: -moz-none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-ms-user-select: none;
|
2017-04-28 06:18:53 +08:00
|
|
|
user-select: none;
|
2016-06-02 05:57:19 +08:00
|
|
|
}
|
2016-06-30 06:00:06 +08:00
|
|
|
|
2017-02-17 05:11:46 +08:00
|
|
|
.presentationContainer {
|
2016-06-30 06:00:06 +08:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2018-04-17 21:09:00 +08:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2016-06-30 06:00:06 +08:00
|
|
|
}
|
2019-02-21 00:38:52 +08:00
|
|
|
|
2020-03-24 10:21:09 +08:00
|
|
|
.innerToastWrapper {
|
|
|
|
width: var(--innerToastWidth);
|
|
|
|
}
|
|
|
|
|
|
|
|
.toastTextContent {
|
|
|
|
position: relative;
|
|
|
|
overflow: hidden;
|
2020-08-10 20:51:06 +08:00
|
|
|
margin-top: var(--sm-padding-y);
|
|
|
|
|
|
|
|
> div:first-of-type {
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
2020-03-24 10:21:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.presentationName {
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
2020-08-10 20:51:06 +08:00
|
|
|
.toastMessage {
|
|
|
|
font-size: var(--font-size-small);
|
|
|
|
margin-top: var(--toast-margin);
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
2020-03-24 10:21:09 +08:00
|
|
|
.toastIcon {
|
|
|
|
margin-right: var(--sm-padding-x);
|
|
|
|
[dir="rtl"] & {
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: var(--sm-padding-x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.iconWrapper {
|
|
|
|
background-color: var(--color-primary);
|
2020-08-10 20:51:06 +08:00
|
|
|
width: var(--toast-icon-side);
|
|
|
|
height: var(--toast-icon-side);
|
2020-03-24 10:21:09 +08:00
|
|
|
border-radius: 50%;
|
2020-08-10 20:51:06 +08:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2020-03-24 10:21:09 +08:00
|
|
|
|
|
|
|
> i {
|
|
|
|
position: relative;
|
|
|
|
color: var(--color-white);
|
2020-08-10 20:51:06 +08:00
|
|
|
font-size: var(--font-size-larger);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.toastDownload {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2020-03-24 10:21:09 +08:00
|
|
|
|
2020-08-10 20:51:06 +08:00
|
|
|
a {
|
|
|
|
color: var(--color-primary);
|
|
|
|
cursor: pointer;
|
|
|
|
text-decoration: none;
|
|
|
|
|
|
|
|
&:focus,
|
|
|
|
&:hover,
|
|
|
|
&:active {
|
|
|
|
color: var(--color-primary);
|
|
|
|
box-shadow: 0;
|
|
|
|
}
|
2020-03-24 10:21:09 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-02-21 00:38:52 +08:00
|
|
|
.visuallyHidden {
|
|
|
|
position: absolute;
|
|
|
|
overflow: hidden;
|
|
|
|
clip: rect(0 0 0 0);
|
|
|
|
height: 1px; width: 1px;
|
|
|
|
margin: -1px; padding: 0; border: 0;
|
2019-02-22 05:01:39 +08:00
|
|
|
}
|