2017-07-18 02:21:45 +08:00
|
|
|
@import "/imports/ui/stylesheets/variables/_all";
|
2017-07-18 07:01:05 +08:00
|
|
|
@import "/imports/ui/components/whiteboard/whiteboard-toolbar/styles";
|
2016-05-21 00:35:15 +08:00
|
|
|
|
2016-05-31 02:12:02 +08:00
|
|
|
.enter {
|
|
|
|
opacity: 0.01;
|
|
|
|
}
|
|
|
|
|
|
|
|
.enterActive {
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 400ms ease-in;
|
|
|
|
}
|
|
|
|
|
|
|
|
.appear {
|
|
|
|
opacity: 0.01;
|
|
|
|
}
|
|
|
|
|
|
|
|
.appearActive {
|
|
|
|
opacity: 1;
|
|
|
|
transition: opacity 400ms ease-in;
|
|
|
|
}
|
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;
|
2017-04-19 08:54:51 +08:00
|
|
|
flex-direction: row;
|
2017-03-24 05:52:36 +08:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: calc(100% - 1px);
|
|
|
|
width:100%;
|
|
|
|
overflow: hidden;
|
|
|
|
position: relative;
|
2016-06-03 06:09:28 +08:00
|
|
|
}
|
|
|
|
|
2017-04-28 06:18:53 +08:00
|
|
|
.whiteboardSizeAvailable {
|
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
width: calc(100% - #{$toolbar-container-width});
|
|
|
|
z-index: -1;
|
|
|
|
}
|
|
|
|
|
2016-06-03 06:09:28 +08:00
|
|
|
.svgStyles {
|
|
|
|
object-fit: contain;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
2017-04-28 06:18:53 +08:00
|
|
|
|
|
|
|
//always show an arrow by default
|
|
|
|
cursor: default;
|
|
|
|
|
|
|
|
//double click on the whiteboard shouldn't change the cursor
|
|
|
|
-moz-user-select: -moz-none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
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;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|