@zsviczian/excalidraw 0.17.1-obsidian-18 → 0.17.1-obsidian-20

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.
Files changed (57) hide show
  1. package/dist/excalidraw.development.js +123 -58
  2. package/dist/excalidraw.production.min.js +1 -1
  3. package/dist/styles.development.css +1042 -821
  4. package/dist/styles.production.css +12 -11
  5. package/package.json +4 -3
  6. package/types/excalidraw/actions/actionAddToLibrary.d.ts +16 -1
  7. package/types/excalidraw/actions/actionAlign.d.ts +19 -7
  8. package/types/excalidraw/actions/actionBoundText.d.ts +13 -3
  9. package/types/excalidraw/actions/actionCanvas.d.ts +111 -15
  10. package/types/excalidraw/actions/actionClipboard.d.ts +48 -6
  11. package/types/excalidraw/actions/actionDeleteSelected.d.ts +17 -1
  12. package/types/excalidraw/actions/actionDistribute.d.ts +2 -0
  13. package/types/excalidraw/actions/actionDuplicateSelection.d.ts +2 -1
  14. package/types/excalidraw/actions/actionElementLock.d.ts +16 -3
  15. package/types/excalidraw/actions/actionExport.d.ts +53 -0
  16. package/types/excalidraw/actions/actionFinalize.d.ts +11 -0
  17. package/types/excalidraw/actions/actionFlip.d.ts +4 -2
  18. package/types/excalidraw/actions/actionFrame.d.ts +21 -3
  19. package/types/excalidraw/actions/actionGroup.d.ts +14 -2
  20. package/types/excalidraw/actions/actionLinearEditor.d.ts +7 -1
  21. package/types/excalidraw/actions/actionLink.d.ts +7 -1
  22. package/types/excalidraw/actions/actionMenu.d.ts +17 -0
  23. package/types/excalidraw/actions/actionNavigate.d.ts +11 -0
  24. package/types/excalidraw/actions/actionProperties.d.ts +82 -0
  25. package/types/excalidraw/actions/actionSelectAll.d.ts +8 -1
  26. package/types/excalidraw/actions/actionStyles.d.ts +9 -2
  27. package/types/excalidraw/actions/actionToggleGridMode.d.ts +6 -1
  28. package/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +8 -2
  29. package/types/excalidraw/actions/actionToggleStats.d.ts +8 -1
  30. package/types/excalidraw/actions/actionToggleViewMode.d.ts +8 -1
  31. package/types/excalidraw/actions/actionToggleZenMode.d.ts +8 -1
  32. package/types/excalidraw/actions/actionZindex.d.ts +8 -4
  33. package/types/excalidraw/actions/shortcuts.d.ts +2 -2
  34. package/types/excalidraw/actions/types.d.ts +6 -4
  35. package/types/excalidraw/clients.d.ts +10 -1
  36. package/types/excalidraw/components/Actions.d.ts +3 -1
  37. package/types/excalidraw/components/App.d.ts +1 -1
  38. package/types/excalidraw/components/Avatar.d.ts +2 -3
  39. package/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +18 -0
  40. package/types/excalidraw/components/CommandPalette/defaultCommandPaletteItems.d.ts +2 -0
  41. package/types/excalidraw/components/CommandPalette/types.d.ts +25 -0
  42. package/types/excalidraw/components/InlineIcon.d.ts +1 -1
  43. package/types/excalidraw/components/UserList.d.ts +3 -7
  44. package/types/excalidraw/components/hyperlink/Hyperlink.d.ts +2 -2
  45. package/types/excalidraw/components/icons.d.ts +22 -1
  46. package/types/excalidraw/components/main-menu/DefaultItems.d.ts +4 -0
  47. package/types/excalidraw/constants.d.ts +5 -0
  48. package/types/excalidraw/deburr.d.ts +1 -0
  49. package/types/excalidraw/element/embeddable.d.ts +7 -0
  50. package/types/excalidraw/element/linearElementEditor.d.ts +5 -0
  51. package/types/excalidraw/element/textElement.d.ts +0 -5
  52. package/types/excalidraw/hooks/useStableCallback.d.ts +4 -0
  53. package/types/excalidraw/index.d.ts +1 -1
  54. package/types/excalidraw/keys.d.ts +1 -0
  55. package/types/excalidraw/obsidianUtils.d.ts +1 -0
  56. package/types/excalidraw/scene/types.d.ts +10 -20
  57. package/types/excalidraw/types.d.ts +21 -2
@@ -1304,8 +1304,8 @@
1304
1304
  }
1305
1305
 
1306
1306
  .excalidraw .Avatar {
1307
- width: 1.25rem;
1308
- height: 1.25rem;
1307
+ width: var(--avatar-size, 1.5rem);
1308
+ height: var(--avatar-size, 1.5rem);
1309
1309
  position: relative;
1310
1310
  border-radius: 100%;
1311
1311
  outline-offset: 2px;
@@ -1319,6 +1319,9 @@
1319
1319
  color: var(--color-gray-90);
1320
1320
  flex: 0 0 auto;
1321
1321
  }
1322
+ .excalidraw .Avatar:active {
1323
+ transform: scale(0.94);
1324
+ }
1322
1325
  .excalidraw .Avatar-img {
1323
1326
  width: 100%;
1324
1327
  height: 100%;
@@ -1331,13 +1334,13 @@
1331
1334
  right: -3px;
1332
1335
  bottom: -3px;
1333
1336
  left: -3px;
1334
- border: 1px solid var(--avatar-border-color);
1335
1337
  border-radius: 100%;
1336
1338
  }
1337
- .excalidraw .Avatar--is-followed::before {
1339
+ .excalidraw .Avatar.is-followed::before {
1338
1340
  border-color: var(--color-primary-hover);
1341
+ box-shadow: 0 0 0 1px var(--color-primary-hover);
1339
1342
  }
1340
- .excalidraw .Avatar--is-current-user {
1343
+ .excalidraw .Avatar.is-current-user {
1341
1344
  cursor: auto;
1342
1345
  }
1343
1346
  /*!****************************************************************************************************************************************************************************************************************!*\
@@ -1405,93 +1408,188 @@
1405
1408
  .excalidraw-hyperlinkContainer__buttons {
1406
1409
  flex: 0 0 auto;
1407
1410
  }
1408
- /*!********************************************************************************************************************************************************************************************************!*\
1409
- !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/ContextMenu.scss ***!
1410
- \********************************************************************************************************************************************************************************************************/
1411
- @charset "UTF-8";
1411
+ /*!***************************************************************************************************************************************************************************************************!*\
1412
+ !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/Dialog.scss ***!
1413
+ \***************************************************************************************************************************************************************************************************/
1412
1414
  :export {
1413
1415
  themeFilter: invert(93%) hue-rotate(180deg);
1414
1416
  rightSidebarWidth: 302px;
1415
1417
  }
1416
1418
 
1417
- .excalidraw .context-menu {
1418
- position: relative;
1419
- border-radius: 4px;
1420
- box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
1421
- padding: 0;
1422
- list-style: none;
1423
- -webkit-user-select: none;
1424
- user-select: none;
1425
- margin: -0.25rem 0 0 0.125rem;
1426
- padding: 0.5rem 0;
1427
- background-color: var(--popup-secondary-bg-color);
1428
- border: 1px solid var(--button-gray-3);
1429
- cursor: default;
1419
+ .excalidraw .Dialog {
1420
+ -webkit-user-select: text;
1421
+ user-select: text;
1422
+ cursor: auto;
1430
1423
  }
1431
- .excalidraw .context-menu button {
1432
- color: var(--popup-text-color);
1424
+ .excalidraw .Dialog__title {
1425
+ margin: 0;
1426
+ text-align: left;
1427
+ font-size: 1.25rem;
1428
+ border-bottom: 1px solid var(--dialog-border-color);
1429
+ padding: 0 0 0.75rem;
1430
+ margin-bottom: 1.5rem;
1433
1431
  }
1434
- .excalidraw .context-menu-item {
1435
- position: relative;
1436
- width: 100%;
1437
- min-width: 9.5rem;
1432
+ .excalidraw .Dialog__close {
1433
+ color: var(--color-gray-40);
1438
1434
  margin: 0;
1439
- padding: 0.25rem 1rem 0.25rem 1.25rem;
1440
- text-align: start;
1441
- border-radius: 0;
1435
+ position: absolute;
1436
+ top: 0.75rem;
1437
+ right: 0.5rem;
1438
+ border: 0;
1442
1439
  background-color: transparent;
1443
- border: none;
1444
- white-space: nowrap;
1445
- font-family: inherit;
1446
- display: grid;
1447
- grid-template-columns: 1fr 0.2fr;
1448
- align-items: center;
1440
+ line-height: 0;
1441
+ cursor: pointer;
1449
1442
  }
1450
- .excalidraw .context-menu-item.checkmark::before {
1451
- position: absolute;
1452
- left: 6px;
1453
- margin-bottom: 1px;
1454
- content: "✓";
1443
+ .excalidraw .Dialog__close:hover {
1444
+ color: var(--color-gray-60);
1455
1445
  }
1456
- .excalidraw .context-menu-item.dangerous .context-menu-item__label {
1457
- color: #f03e3e;
1446
+ .excalidraw .Dialog__close:active {
1447
+ color: var(--color-gray-40);
1458
1448
  }
1459
- .excalidraw .context-menu-item .context-menu-item__label {
1460
- justify-self: start;
1461
- margin-inline-end: 20px;
1449
+ .excalidraw .Dialog__close svg {
1450
+ width: 1.5rem;
1451
+ height: 1.5rem;
1462
1452
  }
1463
- .excalidraw .context-menu-item .context-menu-item__shortcut {
1464
- justify-self: end;
1465
- opacity: 0.6;
1466
- font-family: inherit;
1467
- font-size: 0.7rem;
1453
+ .excalidraw .Dialog__close + .Dialog__content {
1454
+ --offset: 28px;
1455
+ height: calc(100% - var(--offset)) !important;
1456
+ margin-top: var(--offset) !important;
1468
1457
  }
1469
- .excalidraw .context-menu-item:hover {
1470
- background-color: var(--select-highlight-color);
1458
+ .excalidraw .Dialog--fullscreen .Dialog__close {
1459
+ top: 1.25rem;
1460
+ right: 1.25rem;
1471
1461
  }
1472
- .excalidraw .context-menu-item:hover.dangerous {
1473
- background-color: #fa5252;
1462
+ /*!***************************************************************************************************************************************************************************************************!*\
1463
+ !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/Island.scss ***!
1464
+ \***************************************************************************************************************************************************************************************************/
1465
+ .excalidraw .Island {
1466
+ --padding: 0;
1467
+ box-sizing: border-box;
1468
+ background-color: var(--island-bg-color);
1469
+ box-shadow: var(--shadow-island);
1470
+ border-radius: var(--border-radius-lg);
1471
+ padding: calc(var(--padding) * var(--space-factor));
1472
+ position: relative;
1473
+ transition: box-shadow 0.5s ease-in-out;
1474
1474
  }
1475
- .excalidraw .context-menu-item:hover.dangerous .context-menu-item__label {
1476
- color: var(--popup-bg-color);
1475
+ .excalidraw .Island.zen-mode {
1476
+ box-shadow: none;
1477
1477
  }
1478
- .excalidraw .context-menu-item:focus {
1478
+ /*!**************************************************************************************************************************************************************************************************!*\
1479
+ !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/Modal.scss ***!
1480
+ \**************************************************************************************************************************************************************************************************/
1481
+ :export {
1482
+ themeFilter: invert(93%) hue-rotate(180deg);
1483
+ rightSidebarWidth: 302px;
1484
+ }
1485
+
1486
+ .excalidraw.excalidraw-modal-container {
1487
+ position: absolute;
1488
+ z-index: var(--zIndex-modal);
1489
+ }
1490
+ .excalidraw .Modal {
1491
+ position: absolute;
1492
+ top: 0;
1493
+ left: 0;
1494
+ right: 0;
1495
+ bottom: 0;
1496
+ display: flex;
1497
+ align-items: center;
1498
+ justify-content: center;
1499
+ overflow: auto;
1500
+ padding: calc(var(--space-factor) * 10);
1501
+ display: flex;
1502
+ flex-direction: column;
1503
+ }
1504
+ .excalidraw .Modal .Island {
1505
+ padding: 2.5rem;
1506
+ border: 0;
1507
+ box-shadow: none;
1508
+ border-radius: 0;
1509
+ }
1510
+ .excalidraw .Modal.animations-disabled .Modal__background {
1511
+ animation: none;
1512
+ }
1513
+ .excalidraw .Modal.animations-disabled .Modal__content {
1514
+ animation: none;
1515
+ opacity: 1;
1516
+ }
1517
+ .excalidraw .Modal__background {
1518
+ position: absolute;
1519
+ top: 0;
1520
+ left: 0;
1521
+ right: 0;
1522
+ bottom: 0;
1479
1523
  z-index: 1;
1524
+ background-color: rgba(18, 18, 18, 0.2);
1525
+ animation: Modal__background__fade-in 0.1s linear forwards;
1480
1526
  }
1481
- .excalidraw--mobile.excalidraw .context-menu-item {
1482
- display: block;
1527
+ .excalidraw .Modal__content {
1528
+ position: relative;
1529
+ z-index: 2;
1530
+ width: 100%;
1531
+ max-width: var(--max-width);
1532
+ max-height: 100%;
1533
+ opacity: 0;
1534
+ transform: translateY(10px);
1535
+ animation: Modal__content_fade-in 0.025s ease-out 0s forwards;
1536
+ position: relative;
1537
+ overflow-y: auto;
1538
+ background: var(--island-bg-color);
1539
+ border: 1px solid var(--dialog-border-color);
1540
+ box-shadow: var(--modal-shadow);
1541
+ border-radius: 0.75rem;
1542
+ box-sizing: border-box;
1483
1543
  }
1484
- .excalidraw--mobile.excalidraw .context-menu-item .context-menu-item__label {
1485
- margin-inline-end: 0;
1544
+ .excalidraw .Modal__content:focus {
1545
+ outline: none;
1486
1546
  }
1487
- .excalidraw--mobile.excalidraw .context-menu-item .context-menu-item__shortcut {
1488
- display: none;
1547
+ @keyframes Modal__background__fade-in {
1548
+ from {
1549
+ opacity: 0;
1550
+ }
1551
+ to {
1552
+ opacity: 1;
1553
+ }
1489
1554
  }
1490
-
1491
- .excalidraw .context-menu-item-separator {
1492
- border: none;
1493
- border-top: 1px solid #adb5bd;
1555
+ @keyframes Modal__content_fade-in {
1556
+ from {
1557
+ opacity: 0;
1558
+ transform: scale(0.9);
1559
+ }
1560
+ to {
1561
+ opacity: 1;
1562
+ transform: scale(1);
1563
+ }
1564
+ }
1565
+ .excalidraw .Modal__close {
1566
+ color: var(--icon-fill-color);
1494
1567
  margin: 0;
1568
+ padding: 0.375rem;
1569
+ position: absolute;
1570
+ top: 1rem;
1571
+ right: 1rem;
1572
+ border: 0;
1573
+ background-color: transparent;
1574
+ line-height: 0;
1575
+ cursor: pointer;
1576
+ }
1577
+ .excalidraw .Modal__close svg {
1578
+ width: 1.5rem;
1579
+ height: 1.5rem;
1580
+ }
1581
+ .excalidraw .Dialog--fullscreen .Modal {
1582
+ padding: 0;
1583
+ }
1584
+ .excalidraw .Dialog--fullscreen .Modal__content {
1585
+ position: absolute;
1586
+ top: 0;
1587
+ left: 0;
1588
+ right: 0;
1589
+ bottom: 0;
1590
+ max-width: 100%;
1591
+ border: 0;
1592
+ border-radius: 0;
1495
1593
  }
1496
1594
  /*!**************************************************************************************************************************************************************************************************!*\
1497
1595
  !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/Stack.scss ***!
@@ -1511,106 +1609,215 @@
1511
1609
  grid-auto-flow: column;
1512
1610
  grid-auto-columns: min-content;
1513
1611
  }
1514
- /*!****************************************************************************************************************************************************************************************************!*\
1515
- !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/Actions.scss ***!
1516
- \****************************************************************************************************************************************************************************************************/
1517
- .zoom-actions,
1518
- .undo-redo-buttons {
1519
- background-color: var(--island-bg-color);
1520
- border-radius: var(--border-radius-lg);
1521
- box-shadow: 0 0 0 1px var(--color-surface-lowest);
1612
+ /*!**********************************************************************************************************************************************************************************************************!*\
1613
+ !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/ConfirmDialog.scss ***!
1614
+ \**********************************************************************************************************************************************************************************************************/
1615
+ :export {
1616
+ themeFilter: invert(93%) hue-rotate(180deg);
1617
+ rightSidebarWidth: 302px;
1522
1618
  }
1523
1619
 
1524
- .zoom-button,
1525
- .undo-redo-buttons button {
1526
- border-radius: 0 !important;
1527
- background-color: var(--color-surface-low) !important;
1528
- font-size: 0.875rem !important;
1529
- width: var(--lg-button-size);
1530
- height: var(--lg-button-size);
1531
- }
1532
- .zoom-button svg,
1533
- .undo-redo-buttons button svg {
1534
- width: var(--lg-icon-size) !important;
1535
- height: var(--lg-icon-size) !important;
1536
- }
1537
- .zoom-button .ToolIcon__icon,
1538
- .undo-redo-buttons button .ToolIcon__icon {
1539
- width: 100%;
1540
- height: 100%;
1620
+ .excalidraw .confirm-dialog-buttons {
1621
+ display: flex;
1622
+ column-gap: 0.5rem;
1623
+ justify-content: flex-end;
1541
1624
  }
1542
-
1543
- .reset-zoom-button {
1544
- border-left: 0 !important;
1545
- border-right: 0 !important;
1546
- padding: 0 0.625rem !important;
1547
- width: 3.25rem !important;
1548
- justify-content: center !important;
1549
- color: var(--text-primary-color);
1625
+ /*!***************************************************************************************************************************************************************************************************************!*\
1626
+ !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/DialogActionButton.scss ***!
1627
+ \***************************************************************************************************************************************************************************************************************/
1628
+ .excalidraw .Dialog__action-button {
1629
+ position: relative;
1630
+ display: flex;
1631
+ column-gap: 0.5rem;
1632
+ align-items: center;
1633
+ padding: 0.5rem 1.5rem;
1634
+ border: 1px solid var(--default-border-color);
1635
+ background-color: transparent;
1636
+ height: 3rem;
1637
+ border-radius: var(--border-radius-lg);
1638
+ letter-spacing: 0.4px;
1639
+ color: inherit;
1640
+ font-family: inherit;
1641
+ font-size: 0.875rem;
1642
+ font-weight: 600;
1643
+ -webkit-user-select: none;
1644
+ user-select: none;
1550
1645
  }
1551
-
1552
- .zoom-out-button {
1553
- border-top-left-radius: var(--border-radius-lg) !important;
1554
- border-bottom-left-radius: var(--border-radius-lg) !important;
1646
+ .excalidraw .Dialog__action-button svg {
1647
+ display: block;
1648
+ width: 1rem;
1649
+ height: 1rem;
1555
1650
  }
1556
- :root[dir=rtl] .zoom-out-button {
1557
- transform: scaleX(-1);
1651
+ .excalidraw .Dialog__action-button--danger {
1652
+ background-color: var(--color-danger);
1653
+ border-color: var(--color-danger);
1654
+ color: #fff;
1558
1655
  }
1559
- .zoom-out-button .ToolIcon__icon {
1560
- border-top-right-radius: 0 !important;
1561
- border-bottom-right-radius: 0 !important;
1656
+ .excalidraw .Dialog__action-button--primary {
1657
+ background-color: var(--color-primary);
1658
+ border-color: var(--color-primary);
1659
+ color: #fff;
1562
1660
  }
1563
-
1564
- .zoom-in-button {
1565
- border-top-right-radius: var(--border-radius-lg) !important;
1566
- border-bottom-right-radius: var(--border-radius-lg) !important;
1661
+ .excalidraw.theme--dark .Dialog__action-button--danger {
1662
+ color: var(--color-gray-100);
1567
1663
  }
1568
- :root[dir=rtl] .zoom-in-button {
1569
- transform: scaleX(-1);
1664
+ .excalidraw.theme--dark .Dialog__action-button--primary {
1665
+ color: var(--color-gray-100);
1570
1666
  }
1571
- .zoom-in-button .ToolIcon__icon {
1572
- border-top-left-radius: 0 !important;
1573
- border-bottom-left-radius: 0 !important;
1667
+ /*!***********************************************************************************************************************************************************************************************************!*\
1668
+ !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/PublishLibrary.scss ***!
1669
+ \***********************************************************************************************************************************************************************************************************/
1670
+ :export {
1671
+ themeFilter: invert(93%) hue-rotate(180deg);
1672
+ rightSidebarWidth: 302px;
1574
1673
  }
1575
1674
 
1576
- .undo-redo-buttons .undo-button-container button {
1577
- border-top-left-radius: var(--border-radius-lg) !important;
1578
- border-bottom-left-radius: var(--border-radius-lg) !important;
1579
- border-right: 0 !important;
1675
+ .excalidraw .publish-library__fields {
1676
+ display: flex;
1677
+ flex-direction: column;
1580
1678
  }
1581
- :root[dir=rtl] .undo-redo-buttons .undo-button-container button {
1582
- transform: scaleX(-1);
1679
+ .excalidraw .publish-library__fields label {
1680
+ padding: 1em 0;
1681
+ display: flex;
1682
+ justify-content: space-between;
1683
+ align-items: center;
1583
1684
  }
1584
- .undo-redo-buttons .undo-button-container button .ToolIcon__icon {
1585
- border-top-right-radius: 0 !important;
1586
- border-bottom-right-radius: 0 !important;
1685
+ .excalidraw .publish-library__fields label span {
1686
+ font-weight: 500;
1687
+ font-size: 1rem;
1688
+ color: #868e96;
1587
1689
  }
1588
- .undo-redo-buttons .redo-button-container button {
1589
- border-top-right-radius: var(--border-radius-lg) !important;
1590
- border-bottom-right-radius: var(--border-radius-lg) !important;
1690
+ .excalidraw .publish-library__fields label input,
1691
+ .excalidraw .publish-library__fields label textarea {
1692
+ width: 70%;
1693
+ padding: 0.6em;
1694
+ font-family: var(--ui-font);
1591
1695
  }
1592
- :root[dir=rtl] .undo-redo-buttons .redo-button-container button {
1593
- transform: scaleX(-1);
1696
+ .excalidraw .publish-library__fields label .required {
1697
+ color: #e03131;
1698
+ margin: 0.2rem;
1594
1699
  }
1595
- .undo-redo-buttons .redo-button-container button .ToolIcon__icon {
1596
- border-top-left-radius: 0 !important;
1597
- border-bottom-left-radius: 0 !important;
1700
+ .excalidraw .publish-library__buttons {
1701
+ display: flex;
1702
+ padding: 0.2rem 0;
1703
+ justify-content: flex-end;
1704
+ gap: 0.5rem;
1598
1705
  }
1599
- /*!***************************************************************************************************************************************************************************************************!*\
1600
- !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/Island.scss ***!
1601
- \***************************************************************************************************************************************************************************************************/
1602
- .excalidraw .Island {
1603
- --padding: 0;
1604
- box-sizing: border-box;
1605
- background-color: var(--island-bg-color);
1606
- box-shadow: var(--shadow-island);
1607
- border-radius: var(--border-radius-lg);
1608
- padding: calc(var(--padding) * var(--space-factor));
1706
+ .excalidraw .publish-library__buttons .ToolIcon__icon {
1707
+ min-width: 2.5rem;
1708
+ width: auto;
1709
+ font-size: 1rem;
1710
+ }
1711
+ .excalidraw .publish-library__buttons .ToolIcon_type_button {
1712
+ margin-left: 1rem;
1713
+ padding: 0 0.5rem;
1714
+ }
1715
+ .excalidraw .publish-library__buttons--confirm.ToolIcon_type_button {
1716
+ background-color: #228be6;
1717
+ }
1718
+ .excalidraw .publish-library__buttons--confirm.ToolIcon_type_button:hover {
1719
+ background-color: #1971c2;
1720
+ }
1721
+ .excalidraw .publish-library__buttons--cancel.ToolIcon_type_button {
1722
+ background-color: #adb5bd;
1723
+ }
1724
+ .excalidraw .publish-library__buttons--cancel.ToolIcon_type_button:hover {
1725
+ background-color: #868e96;
1726
+ }
1727
+ .excalidraw .publish-library__buttons .ToolIcon__icon {
1728
+ color: #ffffff;
1729
+ }
1730
+ .excalidraw .publish-library__buttons .ToolIcon__icon .Spinner {
1731
+ --spinner-color: #fff;
1732
+ }
1733
+ .excalidraw .publish-library__buttons .ToolIcon__icon .Spinner svg {
1734
+ padding: 0.5rem;
1735
+ }
1736
+ .excalidraw .publish-library .selected-library-items {
1737
+ display: flex;
1738
+ flex-wrap: wrap;
1739
+ }
1740
+ .excalidraw .publish-library .selected-library-items .single-library-item-wrapper {
1741
+ width: 9rem;
1742
+ }
1743
+ .excalidraw .publish-library-warning {
1744
+ color: #fa5252;
1745
+ }
1746
+ .excalidraw .publish-library-note {
1747
+ padding: 1em 0;
1748
+ font-style: italic;
1749
+ font-size: 14px;
1750
+ display: block;
1751
+ }
1752
+ .excalidraw .single-library-item {
1609
1753
  position: relative;
1610
- transition: box-shadow 0.5s ease-in-out;
1611
1754
  }
1612
- .excalidraw .Island.zen-mode {
1613
- box-shadow: none;
1755
+ .excalidraw .single-library-item-status {
1756
+ position: absolute;
1757
+ top: 0.3rem;
1758
+ left: 0.3rem;
1759
+ font-size: 0.7rem;
1760
+ color: #f03e3e;
1761
+ background: rgba(255, 255, 255, 0.9);
1762
+ padding: 0.1rem 0.2rem;
1763
+ border-radius: 0.2rem;
1764
+ }
1765
+ .excalidraw .single-library-item__svg {
1766
+ background-color: #ffffff;
1767
+ padding: 0.3rem;
1768
+ width: 7.5rem;
1769
+ height: 7.5rem;
1770
+ border: 1px solid var(--button-gray-2);
1771
+ }
1772
+ .excalidraw .single-library-item__svg svg {
1773
+ width: 100%;
1774
+ height: 100%;
1775
+ }
1776
+ .excalidraw .single-library-item .ToolIcon__icon {
1777
+ background-color: #ffffff;
1778
+ width: auto;
1779
+ height: auto;
1780
+ margin: 0 0.5rem;
1781
+ }
1782
+ .excalidraw .single-library-item .ToolIcon,
1783
+ .excalidraw .single-library-item .ToolIcon_type_button:hover {
1784
+ background-color: white;
1785
+ }
1786
+ .excalidraw .single-library-item .required,
1787
+ .excalidraw .single-library-item .error {
1788
+ color: #e03131;
1789
+ font-weight: bold;
1790
+ font-size: 1rem;
1791
+ margin: 0.2rem;
1792
+ }
1793
+ .excalidraw .single-library-item .error {
1794
+ font-weight: 500;
1795
+ margin: 0;
1796
+ padding: 0.3em 0;
1797
+ }
1798
+ .excalidraw .single-library-item--remove {
1799
+ position: absolute;
1800
+ top: 0.2rem;
1801
+ right: 1rem;
1802
+ }
1803
+ .excalidraw .single-library-item--remove .ToolIcon__icon {
1804
+ margin: 0;
1805
+ }
1806
+ .excalidraw .single-library-item--remove .ToolIcon__icon {
1807
+ background-color: #fa5252;
1808
+ }
1809
+ .excalidraw .single-library-item--remove .ToolIcon__icon:hover {
1810
+ background-color: #f03e3e;
1811
+ }
1812
+ .excalidraw .single-library-item--remove .ToolIcon__icon:active {
1813
+ background-color: #e03131;
1814
+ }
1815
+ .excalidraw .single-library-item--remove svg {
1816
+ color: #ffffff;
1817
+ padding: 0.26rem;
1818
+ border-radius: 0.3em;
1819
+ width: 1rem;
1820
+ height: 1rem;
1614
1821
  }
1615
1822
  /*!**********************************************************************************************************************************************************************************************************************!*\
1616
1823
  !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/dropdownMenu/DropdownMenu.scss ***!
@@ -1782,722 +1989,743 @@
1782
1989
  width: var(--default-button-size);
1783
1990
  height: var(--default-button-size);
1784
1991
  }
1785
- /*!***************************************************************************************************************************************************************************************************!*\
1786
- !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/Dialog.scss ***!
1787
- \***************************************************************************************************************************************************************************************************/
1992
+ /*!********************************************************************************************************************************************************************************************************!*\
1993
+ !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/LibraryUnit.scss ***!
1994
+ \********************************************************************************************************************************************************************************************************/
1788
1995
  :export {
1789
1996
  themeFilter: invert(93%) hue-rotate(180deg);
1790
1997
  rightSidebarWidth: 302px;
1791
1998
  }
1792
1999
 
1793
- .excalidraw .Dialog {
1794
- -webkit-user-select: text;
1795
- user-select: text;
1796
- cursor: auto;
2000
+ .excalidraw .library-unit {
2001
+ align-items: center;
2002
+ border: 1px solid transparent;
2003
+ display: flex;
2004
+ justify-content: center;
2005
+ position: relative;
2006
+ width: 55px;
2007
+ height: 55px;
2008
+ box-sizing: border-box;
2009
+ border-radius: var(--border-radius-lg);
1797
2010
  }
1798
- .excalidraw .Dialog__title {
1799
- margin: 0;
1800
- text-align: left;
1801
- font-size: 1.25rem;
1802
- border-bottom: 1px solid var(--dialog-border-color);
1803
- padding: 0 0 0.75rem;
1804
- margin-bottom: 1.5rem;
1805
- }
1806
- .excalidraw .Dialog__close {
1807
- color: var(--color-gray-40);
1808
- margin: 0;
1809
- position: absolute;
1810
- top: 0.75rem;
1811
- right: 0.5rem;
1812
- border: 0;
1813
- background-color: transparent;
1814
- line-height: 0;
1815
- cursor: pointer;
1816
- }
1817
- .excalidraw .Dialog__close:hover {
1818
- color: var(--color-gray-60);
1819
- }
1820
- .excalidraw .Dialog__close:active {
1821
- color: var(--color-gray-40);
2011
+ .excalidraw .library-unit svg {
2012
+ pointer-events: none;
1822
2013
  }
1823
- .excalidraw .Dialog__close svg {
1824
- width: 1.5rem;
1825
- height: 1.5rem;
2014
+ .excalidraw .library-unit--hover {
2015
+ border-color: var(--color-primary);
1826
2016
  }
1827
- .excalidraw .Dialog--fullscreen .Dialog__close {
1828
- top: 1.25rem;
1829
- right: 1.25rem;
2017
+ .excalidraw .library-unit--selected {
2018
+ border-color: var(--color-primary);
2019
+ border-width: 1px;
1830
2020
  }
1831
- /*!**************************************************************************************************************************************************************************************************!*\
1832
- !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/Modal.scss ***!
1833
- \**************************************************************************************************************************************************************************************************/
1834
- :export {
1835
- themeFilter: invert(93%) hue-rotate(180deg);
1836
- rightSidebarWidth: 302px;
2021
+ .excalidraw .library-unit--skeleton {
2022
+ opacity: 0.5;
2023
+ background: linear-gradient(-45deg, var(--color-gray-10), var(--color-gray-20), var(--color-gray-10));
2024
+ background-size: 200% 200%;
2025
+ animation: library-unit__skeleton-opacity-animation 0.2s linear;
1837
2026
  }
1838
-
1839
- .excalidraw.excalidraw-modal-container {
1840
- position: absolute;
1841
- z-index: var(--zIndex-modal);
2027
+ .excalidraw.theme--dark .library-unit--skeleton {
2028
+ background-image: linear-gradient(-45deg, var(--color-gray-100), var(--color-gray-80), var(--color-gray-100));
1842
2029
  }
1843
- .excalidraw .Modal {
1844
- position: absolute;
1845
- top: 0;
1846
- left: 0;
1847
- right: 0;
1848
- bottom: 0;
2030
+ .excalidraw .library-unit__dragger {
1849
2031
  display: flex;
1850
2032
  align-items: center;
1851
2033
  justify-content: center;
1852
- overflow: auto;
1853
- padding: calc(var(--space-factor) * 10);
1854
- display: flex;
1855
- flex-direction: column;
1856
- }
1857
- .excalidraw .Modal .Island {
1858
- padding: 2.5rem;
1859
- }
1860
- .excalidraw .Modal__background {
1861
- position: absolute;
1862
- top: 0;
1863
- left: 0;
1864
- right: 0;
1865
- bottom: 0;
1866
- z-index: 1;
1867
- background-color: rgba(18, 18, 18, 0.2);
1868
- animation: Modal__background__fade-in 0.125s linear forwards;
1869
- }
1870
- .excalidraw .Modal__content {
1871
- position: relative;
1872
- z-index: 2;
2034
+ height: 100%;
1873
2035
  width: 100%;
1874
- max-width: var(--max-width);
1875
- max-height: 100%;
1876
- opacity: 0;
1877
- transform: translateY(10px);
1878
- animation: Modal__content_fade-in 0.1s ease-out 0.05s forwards;
1879
- position: relative;
1880
- overflow-y: auto;
1881
- background: var(--island-bg-color);
1882
- border: 1px solid var(--dialog-border-color);
1883
- box-shadow: var(--modal-shadow);
1884
- border-radius: 6px;
1885
- box-sizing: border-box;
1886
- }
1887
- .excalidraw .Modal__content:focus {
1888
- outline: none;
1889
- }
1890
- @keyframes Modal__background__fade-in {
1891
- from {
1892
- opacity: 0;
1893
- }
1894
- to {
1895
- opacity: 1;
1896
- }
1897
2036
  }
1898
- @keyframes Modal__content_fade-in {
1899
- from {
1900
- opacity: 0;
1901
- transform: scale(0.9);
1902
- }
1903
- to {
1904
- opacity: 1;
1905
- transform: scale(1);
1906
- }
2037
+ .excalidraw .library-unit__dragger > svg {
2038
+ filter: var(--theme-filter);
2039
+ flex-grow: 1;
2040
+ max-height: 100%;
2041
+ max-width: 100%;
1907
2042
  }
1908
- .excalidraw .Modal__close {
2043
+ .excalidraw .library-unit__checkbox-container,
2044
+ .excalidraw .library-unit__checkbox-container:hover,
2045
+ .excalidraw .library-unit__checkbox-container:active {
2046
+ align-items: center;
2047
+ background: none;
2048
+ border: none;
1909
2049
  color: var(--icon-fill-color);
2050
+ display: flex;
2051
+ justify-content: center;
1910
2052
  margin: 0;
1911
- padding: 0.375rem;
2053
+ padding: 0.5rem;
1912
2054
  position: absolute;
1913
- top: 1rem;
1914
- right: 1rem;
1915
- border: 0;
1916
- background-color: transparent;
1917
- line-height: 0;
2055
+ left: 2rem;
2056
+ bottom: 2rem;
1918
2057
  cursor: pointer;
1919
2058
  }
1920
- .excalidraw .Modal__close svg {
1921
- width: 1.5rem;
1922
- height: 1.5rem;
1923
- }
1924
- .excalidraw .Dialog--fullscreen .Modal {
1925
- padding: 0;
2059
+ .excalidraw .library-unit__checkbox-container input,
2060
+ .excalidraw .library-unit__checkbox-container:hover input,
2061
+ .excalidraw .library-unit__checkbox-container:active input {
2062
+ cursor: pointer;
1926
2063
  }
1927
- .excalidraw .Dialog--fullscreen .Modal__content {
2064
+ .excalidraw .library-unit__checkbox {
1928
2065
  position: absolute;
1929
- top: 0;
1930
- left: 0;
1931
- right: 0;
1932
- bottom: 0;
1933
- max-width: 100%;
1934
- border: 0;
1935
- border-radius: 0;
2066
+ top: 0.125rem;
2067
+ right: 0.125rem;
2068
+ margin: 0;
1936
2069
  }
1937
- /*!**********************************************************************************************************************************************************************************************************!*\
1938
- !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/ConfirmDialog.scss ***!
1939
- \**********************************************************************************************************************************************************************************************************/
1940
- :export {
1941
- themeFilter: invert(93%) hue-rotate(180deg);
1942
- rightSidebarWidth: 302px;
2070
+ .excalidraw .library-unit__checkbox .Checkbox-box {
2071
+ margin: 0;
2072
+ width: 1rem;
2073
+ height: 1rem;
2074
+ border-radius: 4px;
2075
+ background-color: var(--color-primary-light);
2076
+ border: 1px solid var(--color-primary);
2077
+ box-shadow: none !important;
2078
+ padding: 2px;
1943
2079
  }
1944
-
1945
- .excalidraw .confirm-dialog-buttons {
1946
- display: flex;
1947
- column-gap: 0.5rem;
1948
- justify-content: flex-end;
2080
+ .excalidraw .library-unit__checkbox.Checkbox:hover .Checkbox-box {
2081
+ background-color: var(--color-primary-light);
1949
2082
  }
1950
- /*!***************************************************************************************************************************************************************************************************************!*\
1951
- !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/DialogActionButton.scss ***!
1952
- \***************************************************************************************************************************************************************************************************************/
1953
- .excalidraw .Dialog__action-button {
1954
- position: relative;
2083
+ .excalidraw .library-unit__checkbox.is-checked .Checkbox-box {
2084
+ background-color: var(--color-primary) !important;
2085
+ }
2086
+ .excalidraw .library-unit__checkbox.is-checked .Checkbox-box svg {
2087
+ color: var(--color-primary-light);
2088
+ }
2089
+ .excalidraw .library-unit__removeFromLibrary > svg {
2090
+ height: 16px;
2091
+ width: 16px;
2092
+ }
2093
+ .excalidraw .library-unit__adder {
2094
+ transform: scale(1);
2095
+ animation: library-unit__adder-animation 1s ease-in infinite;
2096
+ position: absolute;
2097
+ width: 1.5rem;
2098
+ height: 1.5rem;
2099
+ background-color: var(--color-primary);
2100
+ border-radius: var(--border-radius-md);
1955
2101
  display: flex;
1956
- column-gap: 0.5rem;
2102
+ justify-content: center;
1957
2103
  align-items: center;
1958
- padding: 0.5rem 1.5rem;
1959
- border: 1px solid var(--default-border-color);
1960
- background-color: transparent;
1961
- height: 3rem;
1962
- border-radius: var(--border-radius-lg);
1963
- letter-spacing: 0.4px;
1964
- color: inherit;
1965
- font-family: inherit;
1966
- font-size: 0.875rem;
1967
- font-weight: 600;
1968
- -webkit-user-select: none;
1969
- user-select: none;
2104
+ pointer-events: none;
1970
2105
  }
1971
- .excalidraw .Dialog__action-button svg {
1972
- display: block;
2106
+ .excalidraw .library-unit__adder svg {
2107
+ color: var(--color-primary-light);
1973
2108
  width: 1rem;
1974
2109
  height: 1rem;
1975
2110
  }
1976
- .excalidraw .Dialog__action-button--danger {
1977
- background-color: var(--color-danger);
1978
- border-color: var(--color-danger);
1979
- color: #fff;
2111
+ .excalidraw .library-unit:active .library-unit__adder {
2112
+ animation: none;
2113
+ transform: scale(0.8);
1980
2114
  }
1981
- .excalidraw .Dialog__action-button--primary {
1982
- background-color: var(--color-primary);
1983
- border-color: var(--color-primary);
1984
- color: #fff;
2115
+ .excalidraw .library-unit__active {
2116
+ cursor: pointer;
1985
2117
  }
1986
- .excalidraw.theme--dark .Dialog__action-button--danger {
1987
- color: var(--color-gray-100);
2118
+ @keyframes library-unit__adder-animation {
2119
+ 0% {
2120
+ transform: scale(0.85);
2121
+ }
2122
+ 50% {
2123
+ transform: scale(1);
2124
+ }
2125
+ 100% {
2126
+ transform: scale(0.85);
2127
+ }
1988
2128
  }
1989
- .excalidraw.theme--dark .Dialog__action-button--primary {
1990
- color: var(--color-gray-100);
2129
+ @keyframes library-unit__skeleton-opacity-animation {
2130
+ 0% {
2131
+ opacity: 0;
2132
+ }
2133
+ 75% {
2134
+ opacity: 0;
2135
+ }
2136
+ 100% {
2137
+ opacity: 0.5;
2138
+ }
1991
2139
  }
1992
- /*!***********************************************************************************************************************************************************************************************************!*\
1993
- !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/PublishLibrary.scss ***!
1994
- \***********************************************************************************************************************************************************************************************************/
1995
- :export {
1996
- themeFilter: invert(93%) hue-rotate(180deg);
1997
- rightSidebarWidth: 302px;
2140
+ /*!*************************************************************************************************************************************************************************************************************!*\
2141
+ !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/LibraryMenuItems.scss ***!
2142
+ \*************************************************************************************************************************************************************************************************************/
2143
+ .excalidraw {
2144
+ --container-padding-y: 1.5rem;
2145
+ --container-padding-x: 0.75rem;
1998
2146
  }
1999
-
2000
- .excalidraw .publish-library__fields {
2001
- display: flex;
2002
- flex-direction: column;
2147
+ .excalidraw .library-menu-items__no-items {
2148
+ text-align: center;
2149
+ color: var(--color-gray-70);
2150
+ line-height: 1.5;
2151
+ font-size: 0.875rem;
2152
+ width: 100%;
2003
2153
  }
2004
- .excalidraw .publish-library__fields label {
2005
- padding: 1em 0;
2006
- display: flex;
2007
- justify-content: space-between;
2008
- align-items: center;
2154
+ .excalidraw .library-menu-items__no-items__label {
2155
+ color: var(--color-primary);
2156
+ font-weight: bold;
2157
+ font-size: 1.125rem;
2158
+ margin-bottom: 0.75rem;
2009
2159
  }
2010
- .excalidraw .publish-library__fields label span {
2011
- font-weight: 500;
2012
- font-size: 1rem;
2013
- color: #868e96;
2160
+ .excalidraw.theme--dark .library-menu-items__no-items {
2161
+ color: var(--color-gray-40);
2014
2162
  }
2015
- .excalidraw .publish-library__fields label input,
2016
- .excalidraw .publish-library__fields label textarea {
2017
- width: 70%;
2018
- padding: 0.6em;
2019
- font-family: var(--ui-font);
2163
+ .excalidraw .library-menu-items-container {
2164
+ width: 100%;
2165
+ display: flex;
2166
+ flex-grow: 1;
2167
+ flex-shrink: 1;
2168
+ flex-basis: 0;
2169
+ overflow-y: auto;
2170
+ flex-direction: column;
2171
+ height: 100%;
2172
+ justify-content: center;
2173
+ margin: 0;
2174
+ position: relative;
2020
2175
  }
2021
- .excalidraw .publish-library__fields label .required {
2022
- color: #e03131;
2023
- margin: 0.2rem;
2176
+ .excalidraw .library-menu-items-container > div {
2177
+ padding-left: 0.75rem;
2178
+ padding-right: 0.75rem;
2024
2179
  }
2025
- .excalidraw .publish-library__buttons {
2026
- display: flex;
2027
- padding: 0.2rem 0;
2028
- justify-content: flex-end;
2029
- gap: 0.5rem;
2180
+ .excalidraw .library-menu-items-container__row {
2181
+ display: grid;
2182
+ grid-template-columns: repeat(4, 1fr);
2183
+ gap: 1rem;
2030
2184
  }
2031
- .excalidraw .publish-library__buttons .ToolIcon__icon {
2032
- min-width: 2.5rem;
2033
- width: auto;
2034
- font-size: 1rem;
2185
+ .excalidraw .library-menu-items-container__items {
2186
+ row-gap: 0.5rem;
2187
+ padding: var(--container-padding-y) 0;
2188
+ flex: 1;
2189
+ overflow-y: auto;
2190
+ overflow-x: hidden;
2191
+ margin-bottom: 1rem;
2035
2192
  }
2036
- .excalidraw .publish-library__buttons .ToolIcon_type_button {
2037
- margin-left: 1rem;
2038
- padding: 0 0.5rem;
2193
+ .excalidraw .library-menu-items-container__header {
2194
+ color: var(--color-primary);
2195
+ font-size: 1.125rem;
2196
+ font-weight: bold;
2197
+ margin-bottom: 0.75rem;
2198
+ width: 100%;
2199
+ padding-right: 4rem;
2200
+ box-sizing: border-box;
2039
2201
  }
2040
- .excalidraw .publish-library__buttons--confirm.ToolIcon_type_button {
2041
- background-color: #228be6;
2202
+ .excalidraw .library-menu-items-container__header--excal {
2203
+ margin-top: 2rem;
2042
2204
  }
2043
- .excalidraw .publish-library__buttons--confirm.ToolIcon_type_button:hover {
2044
- background-color: #1971c2;
2205
+ .excalidraw .library-menu-items-container__grid {
2206
+ display: grid;
2207
+ grid-template-columns: 1fr 1fr 1fr 1fr;
2208
+ grid-gap: 1rem;
2045
2209
  }
2046
- .excalidraw .publish-library__buttons--cancel.ToolIcon_type_button {
2047
- background-color: #adb5bd;
2210
+ .excalidraw .library-menu-items-container .separator {
2211
+ width: 100%;
2212
+ display: flex;
2213
+ align-items: center;
2214
+ font-weight: 500;
2215
+ font-size: 0.9rem;
2216
+ margin: 0.6em 0.2em;
2217
+ color: var(--text-primary-color);
2048
2218
  }
2049
- .excalidraw .publish-library__buttons--cancel.ToolIcon_type_button:hover {
2050
- background-color: #868e96;
2219
+ .excalidraw .library-menu-items-private-library-container {
2220
+ min-height: 3.75rem;
2221
+ width: 100%;
2051
2222
  }
2052
- .excalidraw .publish-library__buttons .ToolIcon__icon {
2053
- color: #ffffff;
2223
+ /*!********************************************************************************************************************************************************************************************************!*\
2224
+ !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/LibraryMenu.scss ***!
2225
+ \********************************************************************************************************************************************************************************************************/
2226
+ .excalidraw .layer-ui__library {
2227
+ display: flex;
2228
+ flex-direction: column;
2229
+ flex: 1 1 auto;
2054
2230
  }
2055
- .excalidraw .publish-library__buttons .ToolIcon__icon .Spinner {
2056
- --spinner-color: #fff;
2231
+ .excalidraw .library-actions-counter {
2232
+ background-color: var(--color-primary);
2233
+ color: var(--color-primary-light);
2234
+ font-weight: bold;
2235
+ display: flex;
2236
+ align-items: center;
2237
+ justify-content: center;
2238
+ border-radius: 50%;
2239
+ width: 1rem;
2240
+ height: 1rem;
2241
+ position: absolute;
2242
+ bottom: -0.25rem;
2243
+ right: -0.25rem;
2244
+ font-size: 0.625rem;
2245
+ pointer-events: none;
2057
2246
  }
2058
- .excalidraw .publish-library__buttons .ToolIcon__icon .Spinner svg {
2059
- padding: 0.5rem;
2247
+ .excalidraw .layer-ui__library-message {
2248
+ padding: 2rem;
2249
+ min-width: 200px;
2250
+ display: flex;
2251
+ flex-direction: column;
2252
+ align-items: center;
2253
+ flex-grow: 1;
2254
+ justify-content: center;
2060
2255
  }
2061
- .excalidraw .publish-library .selected-library-items {
2256
+ .excalidraw .layer-ui__library-message span {
2257
+ font-size: 0.8em;
2258
+ }
2259
+ .excalidraw .publish-library-success .Dialog__content {
2062
2260
  display: flex;
2063
- flex-wrap: wrap;
2261
+ flex-direction: column;
2064
2262
  }
2065
- .excalidraw .publish-library .selected-library-items .single-library-item-wrapper {
2066
- width: 9rem;
2263
+ .excalidraw .publish-library-success-close.ToolIcon_type_button {
2264
+ background-color: #228be6;
2265
+ align-self: flex-end;
2067
2266
  }
2068
- .excalidraw .publish-library-warning {
2069
- color: #fa5252;
2267
+ .excalidraw .publish-library-success-close.ToolIcon_type_button:hover {
2268
+ background-color: #1971c2;
2070
2269
  }
2071
- .excalidraw .publish-library-note {
2072
- padding: 1em 0;
2073
- font-style: italic;
2074
- font-size: 14px;
2075
- display: block;
2270
+ .excalidraw .publish-library-success-close.ToolIcon_type_button .ToolIcon__icon {
2271
+ width: auto;
2272
+ font-size: 1rem;
2273
+ color: #ffffff;
2274
+ padding: 0 0.5rem;
2076
2275
  }
2077
- .excalidraw .single-library-item {
2276
+ .excalidraw .library-menu-control-buttons {
2277
+ display: flex;
2278
+ align-items: center;
2279
+ justify-content: center;
2280
+ gap: 0.625rem;
2078
2281
  position: relative;
2079
2282
  }
2080
- .excalidraw .single-library-item-status {
2283
+ .excalidraw .library-menu-control-buttons--at-bottom::before {
2284
+ content: "";
2285
+ width: calc(100% - 1.5rem);
2286
+ height: 1px;
2081
2287
  position: absolute;
2082
- top: 0.3rem;
2083
- left: 0.3rem;
2084
- font-size: 0.7rem;
2085
- color: #f03e3e;
2086
- background: rgba(255, 255, 255, 0.9);
2087
- padding: 0.1rem 0.2rem;
2088
- border-radius: 0.2rem;
2089
- }
2090
- .excalidraw .single-library-item__svg {
2091
- background-color: #ffffff;
2092
- padding: 0.3rem;
2093
- width: 7.5rem;
2094
- height: 7.5rem;
2095
- border: 1px solid var(--button-gray-2);
2096
- }
2097
- .excalidraw .single-library-item__svg svg {
2098
- width: 100%;
2099
- height: 100%;
2288
+ top: -1px;
2289
+ background: var(--sidebar-border-color);
2100
2290
  }
2101
- .excalidraw .single-library-item .ToolIcon__icon {
2102
- background-color: #ffffff;
2103
- width: auto;
2104
- height: auto;
2105
- margin: 0 0.5rem;
2291
+ .excalidraw .library-menu-browse-button {
2292
+ flex: 1;
2293
+ height: var(--lg-button-size);
2294
+ display: flex;
2295
+ align-items: center;
2296
+ justify-content: center;
2297
+ overflow: hidden;
2298
+ position: relative;
2299
+ border-radius: var(--border-radius-lg);
2300
+ background-color: var(--color-primary);
2301
+ color: #ffffff;
2302
+ text-align: center;
2303
+ white-space: nowrap;
2304
+ text-decoration: none !important;
2305
+ font-weight: 600;
2306
+ font-size: 0.75rem;
2106
2307
  }
2107
- .excalidraw .single-library-item .ToolIcon,
2108
- .excalidraw .single-library-item .ToolIcon_type_button:hover {
2109
- background-color: white;
2308
+ .excalidraw .library-menu-browse-button:hover {
2309
+ background-color: var(--color-brand-hover);
2110
2310
  }
2111
- .excalidraw .single-library-item .required,
2112
- .excalidraw .single-library-item .error {
2113
- color: #e03131;
2114
- font-weight: bold;
2115
- font-size: 1rem;
2116
- margin: 0.2rem;
2311
+ .excalidraw .library-menu-browse-button:active {
2312
+ background-color: var(--color-brand-active);
2117
2313
  }
2118
- .excalidraw .single-library-item .error {
2119
- font-weight: 500;
2120
- margin: 0;
2121
- padding: 0.3em 0;
2314
+ .excalidraw.theme--dark .library-menu-browse-button {
2315
+ color: var(--color-gray-100);
2122
2316
  }
2123
- .excalidraw .single-library-item--remove {
2124
- position: absolute;
2125
- top: 0.2rem;
2126
- right: 1rem;
2317
+ .excalidraw.excalidraw--mobile .library-menu-browse-button {
2318
+ height: var(--default-button-size);
2127
2319
  }
2128
- .excalidraw .single-library-item--remove .ToolIcon__icon {
2129
- margin: 0;
2320
+ .excalidraw .layer-ui__library .dropdown-menu {
2321
+ width: auto;
2322
+ top: initial;
2323
+ right: 0;
2324
+ left: initial;
2325
+ bottom: 100%;
2326
+ margin-bottom: 0.625rem;
2130
2327
  }
2131
- .excalidraw .single-library-item--remove .ToolIcon__icon {
2132
- background-color: #fa5252;
2328
+ .excalidraw .layer-ui__library .dropdown-menu .dropdown-menu-container {
2329
+ width: 196px;
2330
+ box-shadow: var(--library-dropdown-shadow);
2331
+ border-radius: var(--border-radius-lg);
2332
+ padding: 0.25rem 0.5rem;
2133
2333
  }
2134
- .excalidraw .single-library-item--remove .ToolIcon__icon:hover {
2135
- background-color: #f03e3e;
2334
+ .excalidraw .layer-ui__library .library-menu-dropdown-container {
2335
+ position: relative;
2136
2336
  }
2137
- .excalidraw .single-library-item--remove .ToolIcon__icon:active {
2138
- background-color: #e03131;
2337
+ .excalidraw .layer-ui__library .library-menu-dropdown-container--in-heading {
2338
+ padding: 0;
2339
+ position: absolute;
2340
+ top: 1rem;
2341
+ right: 0.75rem;
2342
+ z-index: 1;
2139
2343
  }
2140
- .excalidraw .single-library-item--remove svg {
2141
- color: #ffffff;
2142
- padding: 0.26rem;
2143
- border-radius: 0.3em;
2144
- width: 1rem;
2145
- height: 1rem;
2344
+ .excalidraw .layer-ui__library .library-menu-dropdown-container--in-heading .dropdown-menu {
2345
+ top: 100%;
2146
2346
  }
2147
- /*!********************************************************************************************************************************************************************************************************!*\
2148
- !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/LibraryUnit.scss ***!
2149
- \********************************************************************************************************************************************************************************************************/
2347
+ /*!******************************************************************************************************************************************************************************************************!*\
2348
+ !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/TextField.scss ***!
2349
+ \******************************************************************************************************************************************************************************************************/
2150
2350
  :export {
2151
2351
  themeFilter: invert(93%) hue-rotate(180deg);
2152
2352
  rightSidebarWidth: 302px;
2153
2353
  }
2154
2354
 
2155
- .excalidraw .library-unit {
2156
- align-items: center;
2157
- border: 1px solid transparent;
2158
- display: flex;
2159
- justify-content: center;
2160
- position: relative;
2161
- width: 55px;
2162
- height: 55px;
2163
- box-sizing: border-box;
2164
- border-radius: var(--border-radius-lg);
2355
+ .excalidraw {
2356
+ --ExcTextField--color: var(--color-on-surface);
2357
+ --ExcTextField--label-color: var(--color-on-surface);
2358
+ --ExcTextField--background: transparent;
2359
+ --ExcTextField--readonly--background: var(--color-surface-high);
2360
+ --ExcTextField--readonly--color: var(--color-on-surface);
2361
+ --ExcTextField--border: var(--color-border-outline);
2362
+ --ExcTextField--readonly--border: var(--color-border-outline-variant);
2363
+ --ExcTextField--border-hover: var(--color-brand-hover);
2364
+ --ExcTextField--border-active: var(--color-brand-active);
2365
+ --ExcTextField--placeholder: var(--color-border-outline-variant);
2165
2366
  }
2166
- .excalidraw .library-unit svg {
2167
- pointer-events: none;
2367
+ .excalidraw .ExcTextField--fullWidth {
2368
+ width: 100%;
2369
+ flex-grow: 1;
2168
2370
  }
2169
- .excalidraw .library-unit--hover {
2170
- border-color: var(--color-primary);
2371
+ .excalidraw .ExcTextField__label {
2372
+ font-family: "Assistant";
2373
+ font-style: normal;
2374
+ font-weight: 600;
2375
+ font-size: 0.875rem;
2376
+ line-height: 150%;
2377
+ color: var(--ExcTextField--label-color);
2378
+ margin-bottom: 0.25rem;
2379
+ -webkit-user-select: none;
2380
+ user-select: none;
2171
2381
  }
2172
- .excalidraw .library-unit--selected {
2173
- border-color: var(--color-primary);
2174
- border-width: 1px;
2382
+ .excalidraw .ExcTextField__input {
2383
+ box-sizing: border-box;
2384
+ display: flex;
2385
+ flex-direction: row;
2386
+ align-items: center;
2387
+ padding: 0 1rem;
2388
+ height: 3rem;
2389
+ background: var(--ExcTextField--background);
2390
+ border: 1px solid var(--ExcTextField--border);
2391
+ border-radius: 0.5rem;
2175
2392
  }
2176
- .excalidraw .library-unit--skeleton {
2177
- opacity: 0.5;
2178
- background: linear-gradient(-45deg, var(--color-gray-10), var(--color-gray-20), var(--color-gray-10));
2179
- background-size: 200% 200%;
2180
- animation: library-unit__skeleton-opacity-animation 0.2s linear;
2393
+ .excalidraw .ExcTextField__input:not(.excalidraw .ExcTextField__input--readonly):hover {
2394
+ border-color: var(--ExcTextField--border-hover);
2181
2395
  }
2182
- .excalidraw.theme--dark .library-unit--skeleton {
2183
- background-image: linear-gradient(-45deg, var(--color-gray-100), var(--color-gray-80), var(--color-gray-100));
2396
+ .excalidraw .ExcTextField__input:not(.excalidraw .ExcTextField__input--readonly):active, .excalidraw .ExcTextField__input:not(.excalidraw .ExcTextField__input--readonly):focus-within {
2397
+ border-color: var(--ExcTextField--border-active);
2184
2398
  }
2185
- .excalidraw .library-unit__dragger {
2399
+ .excalidraw .ExcTextField__input input {
2186
2400
  display: flex;
2187
2401
  align-items: center;
2188
- justify-content: center;
2189
- height: 100%;
2402
+ border: none;
2403
+ outline: none;
2404
+ padding: 0;
2405
+ margin: 0;
2406
+ height: 1.5rem;
2407
+ color: var(--ExcTextField--color);
2408
+ font-family: "Assistant";
2409
+ font-style: normal;
2410
+ font-weight: 400;
2411
+ font-size: 1rem;
2412
+ line-height: 150%;
2413
+ text-overflow: ellipsis;
2414
+ background: transparent;
2190
2415
  width: 100%;
2191
2416
  }
2192
- .excalidraw .library-unit__dragger > svg {
2193
- filter: var(--theme-filter);
2194
- flex-grow: 1;
2195
- max-height: 100%;
2196
- max-width: 100%;
2417
+ .excalidraw .ExcTextField__input input::placeholder {
2418
+ color: var(--ExcTextField--placeholder);
2197
2419
  }
2198
- .excalidraw .library-unit__checkbox-container,
2199
- .excalidraw .library-unit__checkbox-container:hover,
2200
- .excalidraw .library-unit__checkbox-container:active {
2201
- align-items: center;
2202
- background: none;
2203
- border: none;
2204
- color: var(--icon-fill-color);
2205
- display: flex;
2206
- justify-content: center;
2207
- margin: 0;
2208
- padding: 0.5rem;
2209
- position: absolute;
2210
- left: 2rem;
2211
- bottom: 2rem;
2212
- cursor: pointer;
2420
+ .excalidraw .ExcTextField__input input:not(:focus):hover {
2421
+ background-color: initial;
2213
2422
  }
2214
- .excalidraw .library-unit__checkbox-container input,
2215
- .excalidraw .library-unit__checkbox-container:hover input,
2216
- .excalidraw .library-unit__checkbox-container:active input {
2217
- cursor: pointer;
2423
+ .excalidraw .ExcTextField__input input:focus {
2424
+ outline: initial;
2425
+ box-shadow: initial;
2218
2426
  }
2219
- .excalidraw .library-unit__checkbox {
2220
- position: absolute;
2221
- top: 0.125rem;
2222
- right: 0.125rem;
2223
- margin: 0;
2427
+ .excalidraw .ExcTextField__input--readonly {
2428
+ background: var(--ExcTextField--readonly--background);
2429
+ border-color: var(--ExcTextField--readonly--border);
2224
2430
  }
2225
- .excalidraw .library-unit__checkbox .Checkbox-box {
2226
- margin: 0;
2227
- width: 1rem;
2228
- height: 1rem;
2229
- border-radius: 4px;
2230
- background-color: var(--color-primary-light);
2231
- border: 1px solid var(--color-primary);
2232
- box-shadow: none !important;
2233
- padding: 2px;
2431
+ .excalidraw .ExcTextField__input--readonly input {
2432
+ color: var(--ExcTextField--readonly--color);
2433
+ }
2434
+ /*!****************************************************************************************************************************************************************************************************!*\
2435
+ !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/Actions.scss ***!
2436
+ \****************************************************************************************************************************************************************************************************/
2437
+ .zoom-actions,
2438
+ .undo-redo-buttons {
2439
+ background-color: var(--island-bg-color);
2440
+ border-radius: var(--border-radius-lg);
2441
+ box-shadow: 0 0 0 1px var(--color-surface-lowest);
2442
+ }
2443
+
2444
+ .zoom-button,
2445
+ .undo-redo-buttons button {
2446
+ border-radius: 0 !important;
2447
+ background-color: var(--color-surface-low) !important;
2448
+ font-size: 0.875rem !important;
2449
+ width: var(--lg-button-size);
2450
+ height: var(--lg-button-size);
2451
+ }
2452
+ .zoom-button svg,
2453
+ .undo-redo-buttons button svg {
2454
+ width: var(--lg-icon-size) !important;
2455
+ height: var(--lg-icon-size) !important;
2456
+ }
2457
+ .zoom-button .ToolIcon__icon,
2458
+ .undo-redo-buttons button .ToolIcon__icon {
2459
+ width: 100%;
2460
+ height: 100%;
2461
+ }
2462
+
2463
+ .reset-zoom-button {
2464
+ border-left: 0 !important;
2465
+ border-right: 0 !important;
2466
+ padding: 0 0.625rem !important;
2467
+ width: 3.25rem !important;
2468
+ justify-content: center !important;
2469
+ color: var(--text-primary-color);
2470
+ }
2471
+
2472
+ .zoom-out-button {
2473
+ border-top-left-radius: var(--border-radius-lg) !important;
2474
+ border-bottom-left-radius: var(--border-radius-lg) !important;
2234
2475
  }
2235
- .excalidraw .library-unit__checkbox.Checkbox:hover .Checkbox-box {
2236
- background-color: var(--color-primary-light);
2476
+ :root[dir=rtl] .zoom-out-button {
2477
+ transform: scaleX(-1);
2237
2478
  }
2238
- .excalidraw .library-unit__checkbox.is-checked .Checkbox-box {
2239
- background-color: var(--color-primary) !important;
2479
+ .zoom-out-button .ToolIcon__icon {
2480
+ border-top-right-radius: 0 !important;
2481
+ border-bottom-right-radius: 0 !important;
2240
2482
  }
2241
- .excalidraw .library-unit__checkbox.is-checked .Checkbox-box svg {
2242
- color: var(--color-primary-light);
2483
+
2484
+ .zoom-in-button {
2485
+ border-top-right-radius: var(--border-radius-lg) !important;
2486
+ border-bottom-right-radius: var(--border-radius-lg) !important;
2243
2487
  }
2244
- .excalidraw .library-unit__removeFromLibrary > svg {
2245
- height: 16px;
2246
- width: 16px;
2488
+ :root[dir=rtl] .zoom-in-button {
2489
+ transform: scaleX(-1);
2247
2490
  }
2248
- .excalidraw .library-unit__adder {
2249
- transform: scale(1);
2250
- animation: library-unit__adder-animation 1s ease-in infinite;
2251
- position: absolute;
2252
- width: 1.5rem;
2253
- height: 1.5rem;
2254
- background-color: var(--color-primary);
2255
- border-radius: var(--border-radius-md);
2256
- display: flex;
2257
- justify-content: center;
2258
- align-items: center;
2259
- pointer-events: none;
2491
+ .zoom-in-button .ToolIcon__icon {
2492
+ border-top-left-radius: 0 !important;
2493
+ border-bottom-left-radius: 0 !important;
2260
2494
  }
2261
- .excalidraw .library-unit__adder svg {
2262
- color: var(--color-primary-light);
2263
- width: 1rem;
2264
- height: 1rem;
2495
+
2496
+ .undo-redo-buttons .undo-button-container button {
2497
+ border-top-left-radius: var(--border-radius-lg) !important;
2498
+ border-bottom-left-radius: var(--border-radius-lg) !important;
2499
+ border-right: 0 !important;
2265
2500
  }
2266
- .excalidraw .library-unit:active .library-unit__adder {
2267
- animation: none;
2268
- transform: scale(0.8);
2501
+ :root[dir=rtl] .undo-redo-buttons .undo-button-container button {
2502
+ transform: scaleX(-1);
2269
2503
  }
2270
- .excalidraw .library-unit__active {
2271
- cursor: pointer;
2504
+ .undo-redo-buttons .undo-button-container button .ToolIcon__icon {
2505
+ border-top-right-radius: 0 !important;
2506
+ border-bottom-right-radius: 0 !important;
2272
2507
  }
2273
- @keyframes library-unit__adder-animation {
2274
- 0% {
2275
- transform: scale(0.85);
2276
- }
2277
- 50% {
2278
- transform: scale(1);
2279
- }
2280
- 100% {
2281
- transform: scale(0.85);
2282
- }
2508
+ .undo-redo-buttons .redo-button-container button {
2509
+ border-top-right-radius: var(--border-radius-lg) !important;
2510
+ border-bottom-right-radius: var(--border-radius-lg) !important;
2283
2511
  }
2284
- @keyframes library-unit__skeleton-opacity-animation {
2285
- 0% {
2286
- opacity: 0;
2287
- }
2288
- 75% {
2289
- opacity: 0;
2290
- }
2291
- 100% {
2292
- opacity: 0.5;
2293
- }
2512
+ :root[dir=rtl] .undo-redo-buttons .redo-button-container button {
2513
+ transform: scaleX(-1);
2294
2514
  }
2295
- /*!*************************************************************************************************************************************************************************************************************!*\
2296
- !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/LibraryMenuItems.scss ***!
2297
- \*************************************************************************************************************************************************************************************************************/
2298
- .excalidraw {
2299
- --container-padding-y: 1.5rem;
2300
- --container-padding-x: 0.75rem;
2515
+ .undo-redo-buttons .redo-button-container button .ToolIcon__icon {
2516
+ border-top-left-radius: 0 !important;
2517
+ border-bottom-left-radius: 0 !important;
2301
2518
  }
2302
- .excalidraw .library-menu-items__no-items {
2303
- text-align: center;
2304
- color: var(--color-gray-70);
2305
- line-height: 1.5;
2306
- font-size: 0.875rem;
2307
- width: 100%;
2519
+ /*!**************************************************************************************************************************************************************************************************************************!*\
2520
+ !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/CommandPalette/CommandPalette.scss ***!
2521
+ \**************************************************************************************************************************************************************************************************************************/
2522
+ :export {
2523
+ themeFilter: invert(93%) hue-rotate(180deg);
2524
+ rightSidebarWidth: 302px;
2308
2525
  }
2309
- .excalidraw .library-menu-items__no-items__label {
2310
- color: var(--color-primary);
2311
- font-weight: bold;
2312
- font-size: 1.125rem;
2313
- margin-bottom: 0.75rem;
2526
+
2527
+ .excalidraw .command-palette-dialog {
2528
+ -webkit-user-select: none;
2529
+ user-select: none;
2314
2530
  }
2315
- .excalidraw.theme--dark .library-menu-items__no-items {
2316
- color: var(--color-gray-40);
2531
+ .excalidraw .command-palette-dialog .Modal__content {
2532
+ height: auto;
2533
+ max-height: 100%;
2317
2534
  }
2318
- .excalidraw .library-menu-items-container {
2319
- width: 100%;
2320
- display: flex;
2321
- flex-grow: 1;
2322
- flex-shrink: 1;
2323
- flex-basis: 0;
2324
- overflow-y: auto;
2325
- flex-direction: column;
2326
- height: 100%;
2327
- justify-content: center;
2328
- margin: 0;
2329
- position: relative;
2535
+ @media screen and (min-width: 861px) {
2536
+ .excalidraw .command-palette-dialog .Modal__content {
2537
+ max-height: 750px;
2538
+ height: 100%;
2539
+ }
2330
2540
  }
2331
- .excalidraw .library-menu-items-container > div {
2332
- padding-left: 0.75rem;
2333
- padding-right: 0.75rem;
2541
+ .excalidraw .command-palette-dialog .Modal__content .Island {
2542
+ height: 100%;
2543
+ padding: 1.5rem;
2334
2544
  }
2335
- .excalidraw .library-menu-items-container__row {
2336
- display: grid;
2337
- grid-template-columns: repeat(4, 1fr);
2338
- gap: 1rem;
2545
+ .excalidraw .command-palette-dialog .Modal__content .Dialog__content {
2546
+ height: 100%;
2547
+ display: flex;
2548
+ flex-direction: column;
2339
2549
  }
2340
- .excalidraw .library-menu-items-container__items {
2341
- row-gap: 0.5rem;
2342
- padding: var(--container-padding-y) 0;
2343
- flex: 1;
2344
- overflow-y: auto;
2345
- overflow-x: hidden;
2346
- margin-bottom: 1rem;
2550
+ .excalidraw .command-palette-dialog .shortcuts-wrapper {
2551
+ display: flex;
2552
+ justify-content: center;
2553
+ align-items: center;
2554
+ margin-top: 12px;
2555
+ gap: 1.5rem;
2347
2556
  }
2348
- .excalidraw .library-menu-items-container__header {
2349
- color: var(--color-primary);
2350
- font-size: 1.125rem;
2351
- font-weight: bold;
2352
- margin-bottom: 0.75rem;
2353
- width: 100%;
2354
- padding-right: 4rem;
2355
- box-sizing: border-box;
2557
+ .excalidraw .command-palette-dialog .shortcut {
2558
+ display: flex;
2559
+ justify-content: center;
2560
+ align-items: center;
2561
+ height: 16px;
2562
+ font-size: 10px;
2563
+ gap: 0.25rem;
2356
2564
  }
2357
- .excalidraw .library-menu-items-container__header--excal {
2358
- margin-top: 2rem;
2565
+ .excalidraw .command-palette-dialog .shortcut .shortcut-wrapper {
2566
+ display: flex;
2359
2567
  }
2360
- .excalidraw .library-menu-items-container__grid {
2361
- display: grid;
2362
- grid-template-columns: 1fr 1fr 1fr 1fr;
2363
- grid-gap: 1rem;
2568
+ .excalidraw .command-palette-dialog .shortcut .shortcut-plus {
2569
+ margin: 0px 4px;
2364
2570
  }
2365
- .excalidraw .library-menu-items-container .separator {
2366
- width: 100%;
2571
+ .excalidraw .command-palette-dialog .shortcut .shortcut-key {
2572
+ padding: 0px 4px;
2573
+ height: 16px;
2574
+ border-radius: 4px;
2367
2575
  display: flex;
2576
+ justify-content: center;
2368
2577
  align-items: center;
2369
- font-weight: 500;
2370
- font-size: 0.9rem;
2371
- margin: 0.6em 0.2em;
2372
- color: var(--text-primary-color);
2578
+ background-color: var(--color-primary-light);
2373
2579
  }
2374
- .excalidraw .library-menu-items-private-library-container {
2375
- min-height: 3.75rem;
2376
- width: 100%;
2580
+ .excalidraw .command-palette-dialog .shortcut .shortcut-desc {
2581
+ margin-left: 4px;
2582
+ color: var(--color-gray-50);
2377
2583
  }
2378
- /*!********************************************************************************************************************************************************************************************************!*\
2379
- !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/LibraryMenu.scss ***!
2380
- \********************************************************************************************************************************************************************************************************/
2381
- .excalidraw .layer-ui__library {
2584
+ .excalidraw .command-palette-dialog .commands {
2585
+ overflow-y: auto;
2586
+ box-sizing: border-box;
2587
+ margin-top: 12px;
2588
+ color: var(--popup-text-color);
2589
+ -webkit-user-select: none;
2590
+ user-select: none;
2591
+ }
2592
+ .excalidraw .command-palette-dialog .commands .command-category {
2382
2593
  display: flex;
2383
2594
  flex-direction: column;
2384
- flex: 1 1 auto;
2595
+ padding: 12px 0px;
2596
+ margin-right: 0.25rem;
2385
2597
  }
2386
- .excalidraw .library-actions-counter {
2387
- background-color: var(--color-primary);
2388
- color: var(--color-primary-light);
2389
- font-weight: bold;
2598
+ .excalidraw .command-palette-dialog .commands .command-category-title {
2599
+ font-size: 1rem;
2600
+ font-weight: 600;
2601
+ margin-bottom: 6px;
2390
2602
  display: flex;
2391
2603
  align-items: center;
2392
- justify-content: center;
2393
- border-radius: 50%;
2394
- width: 1rem;
2395
- height: 1rem;
2396
- position: absolute;
2397
- bottom: -0.25rem;
2398
- right: -0.25rem;
2399
- font-size: 0.625rem;
2400
- pointer-events: none;
2401
2604
  }
2402
- .excalidraw .layer-ui__library-message {
2403
- padding: 2rem;
2404
- min-width: 200px;
2605
+ .excalidraw .command-palette-dialog .commands .command-item {
2606
+ color: var(--popup-text-color);
2607
+ height: 2.5rem;
2405
2608
  display: flex;
2406
- flex-direction: column;
2609
+ justify-content: space-between;
2407
2610
  align-items: center;
2408
- flex-grow: 1;
2409
- justify-content: center;
2611
+ box-sizing: border-box;
2612
+ padding: 0 0.5rem;
2613
+ border-radius: var(--border-radius-lg);
2614
+ cursor: pointer;
2410
2615
  }
2411
- .excalidraw .layer-ui__library-message span {
2412
- font-size: 0.8em;
2616
+ .excalidraw .command-palette-dialog .commands .command-item:active {
2617
+ background-color: var(--color-surface-low);
2413
2618
  }
2414
- .excalidraw .publish-library-success .Dialog__content {
2619
+ .excalidraw .command-palette-dialog .commands .command-item .name {
2415
2620
  display: flex;
2416
- flex-direction: column;
2621
+ align-items: center;
2622
+ gap: 0.25rem;
2417
2623
  }
2418
- .excalidraw .publish-library-success-close.ToolIcon_type_button {
2419
- background-color: #228be6;
2420
- align-self: flex-end;
2624
+ .excalidraw .command-palette-dialog .commands .item-selected {
2625
+ background-color: var(--color-surface-mid);
2421
2626
  }
2422
- .excalidraw .publish-library-success-close.ToolIcon_type_button:hover {
2423
- background-color: #1971c2;
2627
+ .excalidraw .command-palette-dialog .commands .item-disabled {
2628
+ opacity: 0.3;
2629
+ cursor: not-allowed;
2424
2630
  }
2425
- .excalidraw .publish-library-success-close.ToolIcon_type_button .ToolIcon__icon {
2426
- width: auto;
2427
- font-size: 1rem;
2428
- color: #ffffff;
2429
- padding: 0 0.5rem;
2631
+ .excalidraw .command-palette-dialog .commands .no-match {
2632
+ display: flex;
2633
+ justify-content: center;
2634
+ align-items: center;
2635
+ margin-top: 36px;
2636
+ }
2637
+ .excalidraw .command-palette-dialog .icon {
2638
+ width: 16px;
2639
+ height: 16px;
2640
+ margin-right: 6px;
2641
+ }
2642
+ /*!********************************************************************************************************************************************************************************************************!*\
2643
+ !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/ContextMenu.scss ***!
2644
+ \********************************************************************************************************************************************************************************************************/
2645
+ @charset "UTF-8";
2646
+ :export {
2647
+ themeFilter: invert(93%) hue-rotate(180deg);
2648
+ rightSidebarWidth: 302px;
2430
2649
  }
2431
- .excalidraw .library-menu-control-buttons {
2432
- display: flex;
2433
- align-items: center;
2434
- justify-content: center;
2435
- gap: 0.625rem;
2650
+
2651
+ .excalidraw .context-menu {
2436
2652
  position: relative;
2653
+ border-radius: 4px;
2654
+ box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
2655
+ padding: 0;
2656
+ list-style: none;
2657
+ -webkit-user-select: none;
2658
+ user-select: none;
2659
+ margin: -0.25rem 0 0 0.125rem;
2660
+ padding: 0.5rem 0;
2661
+ background-color: var(--popup-secondary-bg-color);
2662
+ border: 1px solid var(--button-gray-3);
2663
+ cursor: default;
2437
2664
  }
2438
- .excalidraw .library-menu-control-buttons--at-bottom::before {
2439
- content: "";
2440
- width: calc(100% - 1.5rem);
2441
- height: 1px;
2442
- position: absolute;
2443
- top: -1px;
2444
- background: var(--sidebar-border-color);
2665
+ .excalidraw .context-menu button {
2666
+ color: var(--popup-text-color);
2445
2667
  }
2446
- .excalidraw .library-menu-browse-button {
2447
- flex: 1;
2448
- height: var(--lg-button-size);
2449
- display: flex;
2450
- align-items: center;
2451
- justify-content: center;
2452
- overflow: hidden;
2668
+ .excalidraw .context-menu-item {
2453
2669
  position: relative;
2454
- border-radius: var(--border-radius-lg);
2455
- background-color: var(--color-primary);
2456
- color: #ffffff;
2457
- text-align: center;
2670
+ width: 100%;
2671
+ min-width: 9.5rem;
2672
+ margin: 0;
2673
+ padding: 0.25rem 1rem 0.25rem 1.25rem;
2674
+ text-align: start;
2675
+ border-radius: 0;
2676
+ background-color: transparent;
2677
+ border: none;
2458
2678
  white-space: nowrap;
2459
- text-decoration: none !important;
2460
- font-weight: 600;
2461
- font-size: 0.75rem;
2679
+ font-family: inherit;
2680
+ display: grid;
2681
+ grid-template-columns: 1fr 0.2fr;
2682
+ align-items: center;
2462
2683
  }
2463
- .excalidraw .library-menu-browse-button:hover {
2464
- background-color: var(--color-brand-hover);
2684
+ .excalidraw .context-menu-item.checkmark::before {
2685
+ position: absolute;
2686
+ left: 6px;
2687
+ margin-bottom: 1px;
2688
+ content: "✓";
2465
2689
  }
2466
- .excalidraw .library-menu-browse-button:active {
2467
- background-color: var(--color-brand-active);
2690
+ .excalidraw .context-menu-item.dangerous .context-menu-item__label {
2691
+ color: #f03e3e;
2468
2692
  }
2469
- .excalidraw.theme--dark .library-menu-browse-button {
2470
- color: var(--color-gray-100);
2693
+ .excalidraw .context-menu-item .context-menu-item__label {
2694
+ justify-self: start;
2695
+ margin-inline-end: 20px;
2471
2696
  }
2472
- .excalidraw.excalidraw--mobile .library-menu-browse-button {
2473
- height: var(--default-button-size);
2697
+ .excalidraw .context-menu-item .context-menu-item__shortcut {
2698
+ justify-self: end;
2699
+ opacity: 0.6;
2700
+ font-family: inherit;
2701
+ font-size: 0.7rem;
2474
2702
  }
2475
- .excalidraw .layer-ui__library .dropdown-menu {
2476
- width: auto;
2477
- top: initial;
2478
- right: 0;
2479
- left: initial;
2480
- bottom: 100%;
2481
- margin-bottom: 0.625rem;
2703
+ .excalidraw .context-menu-item:hover {
2704
+ background-color: var(--select-highlight-color);
2482
2705
  }
2483
- .excalidraw .layer-ui__library .dropdown-menu .dropdown-menu-container {
2484
- width: 196px;
2485
- box-shadow: var(--library-dropdown-shadow);
2486
- border-radius: var(--border-radius-lg);
2487
- padding: 0.25rem 0.5rem;
2706
+ .excalidraw .context-menu-item:hover.dangerous {
2707
+ background-color: #fa5252;
2488
2708
  }
2489
- .excalidraw .layer-ui__library .library-menu-dropdown-container {
2490
- position: relative;
2709
+ .excalidraw .context-menu-item:hover.dangerous .context-menu-item__label {
2710
+ color: var(--popup-bg-color);
2491
2711
  }
2492
- .excalidraw .layer-ui__library .library-menu-dropdown-container--in-heading {
2493
- padding: 0;
2494
- position: absolute;
2495
- top: 1rem;
2496
- right: 0.75rem;
2712
+ .excalidraw .context-menu-item:focus {
2497
2713
  z-index: 1;
2498
2714
  }
2499
- .excalidraw .layer-ui__library .library-menu-dropdown-container--in-heading .dropdown-menu {
2500
- top: 100%;
2715
+ .excalidraw--mobile.excalidraw .context-menu-item {
2716
+ display: block;
2717
+ }
2718
+ .excalidraw--mobile.excalidraw .context-menu-item .context-menu-item__label {
2719
+ margin-inline-end: 0;
2720
+ }
2721
+ .excalidraw--mobile.excalidraw .context-menu-item .context-menu-item__shortcut {
2722
+ display: none;
2723
+ }
2724
+
2725
+ .excalidraw .context-menu-item-separator {
2726
+ border: none;
2727
+ border-top: 1px solid #adb5bd;
2728
+ margin: 0;
2501
2729
  }
2502
2730
  /*!*******************************************************************************************************************************************************************************************************!*\
2503
2731
  !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/RadioGroup.scss ***!
@@ -2848,6 +3076,8 @@
2848
3076
  font-family: var(--font-family);
2849
3077
  -webkit-user-select: none;
2850
3078
  user-select: none;
3079
+ }
3080
+ .excalidraw .ExcButton:hover {
2851
3081
  transition: all 150ms ease-out;
2852
3082
  }
2853
3083
  .excalidraw .ExcButton .Spinner {
@@ -3316,24 +3546,35 @@
3316
3546
  }
3317
3547
 
3318
3548
  .excalidraw {
3549
+ --avatar-size: 1.75rem;
3550
+ --avatarList-gap: 0.625rem;
3551
+ --userList-padding: var(--space-factor);
3319
3552
  --userlist-hint-bg-color: var(--color-gray-10);
3320
3553
  --userlist-hint-heading-color: var(--color-gray-80);
3321
3554
  --userlist-hint-text-color: var(--color-gray-60);
3322
3555
  --userlist-collaborators-border-color: var(--color-gray-20);
3323
3556
  }
3557
+ .excalidraw .UserList-wrapper {
3558
+ display: flex;
3559
+ width: 100%;
3560
+ justify-content: flex-end;
3561
+ pointer-events: none !important;
3562
+ }
3324
3563
  .excalidraw .UserList {
3325
3564
  pointer-events: none;
3326
- /*github corner*/
3327
- padding: var(--space-factor) var(--space-factor) var(--space-factor) var(--space-factor);
3565
+ padding: var(--userList-padding);
3328
3566
  display: flex;
3329
3567
  flex-wrap: wrap;
3330
3568
  justify-content: flex-end;
3331
3569
  align-items: center;
3332
- gap: 0.625rem;
3570
+ gap: var(--avatarList-gap);
3333
3571
  box-sizing: border-box;
3334
- max-height: 120px;
3335
- max-width: 120px;
3336
- overflow: hidden;
3572
+ --max-size: calc(
3573
+ var(--avatar-size) * var(--max-avatars, 2) + var(--avatarList-gap) *
3574
+ (var(--max-avatars, 2) - 1) + var(--userList-padding) * 2
3575
+ );
3576
+ max-height: var(--max-size);
3577
+ max-width: var(--max-size);
3337
3578
  }
3338
3579
  .excalidraw .UserList:empty {
3339
3580
  display: none;
@@ -3349,8 +3590,8 @@
3349
3590
  max-height: none;
3350
3591
  }
3351
3592
  .excalidraw .UserList__more {
3352
- width: 1.25rem;
3353
- height: 1.25rem;
3593
+ width: var(--avatar-size, 1.5rem);
3594
+ height: var(--avatar-size, 1.5rem);
3354
3595
  position: relative;
3355
3596
  border-radius: 100%;
3356
3597
  outline-offset: 2px;
@@ -3365,10 +3606,14 @@
3365
3606
  flex: 0 0 auto;
3366
3607
  background-color: var(--color-gray-20);
3367
3608
  border: 0 !important;
3368
- font-size: 0.5rem;
3609
+ font-size: 0.625rem;
3369
3610
  font-weight: 400;
3370
3611
  flex-shrink: 0;
3371
3612
  color: var(--color-gray-100);
3613
+ font-weight: bold;
3614
+ }
3615
+ .excalidraw .UserList__more:active {
3616
+ transform: scale(0.94);
3372
3617
  }
3373
3618
  .excalidraw .UserList__more-img {
3374
3619
  width: 100%;
@@ -3382,13 +3627,13 @@
3382
3627
  right: -3px;
3383
3628
  bottom: -3px;
3384
3629
  left: -3px;
3385
- border: 1px solid var(--avatar-border-color);
3386
3630
  border-radius: 100%;
3387
3631
  }
3388
- .excalidraw .UserList__more--is-followed::before {
3632
+ .excalidraw .UserList__more.is-followed::before {
3389
3633
  border-color: var(--color-primary-hover);
3634
+ box-shadow: 0 0 0 1px var(--color-primary-hover);
3390
3635
  }
3391
- .excalidraw .UserList__more--is-current-user {
3636
+ .excalidraw .UserList__more.is-current-user {
3392
3637
  cursor: auto;
3393
3638
  }
3394
3639
  .excalidraw .UserList__collaborator-name {
@@ -3396,11 +3641,68 @@
3396
3641
  overflow: hidden;
3397
3642
  white-space: nowrap;
3398
3643
  }
3399
- .excalidraw .UserList__collaborator-follow-status-icon {
3644
+ .excalidraw .UserList__collaborator--avatar-only {
3645
+ position: relative;
3646
+ display: flex;
3647
+ flex: 0 0 auto;
3648
+ }
3649
+ .excalidraw .UserList__collaborator--avatar-only .UserList__collaborator-status-icon {
3650
+ --size: 14px;
3651
+ position: absolute;
3652
+ display: flex;
3653
+ flex: 0 0 auto;
3654
+ bottom: -0.25rem;
3655
+ right: -0.25rem;
3656
+ width: var(--size);
3657
+ height: var(--size);
3658
+ }
3659
+ .excalidraw .UserList__collaborator--avatar-only .UserList__collaborator-status-icon svg {
3660
+ flex: 0 0 auto;
3661
+ width: var(--size);
3662
+ height: var(--size);
3663
+ }
3664
+ .excalidraw .UserList__collaborator-status-icons {
3400
3665
  margin-left: auto;
3401
3666
  flex: 0 0 auto;
3402
- width: 1rem;
3667
+ min-width: 2.25rem;
3668
+ gap: 0.25rem;
3669
+ justify-content: flex-end;
3670
+ display: flex;
3671
+ }
3672
+ .excalidraw .UserList__collaborator.is-muted .UserList__collaborator-status-icon-microphone-muted {
3673
+ color: var(--color-danger);
3674
+ filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.5));
3675
+ }
3676
+ .excalidraw .UserList__collaborator-status-icon-speaking-indicator {
3403
3677
  display: flex;
3678
+ flex-flow: row nowrap;
3679
+ align-items: center;
3680
+ justify-content: space-between;
3681
+ width: 1rem;
3682
+ padding: 0 3px;
3683
+ box-sizing: border-box;
3684
+ }
3685
+ .excalidraw .UserList__collaborator-status-icon-speaking-indicator div {
3686
+ width: 0.125rem;
3687
+ height: 0.4rem;
3688
+ background-color: #a2f1a6;
3689
+ }
3690
+ .excalidraw .UserList__collaborator-status-icon-speaking-indicator div:nth-of-type(1) {
3691
+ animation: speaking-indicator-anim 1s -0.45s ease-in-out infinite;
3692
+ }
3693
+ .excalidraw .UserList__collaborator-status-icon-speaking-indicator div:nth-of-type(2) {
3694
+ animation: speaking-indicator-anim 1s -0.9s ease-in-out infinite;
3695
+ }
3696
+ .excalidraw .UserList__collaborator-status-icon-speaking-indicator div:nth-of-type(3) {
3697
+ animation: speaking-indicator-anim 1s -0.15s ease-in-out infinite;
3698
+ }
3699
+ @keyframes speaking-indicator-anim {
3700
+ 0%, 100% {
3701
+ transform: scaleY(1);
3702
+ }
3703
+ 50% {
3704
+ transform: scaleY(2);
3705
+ }
3404
3706
  }
3405
3707
  .excalidraw.theme--dark {
3406
3708
  --userlist-hint-bg-color: var(--color-gray-90);
@@ -3412,7 +3714,7 @@
3412
3714
  position: static;
3413
3715
  top: auto;
3414
3716
  margin-top: 0;
3415
- max-height: 12rem;
3717
+ max-height: 50vh;
3416
3718
  overflow-y: auto;
3417
3719
  padding: 0.25rem 0.5rem;
3418
3720
  border-top: 1px solid var(--userlist-collaborators-border-color);
@@ -4025,6 +4327,12 @@
4025
4327
  }
4026
4328
  .excalidraw .layer-ui__wrapper__top-right {
4027
4329
  display: flex;
4330
+ width: 100%;
4331
+ justify-content: flex-end;
4332
+ pointer-events: none !important;
4333
+ }
4334
+ .excalidraw .layer-ui__wrapper__top-right > * {
4335
+ pointer-events: var(--ui-pointerEvents);
4028
4336
  }
4029
4337
  .excalidraw .layer-ui__wrapper__footer {
4030
4338
  width: 100%;
@@ -4137,93 +4445,6 @@
4137
4445
  min-width: 11.875rem;
4138
4446
  z-index: 1;
4139
4447
  }
4140
- /*!******************************************************************************************************************************************************************************************************!*\
4141
- !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/TextField.scss ***!
4142
- \******************************************************************************************************************************************************************************************************/
4143
- :export {
4144
- themeFilter: invert(93%) hue-rotate(180deg);
4145
- rightSidebarWidth: 302px;
4146
- }
4147
-
4148
- .excalidraw {
4149
- --ExcTextField--color: var(--color-on-surface);
4150
- --ExcTextField--label-color: var(--color-on-surface);
4151
- --ExcTextField--background: transparent;
4152
- --ExcTextField--readonly--background: var(--color-surface-high);
4153
- --ExcTextField--readonly--color: var(--color-on-surface);
4154
- --ExcTextField--border: var(--color-border-outline);
4155
- --ExcTextField--readonly--border: var(--color-border-outline-variant);
4156
- --ExcTextField--border-hover: var(--color-brand-hover);
4157
- --ExcTextField--border-active: var(--color-brand-active);
4158
- --ExcTextField--placeholder: var(--color-border-outline-variant);
4159
- }
4160
- .excalidraw .ExcTextField--fullWidth {
4161
- width: 100%;
4162
- flex-grow: 1;
4163
- }
4164
- .excalidraw .ExcTextField__label {
4165
- font-family: "Assistant";
4166
- font-style: normal;
4167
- font-weight: 600;
4168
- font-size: 0.875rem;
4169
- line-height: 150%;
4170
- color: var(--ExcTextField--label-color);
4171
- margin-bottom: 0.25rem;
4172
- -webkit-user-select: none;
4173
- user-select: none;
4174
- }
4175
- .excalidraw .ExcTextField__input {
4176
- box-sizing: border-box;
4177
- display: flex;
4178
- flex-direction: row;
4179
- align-items: center;
4180
- padding: 0 1rem;
4181
- height: 3rem;
4182
- background: var(--ExcTextField--background);
4183
- border: 1px solid var(--ExcTextField--border);
4184
- border-radius: 0.5rem;
4185
- }
4186
- .excalidraw .ExcTextField__input:not(.excalidraw .ExcTextField__input--readonly):hover {
4187
- border-color: var(--ExcTextField--border-hover);
4188
- }
4189
- .excalidraw .ExcTextField__input:not(.excalidraw .ExcTextField__input--readonly):active, .excalidraw .ExcTextField__input:not(.excalidraw .ExcTextField__input--readonly):focus-within {
4190
- border-color: var(--ExcTextField--border-active);
4191
- }
4192
- .excalidraw .ExcTextField__input input {
4193
- display: flex;
4194
- align-items: center;
4195
- border: none;
4196
- outline: none;
4197
- padding: 0;
4198
- margin: 0;
4199
- height: 1.5rem;
4200
- color: var(--ExcTextField--color);
4201
- font-family: "Assistant";
4202
- font-style: normal;
4203
- font-weight: 400;
4204
- font-size: 1rem;
4205
- line-height: 150%;
4206
- text-overflow: ellipsis;
4207
- background: transparent;
4208
- width: 100%;
4209
- }
4210
- .excalidraw .ExcTextField__input input::placeholder {
4211
- color: var(--ExcTextField--placeholder);
4212
- }
4213
- .excalidraw .ExcTextField__input input:not(:focus):hover {
4214
- background-color: initial;
4215
- }
4216
- .excalidraw .ExcTextField__input input:focus {
4217
- outline: initial;
4218
- box-shadow: initial;
4219
- }
4220
- .excalidraw .ExcTextField__input--readonly {
4221
- background: var(--ExcTextField--readonly--background);
4222
- border-color: var(--ExcTextField--readonly--border);
4223
- }
4224
- .excalidraw .ExcTextField__input--readonly input {
4225
- color: var(--ExcTextField--readonly--color);
4226
- }
4227
4448
  /*!**********************************************************************************************************************************************************************************************************!*\
4228
4449
  !*** css ../../node_modules/css-loader/dist/cjs.js!../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!../../node_modules/sass-loader/dist/cjs.js!./components/MagicSettings.scss ***!
4229
4450
  \**********************************************************************************************************************************************************************************************************/