mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
* fix: Bind keyboard events to excalidraw container
* fix cases around blurring
* fix modal rendering so keyboard shortcuts work on modal as well
* Revert "fix modal rendering so keyboard shortcuts work on modal as well"
This reverts commit 2c8ec6be8e
.
* Attach keyboard event in react way so we need not handle portals separately (modals)
* dnt propagate esc event when modal shown
* focus the container when help dialog closed with shift+?
* focus the help icon when help dialog on close triggered
* move focusNearestTabbableParent to util
* rename util to focusNearestParent and remove outline from excal and modal
* Add prop bindKeyGlobally to decide if keyboard events should be binded to document and allow it in excal app, revert tests
* fix
* focus container after installing library, reset library and closing error dialog
* fix tests and create util to focus container
* Add excalidraw-container class to focus on the container
* pass focus container to library to focus current instance of excal
* update docs
* remove util as it wont be used anywhere
* fix propagation not being stopped for React keyboard handling
* tweak reamde
Co-authored-by: David Luzar <luzar.david@gmail.com>
* tweak changelog
* rename prop to handleKeyboardGlobally
Co-authored-by: dwelle <luzar.david@gmail.com>
102 lines
1.8 KiB
SCSS
102 lines
1.8 KiB
SCSS
@import "../css/variables.module";
|
|
|
|
.excalidraw {
|
|
&.excalidraw-modal-container {
|
|
position: absolute;
|
|
z-index: 10;
|
|
}
|
|
|
|
.Modal {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
overflow: auto;
|
|
padding: calc(var(--space-factor) * 10);
|
|
}
|
|
|
|
.Modal__background {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 1;
|
|
background-color: transparentize($oc-black, 0.7);
|
|
backdrop-filter: blur(2px);
|
|
}
|
|
|
|
.Modal__content {
|
|
position: relative;
|
|
z-index: 2;
|
|
width: 100%;
|
|
max-width: var(--max-width);
|
|
max-height: 100%;
|
|
|
|
opacity: 0;
|
|
transform: translateY(10px);
|
|
animation: Modal__content_fade-in 0.1s ease-out 0.05s forwards;
|
|
position: relative;
|
|
overflow-y: auto;
|
|
|
|
// for modals, reset blurry bg
|
|
background: var(--island-bg-color);
|
|
backdrop-filter: none;
|
|
|
|
border: 1px solid var(--dialog-border-color);
|
|
box-shadow: 0 2px 10px transparentize($oc-black, 0.75);
|
|
border-radius: 6px;
|
|
box-sizing: border-box;
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
|
|
@include isMobile {
|
|
max-width: 100%;
|
|
border: 0;
|
|
border-radius: 0;
|
|
}
|
|
}
|
|
|
|
@keyframes Modal__content_fade-in {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(10px);
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
transform: translateY(0);
|
|
}
|
|
}
|
|
|
|
.Modal__close {
|
|
width: calc(var(--space-factor) * 7);
|
|
height: calc(var(--space-factor) * 7);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
svg {
|
|
height: calc(var(--space-factor) * 5);
|
|
}
|
|
}
|
|
|
|
@include isMobile {
|
|
.Modal {
|
|
padding: 0;
|
|
}
|
|
|
|
.Modal__content {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
}
|
|
}
|