fix: allow text-selecting in dialogs & reset cursor (#2783)

Co-authored-by: dwelle <luzar.david@gmail.com>
This commit is contained in:
Rafi 2021-01-14 19:12:15 +05:30 committed by GitHub
parent fd699c0447
commit af79461f41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,11 @@
@import "../css/_variables"; @import "../css/_variables";
.excalidraw { .excalidraw {
.Dialog {
user-select: text;
cursor: auto;
}
.Dialog__title { .Dialog__title {
display: grid; display: grid;
align-items: center; align-items: center;

View File

@ -31,6 +31,7 @@ Please add the latest change on the top under the correct section.
### Fixes ### Fixes
- Allow text-selecting in dialogs & reset cursor [#2783](https://github.com/excalidraw/excalidraw/pull/2783)
- Fix late-render due to debounced zoom [#2779](https://github.com/excalidraw/excalidraw/pull/2779) - Fix late-render due to debounced zoom [#2779](https://github.com/excalidraw/excalidraw/pull/2779)
- Fix initialization when browser tab not focused [#2677](https://github.com/excalidraw/excalidraw/pull/2677) - Fix initialization when browser tab not focused [#2677](https://github.com/excalidraw/excalidraw/pull/2677)
- Consistent case for export locale strings [#2622](https://github.com/excalidraw/excalidraw/pull/2622) - Consistent case for export locale strings [#2622](https://github.com/excalidraw/excalidraw/pull/2622)