2020-04-18 02:09:15 +05:30
|
|
|
@import "open-color/open-color";
|
|
|
|
|
2020-09-26 02:48:45 +05:30
|
|
|
.excalidraw {
|
|
|
|
.layer-ui__wrapper {
|
2021-02-04 16:21:48 +01:00
|
|
|
z-index: var(--zIndex-layerUI);
|
|
|
|
|
2021-05-06 21:00:17 +02:00
|
|
|
&__top-right {
|
|
|
|
display: flex;
|
2020-05-03 02:30:58 +02:00
|
|
|
}
|
2020-09-26 02:48:45 +05:30
|
|
|
|
|
|
|
&__footer {
|
2021-05-15 14:49:58 +05:30
|
|
|
width: 100%;
|
2020-09-26 02:48:45 +05:30
|
|
|
|
2021-05-15 14:49:58 +05:30
|
|
|
&-right {
|
|
|
|
z-index: 100;
|
|
|
|
display: flex;
|
2020-09-26 02:48:45 +05:30
|
|
|
}
|
2020-05-03 02:30:58 +02:00
|
|
|
}
|
2020-05-09 18:17:22 +05:30
|
|
|
|
2020-09-26 02:48:45 +05:30
|
|
|
.zen-mode-transition {
|
|
|
|
transition: transform 0.5s ease-in-out;
|
|
|
|
|
|
|
|
:root[dir="ltr"] &.transition-left {
|
|
|
|
transform: translate(-999px, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
:root[dir="ltr"] &.transition-right {
|
2021-02-16 20:22:18 +02:00
|
|
|
transform: translate(999px, 0);
|
2020-09-26 02:48:45 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
:root[dir="rtl"] &.transition-left {
|
|
|
|
transform: translate(999px, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
:root[dir="rtl"] &.transition-right {
|
|
|
|
transform: translate(-999px, 0);
|
|
|
|
}
|
|
|
|
|
2021-05-15 14:49:58 +05:30
|
|
|
:root[dir="ltr"] &.layer-ui__wrapper__footer-left--transition-left {
|
2021-07-15 18:48:03 +02:00
|
|
|
transform: translate(-76px, 0);
|
2020-09-26 02:48:45 +05:30
|
|
|
}
|
2021-05-15 14:49:58 +05:30
|
|
|
:root[dir="rtl"] &.layer-ui__wrapper__footer-left--transition-left {
|
2021-07-15 18:48:03 +02:00
|
|
|
transform: translate(76px, 0);
|
2020-11-25 18:21:33 -05:00
|
|
|
}
|
2021-05-15 14:49:58 +05:30
|
|
|
|
|
|
|
&.layer-ui__wrapper__footer-left--transition-bottom {
|
|
|
|
transform: translate(0, 92px);
|
|
|
|
}
|
2020-05-09 18:17:22 +05:30
|
|
|
}
|
2020-04-25 18:43:02 +05:30
|
|
|
|
2020-09-26 02:48:45 +05:30
|
|
|
.disable-zen-mode {
|
|
|
|
height: 30px;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 10px;
|
2020-11-25 18:21:33 -05:00
|
|
|
[dir="ltr"] & {
|
|
|
|
right: 15px;
|
|
|
|
}
|
|
|
|
[dir="rtl"] & {
|
|
|
|
left: 15px;
|
|
|
|
}
|
2020-09-26 02:48:45 +05:30
|
|
|
font-size: 10px;
|
|
|
|
padding: 10px;
|
|
|
|
font-weight: 500;
|
|
|
|
opacity: 0;
|
|
|
|
visibility: hidden;
|
|
|
|
transition: visibility 0s linear 0s, opacity 0.5s;
|
|
|
|
|
|
|
|
&--visible {
|
|
|
|
opacity: 1;
|
|
|
|
visibility: visible;
|
|
|
|
transition: visibility 0s linear 300ms, opacity 0.5s;
|
|
|
|
transition-delay: 0.8s;
|
|
|
|
}
|
2020-04-25 18:43:02 +05:30
|
|
|
}
|
2021-05-23 17:09:39 +02:00
|
|
|
|
|
|
|
.layer-ui__wrapper__footer-center {
|
|
|
|
pointer-events: none;
|
|
|
|
& > * {
|
|
|
|
pointer-events: all;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.layer-ui__wrapper__footer-left,
|
2021-06-16 22:25:22 +05:30
|
|
|
.layer-ui__wrapper__footer-right,
|
|
|
|
.disable-zen-mode--visible {
|
2021-05-23 17:09:39 +02:00
|
|
|
pointer-events: all;
|
|
|
|
}
|
2021-07-15 18:48:03 +02:00
|
|
|
|
|
|
|
.layer-ui__wrapper__footer-left {
|
|
|
|
margin-bottom: 0.2em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.layer-ui__wrapper__footer-right {
|
|
|
|
margin-top: auto;
|
|
|
|
margin-bottom: auto;
|
|
|
|
margin-inline-end: 1em;
|
|
|
|
}
|
2020-04-25 18:43:02 +05:30
|
|
|
}
|
2020-04-18 02:09:15 +05:30
|
|
|
}
|