@excalidraw/excalidraw 0.17.1-c0b80a0 → 0.17.1-c329470
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/browser/dev/excalidraw-assets-dev/{chunk-JGDL4H2X.js → chunk-3DLVY5XU.js} +8272 -6864
- package/dist/browser/dev/excalidraw-assets-dev/chunk-3DLVY5XU.js.map +7 -0
- package/dist/browser/dev/excalidraw-assets-dev/{chunk-V7NFEZA6.js → chunk-NOAEU4NM.js} +9 -2
- package/dist/browser/dev/excalidraw-assets-dev/chunk-NOAEU4NM.js.map +7 -0
- package/dist/browser/dev/excalidraw-assets-dev/{en-ZSVWGT55.js → en-7IBTMWBG.js} +2 -2
- package/dist/browser/dev/excalidraw-assets-dev/{image-RJG3J34Y.js → image-N5AC7SEK.js} +2 -6
- package/dist/browser/dev/index.css +85 -50
- package/dist/browser/dev/index.css.map +3 -3
- package/dist/browser/dev/index.js +4375 -3766
- package/dist/browser/dev/index.js.map +4 -4
- package/dist/browser/prod/excalidraw-assets/{chunk-LDVEIXGO.js → chunk-7CSIPVOW.js} +2 -2
- package/dist/browser/prod/excalidraw-assets/chunk-TX3BU7T2.js +47 -0
- package/dist/browser/prod/excalidraw-assets/{en-UPNEHLDS.js → en-LOGQBETY.js} +1 -1
- package/dist/browser/prod/excalidraw-assets/image-3V4U7GZE.js +1 -0
- package/dist/browser/prod/index.css +1 -1
- package/dist/browser/prod/index.js +40 -40
- package/dist/dev/index.css +85 -50
- package/dist/dev/index.css.map +3 -3
- package/dist/dev/index.js +8688 -6706
- package/dist/dev/index.js.map +4 -4
- package/dist/{prod/locales/en-ZXYG7GCR.json → dev/locales/en-V6KXFSCK.json} +8 -1
- package/dist/excalidraw/actions/actionAlign.d.ts +7 -6
- package/dist/excalidraw/actions/actionAlign.js +14 -14
- package/dist/excalidraw/actions/actionClipboard.d.ts +7 -3
- package/dist/excalidraw/actions/actionDeleteSelected.d.ts +7 -3
- package/dist/excalidraw/actions/actionDeleteSelected.js +103 -34
- package/dist/excalidraw/actions/actionDuplicateSelection.js +105 -95
- package/dist/excalidraw/actions/actionFlip.js +16 -7
- package/dist/excalidraw/actions/actionFrame.d.ts +493 -0
- package/dist/excalidraw/actions/actionFrame.js +45 -2
- package/dist/excalidraw/actions/actionGroup.js +6 -4
- package/dist/excalidraw/actions/actionProperties.js +145 -116
- package/dist/excalidraw/actions/actionSelectAll.js +4 -3
- package/dist/excalidraw/actions/shortcuts.d.ts +1 -1
- package/dist/excalidraw/actions/shortcuts.js +1 -0
- package/dist/excalidraw/actions/types.d.ts +1 -1
- package/dist/excalidraw/align.d.ts +2 -1
- package/dist/excalidraw/align.js +15 -6
- package/dist/excalidraw/clipboard.d.ts +27 -5
- package/dist/excalidraw/clipboard.js +55 -28
- package/dist/excalidraw/components/Actions.d.ts +2 -1
- package/dist/excalidraw/components/Actions.js +4 -2
- package/dist/excalidraw/components/ActiveConfirmDialog.d.ts +1 -1
- package/dist/excalidraw/components/ActiveConfirmDialog.js +2 -3
- package/dist/excalidraw/components/App.d.ts +1 -0
- package/dist/excalidraw/components/App.js +216 -111
- package/dist/excalidraw/components/ColorPicker/ColorInput.js +2 -3
- package/dist/excalidraw/components/ColorPicker/ColorPicker.js +2 -3
- package/dist/excalidraw/components/ColorPicker/CustomColorList.js +1 -1
- package/dist/excalidraw/components/ColorPicker/Picker.js +1 -1
- package/dist/excalidraw/components/ColorPicker/PickerColorList.js +1 -1
- package/dist/excalidraw/components/ColorPicker/ShadeList.js +1 -1
- package/dist/excalidraw/components/ColorPicker/colorPickerUtils.d.ts +1 -1
- package/dist/excalidraw/components/ColorPicker/colorPickerUtils.js +1 -1
- package/dist/excalidraw/components/CommandPalette/CommandPalette.js +3 -3
- package/dist/excalidraw/components/ConfirmDialog.js +17 -5
- package/dist/excalidraw/components/Dialog.js +2 -3
- package/dist/excalidraw/components/EyeDropper.d.ts +1 -1
- package/dist/excalidraw/components/EyeDropper.js +1 -1
- package/dist/excalidraw/components/IconPicker.d.ts +2 -2
- package/dist/excalidraw/components/IconPicker.js +56 -53
- package/dist/excalidraw/components/LayerUI.js +6 -6
- package/dist/excalidraw/components/LibraryMenu.d.ts +2 -16
- package/dist/excalidraw/components/LibraryMenu.js +70 -28
- package/dist/excalidraw/components/LibraryMenuHeaderContent.js +4 -5
- package/dist/excalidraw/components/MobileMenu.js +1 -1
- package/dist/excalidraw/components/OverwriteConfirm/OverwriteConfirm.js +2 -3
- package/dist/excalidraw/components/OverwriteConfirm/OverwriteConfirmState.d.ts +1 -1
- package/dist/excalidraw/components/OverwriteConfirm/OverwriteConfirmState.js +2 -3
- package/dist/excalidraw/components/Range.d.ts +9 -0
- package/dist/excalidraw/components/Range.js +24 -0
- package/dist/excalidraw/components/SearchMenu.d.ts +1 -1
- package/dist/excalidraw/components/SearchMenu.js +3 -4
- package/dist/excalidraw/components/Sidebar/Sidebar.d.ts +1 -1
- package/dist/excalidraw/components/Sidebar/Sidebar.js +2 -3
- package/dist/excalidraw/components/Stats/Collapsible.d.ts +2 -1
- package/dist/excalidraw/components/Stats/Collapsible.js +2 -2
- package/dist/excalidraw/components/Stats/Dimension.js +94 -8
- package/dist/excalidraw/components/Stats/MultiDimension.js +8 -5
- package/dist/excalidraw/components/Stats/Position.js +63 -3
- package/dist/excalidraw/components/Stats/index.js +21 -4
- package/dist/excalidraw/components/Stats/utils.d.ts +1 -1
- package/dist/excalidraw/components/Stats/utils.js +2 -55
- package/dist/excalidraw/components/TTDDialog/TTDDialog.js +1 -1
- package/dist/excalidraw/components/ToolButton.js +4 -9
- package/dist/excalidraw/components/hoc/withInternalFallback.js +3 -3
- package/dist/excalidraw/components/hyperlink/Hyperlink.js +6 -12
- package/dist/excalidraw/components/icons.d.ts +9 -0
- package/dist/excalidraw/components/icons.js +4 -4
- package/dist/excalidraw/components/main-menu/DefaultItems.js +2 -3
- package/dist/excalidraw/constants.d.ts +5 -1
- package/dist/excalidraw/constants.js +9 -1
- package/dist/excalidraw/context/tunnels.d.ts +2 -1
- package/dist/excalidraw/context/tunnels.js +3 -1
- package/dist/excalidraw/data/blob.d.ts +1 -0
- package/dist/excalidraw/data/blob.js +7 -3
- package/dist/excalidraw/data/filesystem.d.ts +2 -1
- package/dist/excalidraw/data/filesystem.js +1 -0
- package/dist/excalidraw/data/image.d.ts +0 -6
- package/dist/excalidraw/data/image.js +1 -43
- package/dist/excalidraw/data/index.js +6 -6
- package/dist/excalidraw/data/library.d.ts +9 -3
- package/dist/excalidraw/data/library.js +43 -6
- package/dist/excalidraw/data/restore.js +26 -8
- package/dist/excalidraw/data/url.d.ts +0 -1
- package/dist/excalidraw/data/url.js +2 -4
- package/dist/excalidraw/editor-jotai.d.ts +56 -0
- package/dist/excalidraw/editor-jotai.js +8 -0
- package/dist/excalidraw/element/binding.d.ts +9 -6
- package/dist/excalidraw/element/binding.js +124 -44
- package/dist/excalidraw/element/bounds.js +10 -0
- package/dist/excalidraw/element/cropElement.d.ts +5 -0
- package/dist/excalidraw/element/cropElement.js +28 -1
- package/dist/excalidraw/element/dragElements.js +13 -7
- package/dist/excalidraw/element/elbowArrow.d.ts +16 -0
- package/dist/excalidraw/element/elbowArrow.js +1268 -0
- package/dist/excalidraw/element/embeddable.js +4 -5
- package/dist/excalidraw/element/flowchart.d.ts +1 -1
- package/dist/excalidraw/element/flowchart.js +25 -9
- package/dist/excalidraw/element/heading.d.ts +5 -1
- package/dist/excalidraw/element/heading.js +5 -1
- package/dist/excalidraw/element/image.js +19 -5
- package/dist/excalidraw/element/linearElementEditor.d.ts +9 -10
- package/dist/excalidraw/element/linearElementEditor.js +97 -38
- package/dist/excalidraw/element/mutateElement.d.ts +3 -1
- package/dist/excalidraw/element/mutateElement.js +31 -4
- package/dist/excalidraw/element/newElement.d.ts +8 -12
- package/dist/excalidraw/element/newElement.js +36 -21
- package/dist/excalidraw/element/resizeElements.d.ts +20 -5
- package/dist/excalidraw/element/resizeElements.js +593 -361
- package/dist/excalidraw/element/sortElements.js +1 -4
- package/dist/excalidraw/element/types.d.ts +23 -1
- package/dist/excalidraw/fonts/Fonts.d.ts +0 -16
- package/dist/excalidraw/fonts/Fonts.js +6 -31
- package/dist/excalidraw/frame.d.ts +11 -5
- package/dist/excalidraw/frame.js +146 -35
- package/dist/excalidraw/groups.js +3 -0
- package/dist/excalidraw/hooks/useLibraryItemSvg.d.ts +1 -1
- package/dist/excalidraw/hooks/useLibraryItemSvg.js +2 -3
- package/dist/excalidraw/hooks/useScrollPosition.js +1 -1
- package/dist/excalidraw/i18n.js +3 -4
- package/dist/excalidraw/index.js +3 -4
- package/dist/excalidraw/locales/en.json +8 -1
- package/dist/excalidraw/renderer/interactiveScene.js +43 -32
- package/dist/excalidraw/renderer/staticScene.js +6 -4
- package/dist/excalidraw/renderer/staticSvgScene.js +1 -1
- package/dist/excalidraw/scene/Shape.js +40 -17
- package/dist/excalidraw/scene/comparisons.d.ts +0 -477
- package/dist/excalidraw/scene/comparisons.js +0 -37
- package/dist/excalidraw/scene/export.d.ts +7 -0
- package/dist/excalidraw/scene/export.js +107 -43
- package/dist/excalidraw/scene/index.d.ts +1 -1
- package/dist/excalidraw/scene/index.js +1 -1
- package/dist/excalidraw/scene/selection.js +4 -1
- package/dist/excalidraw/types.d.ts +15 -0
- package/dist/excalidraw/utility-types.d.ts +1 -0
- package/dist/excalidraw/utils.d.ts +8 -1
- package/dist/excalidraw/utils.js +9 -0
- package/dist/excalidraw/visualdebug.d.ts +8 -1
- package/dist/excalidraw/visualdebug.js +3 -0
- package/dist/math/line.d.ts +19 -0
- package/dist/math/line.js +32 -3
- package/dist/math/point.d.ts +10 -0
- package/dist/math/point.js +12 -1
- package/dist/prod/index.css +1 -1
- package/dist/prod/index.js +29 -44
- package/dist/{dev/locales/en-ZXYG7GCR.json → prod/locales/en-V6KXFSCK.json} +8 -1
- package/package.json +5 -2
- package/dist/browser/dev/excalidraw-assets-dev/chunk-JGDL4H2X.js.map +0 -7
- package/dist/browser/dev/excalidraw-assets-dev/chunk-V7NFEZA6.js.map +0 -7
- package/dist/browser/prod/excalidraw-assets/chunk-S2XKB3DE.js +0 -62
- package/dist/browser/prod/excalidraw-assets/image-OFI2YYMP.js +0 -1
- package/dist/excalidraw/element/routing.d.ts +0 -12
- package/dist/excalidraw/element/routing.js +0 -642
- package/dist/excalidraw/jotai.d.ts +0 -34
- package/dist/excalidraw/jotai.js +0 -18
- /package/dist/browser/dev/excalidraw-assets-dev/{en-ZSVWGT55.js.map → en-7IBTMWBG.js.map} +0 -0
- /package/dist/browser/dev/excalidraw-assets-dev/{image-RJG3J34Y.js.map → image-N5AC7SEK.js.map} +0 -0
package/dist/dev/index.css
CHANGED
|
@@ -307,6 +307,8 @@
|
|
|
307
307
|
--editor-container-padding: 1rem;
|
|
308
308
|
--scrollbar-thumb: var(--button-gray-2);
|
|
309
309
|
--scrollbar-thumb-hover: var(--button-gray-3);
|
|
310
|
+
--color-slider-track: hsl(240, 100%, 90%);
|
|
311
|
+
--color-slider-thumb: var(--color-gray-80);
|
|
310
312
|
--modal-shadow:
|
|
311
313
|
0px 100px 80px rgba(0, 0, 0, 0.07),
|
|
312
314
|
0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198),
|
|
@@ -452,6 +454,7 @@
|
|
|
452
454
|
--avatar-border-color: var(--color-gray-85);
|
|
453
455
|
--scrollbar-thumb: #343a40;
|
|
454
456
|
--scrollbar-thumb-hover: #495057;
|
|
457
|
+
--color-slider-track: hsl(244, 23%, 39%);
|
|
455
458
|
--color-selection: #3530c4;
|
|
456
459
|
--color-icon-white: var(--color-gray-90);
|
|
457
460
|
--color-primary: #a8a5ff;
|
|
@@ -1001,31 +1004,22 @@
|
|
|
1001
1004
|
color: #000000;
|
|
1002
1005
|
}
|
|
1003
1006
|
|
|
1004
|
-
/* components/Popover.scss */
|
|
1005
|
-
.excalidraw .popover {
|
|
1006
|
-
position: absolute;
|
|
1007
|
-
z-index: 10;
|
|
1008
|
-
padding: 5px 0 5px;
|
|
1009
|
-
outline: none;
|
|
1010
|
-
}
|
|
1011
|
-
|
|
1012
1007
|
/* components/IconPicker.scss */
|
|
1013
1008
|
:export {
|
|
1014
1009
|
themeFilter: invert(93%) hue-rotate(180deg);
|
|
1015
1010
|
rightSidebarWidth: 302px;
|
|
1016
1011
|
}
|
|
1017
|
-
.excalidraw .picker-container {
|
|
1018
|
-
display: inline-block;
|
|
1019
|
-
box-sizing: border-box;
|
|
1020
|
-
margin-right: 0.25rem;
|
|
1021
|
-
}
|
|
1022
1012
|
.excalidraw .picker {
|
|
1013
|
+
padding: 0.5rem;
|
|
1023
1014
|
background: var(--popup-bg-color);
|
|
1024
1015
|
border: 0 solid rgba(255, 255, 255, 0.25);
|
|
1025
|
-
box-shadow:
|
|
1016
|
+
box-shadow: var(--shadow-island);
|
|
1026
1017
|
border-radius: 4px;
|
|
1027
1018
|
position: absolute;
|
|
1028
1019
|
}
|
|
1020
|
+
:root[dir=rtl] .excalidraw .picker {
|
|
1021
|
+
padding: 0.4rem;
|
|
1022
|
+
}
|
|
1029
1023
|
.excalidraw .picker-container button,
|
|
1030
1024
|
.excalidraw .picker button {
|
|
1031
1025
|
position: relative;
|
|
@@ -1064,43 +1058,15 @@
|
|
|
1064
1058
|
.excalidraw .picker button {
|
|
1065
1059
|
padding: 0.25rem 0.28rem 0.35rem 0.25rem;
|
|
1066
1060
|
}
|
|
1067
|
-
.excalidraw .picker-triangle {
|
|
1068
|
-
width: 0;
|
|
1069
|
-
height: 0;
|
|
1070
|
-
position: relative;
|
|
1071
|
-
top: -10px;
|
|
1072
|
-
z-index: 10;
|
|
1073
|
-
}
|
|
1074
|
-
:root[dir=ltr] .excalidraw .picker-triangle {
|
|
1075
|
-
left: 12px;
|
|
1076
|
-
}
|
|
1077
|
-
:root[dir=rtl] .excalidraw .picker-triangle {
|
|
1078
|
-
right: 12px;
|
|
1079
|
-
}
|
|
1080
|
-
.excalidraw .picker-triangle:before {
|
|
1081
|
-
content: "";
|
|
1082
|
-
position: absolute;
|
|
1083
|
-
border-style: solid;
|
|
1084
|
-
border-width: 0 9px 10px;
|
|
1085
|
-
border-color: transparent transparent rgba(0, 0, 0, 0.1);
|
|
1086
|
-
top: -1px;
|
|
1087
|
-
}
|
|
1088
|
-
.excalidraw .picker-triangle:after {
|
|
1089
|
-
content: "";
|
|
1090
|
-
position: absolute;
|
|
1091
|
-
border-style: solid;
|
|
1092
|
-
border-width: 0 9px 10px;
|
|
1093
|
-
border-color: transparent transparent var(--popup-bg-color);
|
|
1094
|
-
}
|
|
1095
1061
|
.excalidraw .picker-content {
|
|
1096
|
-
padding: 0.5rem;
|
|
1097
1062
|
display: grid;
|
|
1098
|
-
grid-template-columns: repeat(
|
|
1063
|
+
grid-template-columns: repeat(4, auto);
|
|
1099
1064
|
grid-gap: 0.5rem;
|
|
1100
1065
|
border-radius: 4px;
|
|
1101
1066
|
}
|
|
1102
|
-
|
|
1103
|
-
|
|
1067
|
+
.excalidraw .picker-collapsible {
|
|
1068
|
+
font-size: 0.75rem;
|
|
1069
|
+
padding: 0.5rem 0;
|
|
1104
1070
|
}
|
|
1105
1071
|
.excalidraw .picker-keybinding {
|
|
1106
1072
|
position: absolute;
|
|
@@ -1213,6 +1179,60 @@
|
|
|
1213
1179
|
max-width: calc(2rem + 4 * var(--default-button-size));
|
|
1214
1180
|
}
|
|
1215
1181
|
|
|
1182
|
+
/* components/Range.scss */
|
|
1183
|
+
:export {
|
|
1184
|
+
themeFilter: invert(93%) hue-rotate(180deg);
|
|
1185
|
+
rightSidebarWidth: 302px;
|
|
1186
|
+
}
|
|
1187
|
+
.excalidraw {
|
|
1188
|
+
--slider-thumb-size: 16px;
|
|
1189
|
+
}
|
|
1190
|
+
.excalidraw .range-wrapper {
|
|
1191
|
+
position: relative;
|
|
1192
|
+
padding-top: 10px;
|
|
1193
|
+
padding-bottom: 30px;
|
|
1194
|
+
}
|
|
1195
|
+
.excalidraw .range-input {
|
|
1196
|
+
width: 100%;
|
|
1197
|
+
height: 4px;
|
|
1198
|
+
-webkit-appearance: none;
|
|
1199
|
+
background: var(--color-slider-track);
|
|
1200
|
+
border-radius: 2px;
|
|
1201
|
+
outline: none;
|
|
1202
|
+
}
|
|
1203
|
+
.excalidraw .range-input::-webkit-slider-thumb {
|
|
1204
|
+
-webkit-appearance: none;
|
|
1205
|
+
appearance: none;
|
|
1206
|
+
width: var(--slider-thumb-size);
|
|
1207
|
+
height: var(--slider-thumb-size);
|
|
1208
|
+
background: var(--color-slider-thumb);
|
|
1209
|
+
border-radius: 50%;
|
|
1210
|
+
cursor: pointer;
|
|
1211
|
+
border: none;
|
|
1212
|
+
}
|
|
1213
|
+
.excalidraw .range-input::-moz-range-thumb {
|
|
1214
|
+
width: var(--slider-thumb-size);
|
|
1215
|
+
height: var(--slider-thumb-size);
|
|
1216
|
+
background: var(--color-slider-thumb);
|
|
1217
|
+
border-radius: 50%;
|
|
1218
|
+
cursor: pointer;
|
|
1219
|
+
border: none;
|
|
1220
|
+
}
|
|
1221
|
+
.excalidraw .value-bubble {
|
|
1222
|
+
position: absolute;
|
|
1223
|
+
bottom: 0;
|
|
1224
|
+
transform: translateX(-50%);
|
|
1225
|
+
font-size: 12px;
|
|
1226
|
+
color: var(--text-primary-color);
|
|
1227
|
+
}
|
|
1228
|
+
.excalidraw .zero-label {
|
|
1229
|
+
position: absolute;
|
|
1230
|
+
bottom: 0;
|
|
1231
|
+
left: 4px;
|
|
1232
|
+
font-size: 12px;
|
|
1233
|
+
color: var(--text-primary-color);
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1216
1236
|
/* components/Tooltip.scss */
|
|
1217
1237
|
:export {
|
|
1218
1238
|
themeFilter: invert(93%) hue-rotate(180deg);
|
|
@@ -2581,6 +2601,8 @@
|
|
|
2581
2601
|
--editor-container-padding: 1rem;
|
|
2582
2602
|
--scrollbar-thumb: var(--button-gray-2);
|
|
2583
2603
|
--scrollbar-thumb-hover: var(--button-gray-3);
|
|
2604
|
+
--color-slider-track: hsl(240, 100%, 90%);
|
|
2605
|
+
--color-slider-thumb: var(--color-gray-80);
|
|
2584
2606
|
--modal-shadow:
|
|
2585
2607
|
0px 100px 80px rgba(0, 0, 0, 0.07),
|
|
2586
2608
|
0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198),
|
|
@@ -2726,6 +2748,7 @@
|
|
|
2726
2748
|
--avatar-border-color: var(--color-gray-85);
|
|
2727
2749
|
--scrollbar-thumb: #343a40;
|
|
2728
2750
|
--scrollbar-thumb-hover: #495057;
|
|
2751
|
+
--color-slider-track: hsl(244, 23%, 39%);
|
|
2729
2752
|
--color-selection: #3530c4;
|
|
2730
2753
|
--color-icon-white: var(--color-gray-90);
|
|
2731
2754
|
--color-primary: #a8a5ff;
|
|
@@ -3007,6 +3030,14 @@
|
|
|
3007
3030
|
margin-right: 6px;
|
|
3008
3031
|
}
|
|
3009
3032
|
|
|
3033
|
+
/* components/Popover.scss */
|
|
3034
|
+
.excalidraw .popover {
|
|
3035
|
+
position: absolute;
|
|
3036
|
+
z-index: 10;
|
|
3037
|
+
padding: 5px 0 5px;
|
|
3038
|
+
outline: none;
|
|
3039
|
+
}
|
|
3040
|
+
|
|
3010
3041
|
/* components/ContextMenu.scss */
|
|
3011
3042
|
:export {
|
|
3012
3043
|
themeFilter: invert(93%) hue-rotate(180deg);
|
|
@@ -3682,7 +3713,6 @@
|
|
|
3682
3713
|
top: var(--editor-container-padding);
|
|
3683
3714
|
right: var(--editor-container-padding);
|
|
3684
3715
|
bottom: var(--editor-container-padding);
|
|
3685
|
-
z-index: 2;
|
|
3686
3716
|
}
|
|
3687
3717
|
.excalidraw .FixedSideContainer_side_top.zen-mode {
|
|
3688
3718
|
right: 42px;
|
|
@@ -5083,8 +5113,8 @@
|
|
|
5083
5113
|
.excalidraw .ElementLinkDialog {
|
|
5084
5114
|
position: absolute;
|
|
5085
5115
|
top: var(--editor-container-padding);
|
|
5086
|
-
left:
|
|
5087
|
-
z-index:
|
|
5116
|
+
left: var(--editor-container-padding);
|
|
5117
|
+
z-index: var(--zIndex-modal);
|
|
5088
5118
|
border-radius: 10px;
|
|
5089
5119
|
padding: 1.5rem;
|
|
5090
5120
|
display: flex;
|
|
@@ -5500,6 +5530,8 @@
|
|
|
5500
5530
|
--editor-container-padding: 1rem;
|
|
5501
5531
|
--scrollbar-thumb: var(--button-gray-2);
|
|
5502
5532
|
--scrollbar-thumb-hover: var(--button-gray-3);
|
|
5533
|
+
--color-slider-track: hsl(240, 100%, 90%);
|
|
5534
|
+
--color-slider-thumb: var(--color-gray-80);
|
|
5503
5535
|
--modal-shadow:
|
|
5504
5536
|
0px 100px 80px rgba(0, 0, 0, 0.07),
|
|
5505
5537
|
0px 41.7776px 33.4221px rgba(0, 0, 0, 0.0503198),
|
|
@@ -5645,6 +5677,7 @@
|
|
|
5645
5677
|
--avatar-border-color: var(--color-gray-85);
|
|
5646
5678
|
--scrollbar-thumb: #343a40;
|
|
5647
5679
|
--scrollbar-thumb-hover: #495057;
|
|
5680
|
+
--color-slider-track: hsl(244, 23%, 39%);
|
|
5648
5681
|
--color-selection: #3530c4;
|
|
5649
5682
|
--color-icon-white: var(--color-gray-90);
|
|
5650
5683
|
--color-primary: #a8a5ff;
|
|
@@ -6315,10 +6348,12 @@ body.excalidraw-cursor-resize * {
|
|
|
6315
6348
|
.excalidraw .main-menu-trigger:active {
|
|
6316
6349
|
box-shadow: 0 0 0 1px var(--color-brand-active);
|
|
6317
6350
|
}
|
|
6351
|
+
.excalidraw .App-mobile-menu,
|
|
6318
6352
|
.excalidraw .App-menu__left {
|
|
6319
6353
|
--button-border: transparent;
|
|
6320
6354
|
--button-bg: var(--color-surface-mid);
|
|
6321
6355
|
}
|
|
6356
|
+
.excalidraw.theme--dark.excalidraw .App-mobile-menu,
|
|
6322
6357
|
.excalidraw.theme--dark.excalidraw .App-menu__left {
|
|
6323
6358
|
--button-hover-bg: #363541;
|
|
6324
6359
|
--button-bg: var(--color-surface-high);
|
|
@@ -6499,7 +6534,7 @@ body.excalidraw-cursor-resize * {
|
|
|
6499
6534
|
|
|
6500
6535
|
/* components/welcome-screen/WelcomeScreen.scss */
|
|
6501
6536
|
.excalidraw .excalifont {
|
|
6502
|
-
font-family: "Excalifont";
|
|
6537
|
+
font-family: "Excalifont", "Xiaolai";
|
|
6503
6538
|
}
|
|
6504
6539
|
.excalidraw .welcome-screen-decor {
|
|
6505
6540
|
pointer-events: none;
|