@zsviczian/excalidraw 0.17.1-obsidian-19 → 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.
- package/dist/excalidraw.development.js +122 -57
- package/dist/excalidraw.production.min.js +1 -1
- package/dist/styles.development.css +1042 -821
- package/dist/styles.production.css +12 -11
- package/package.json +4 -3
- package/types/excalidraw/actions/actionAddToLibrary.d.ts +16 -1
- package/types/excalidraw/actions/actionAlign.d.ts +19 -7
- package/types/excalidraw/actions/actionBoundText.d.ts +13 -3
- package/types/excalidraw/actions/actionCanvas.d.ts +111 -15
- package/types/excalidraw/actions/actionClipboard.d.ts +48 -6
- package/types/excalidraw/actions/actionDeleteSelected.d.ts +17 -1
- package/types/excalidraw/actions/actionDistribute.d.ts +2 -0
- package/types/excalidraw/actions/actionDuplicateSelection.d.ts +2 -1
- package/types/excalidraw/actions/actionElementLock.d.ts +16 -3
- package/types/excalidraw/actions/actionExport.d.ts +53 -0
- package/types/excalidraw/actions/actionFinalize.d.ts +11 -0
- package/types/excalidraw/actions/actionFlip.d.ts +4 -2
- package/types/excalidraw/actions/actionFrame.d.ts +21 -3
- package/types/excalidraw/actions/actionGroup.d.ts +14 -2
- package/types/excalidraw/actions/actionLinearEditor.d.ts +7 -1
- package/types/excalidraw/actions/actionLink.d.ts +7 -1
- package/types/excalidraw/actions/actionMenu.d.ts +17 -0
- package/types/excalidraw/actions/actionNavigate.d.ts +11 -0
- package/types/excalidraw/actions/actionProperties.d.ts +82 -0
- package/types/excalidraw/actions/actionSelectAll.d.ts +8 -1
- package/types/excalidraw/actions/actionStyles.d.ts +9 -2
- package/types/excalidraw/actions/actionToggleGridMode.d.ts +6 -1
- package/types/excalidraw/actions/actionToggleObjectsSnapMode.d.ts +8 -2
- package/types/excalidraw/actions/actionToggleStats.d.ts +8 -1
- package/types/excalidraw/actions/actionToggleViewMode.d.ts +8 -1
- package/types/excalidraw/actions/actionToggleZenMode.d.ts +8 -1
- package/types/excalidraw/actions/actionZindex.d.ts +8 -4
- package/types/excalidraw/actions/shortcuts.d.ts +2 -2
- package/types/excalidraw/actions/types.d.ts +6 -4
- package/types/excalidraw/clients.d.ts +10 -1
- package/types/excalidraw/components/Actions.d.ts +3 -1
- package/types/excalidraw/components/App.d.ts +1 -1
- package/types/excalidraw/components/Avatar.d.ts +2 -3
- package/types/excalidraw/components/CommandPalette/CommandPalette.d.ts +18 -0
- package/types/excalidraw/components/CommandPalette/defaultCommandPaletteItems.d.ts +2 -0
- package/types/excalidraw/components/CommandPalette/types.d.ts +25 -0
- package/types/excalidraw/components/InlineIcon.d.ts +1 -1
- package/types/excalidraw/components/UserList.d.ts +3 -7
- package/types/excalidraw/components/hyperlink/Hyperlink.d.ts +2 -2
- package/types/excalidraw/components/icons.d.ts +22 -1
- package/types/excalidraw/components/main-menu/DefaultItems.d.ts +4 -0
- package/types/excalidraw/constants.d.ts +5 -0
- package/types/excalidraw/deburr.d.ts +1 -0
- package/types/excalidraw/element/embeddable.d.ts +7 -0
- package/types/excalidraw/element/linearElementEditor.d.ts +5 -0
- package/types/excalidraw/element/textElement.d.ts +0 -5
- package/types/excalidraw/hooks/useStableCallback.d.ts +4 -0
- package/types/excalidraw/index.d.ts +1 -1
- package/types/excalidraw/keys.d.ts +1 -0
- package/types/excalidraw/scene/types.d.ts +10 -20
- package/types/excalidraw/types.d.ts +21 -2
|
@@ -1304,8 +1304,8 @@
|
|
|
1304
1304
|
}
|
|
1305
1305
|
|
|
1306
1306
|
.excalidraw .Avatar {
|
|
1307
|
-
width: 1.
|
|
1308
|
-
height: 1.
|
|
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
|
|
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
|
|
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/
|
|
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 .
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
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 .
|
|
1432
|
-
|
|
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 .
|
|
1435
|
-
|
|
1436
|
-
width: 100%;
|
|
1437
|
-
min-width: 9.5rem;
|
|
1432
|
+
.excalidraw .Dialog__close {
|
|
1433
|
+
color: var(--color-gray-40);
|
|
1438
1434
|
margin: 0;
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1435
|
+
position: absolute;
|
|
1436
|
+
top: 0.75rem;
|
|
1437
|
+
right: 0.5rem;
|
|
1438
|
+
border: 0;
|
|
1442
1439
|
background-color: transparent;
|
|
1443
|
-
|
|
1444
|
-
|
|
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 .
|
|
1451
|
-
|
|
1452
|
-
left: 6px;
|
|
1453
|
-
margin-bottom: 1px;
|
|
1454
|
-
content: "✓";
|
|
1443
|
+
.excalidraw .Dialog__close:hover {
|
|
1444
|
+
color: var(--color-gray-60);
|
|
1455
1445
|
}
|
|
1456
|
-
.excalidraw .
|
|
1457
|
-
color:
|
|
1446
|
+
.excalidraw .Dialog__close:active {
|
|
1447
|
+
color: var(--color-gray-40);
|
|
1458
1448
|
}
|
|
1459
|
-
.excalidraw .
|
|
1460
|
-
|
|
1461
|
-
|
|
1449
|
+
.excalidraw .Dialog__close svg {
|
|
1450
|
+
width: 1.5rem;
|
|
1451
|
+
height: 1.5rem;
|
|
1462
1452
|
}
|
|
1463
|
-
.excalidraw .
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
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 .
|
|
1470
|
-
|
|
1458
|
+
.excalidraw .Dialog--fullscreen .Dialog__close {
|
|
1459
|
+
top: 1.25rem;
|
|
1460
|
+
right: 1.25rem;
|
|
1471
1461
|
}
|
|
1472
|
-
|
|
1473
|
-
|
|
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 .
|
|
1476
|
-
|
|
1475
|
+
.excalidraw .Island.zen-mode {
|
|
1476
|
+
box-shadow: none;
|
|
1477
1477
|
}
|
|
1478
|
-
|
|
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
|
|
1482
|
-
|
|
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
|
|
1485
|
-
|
|
1544
|
+
.excalidraw .Modal__content:focus {
|
|
1545
|
+
outline: none;
|
|
1486
1546
|
}
|
|
1487
|
-
|
|
1488
|
-
|
|
1547
|
+
@keyframes Modal__background__fade-in {
|
|
1548
|
+
from {
|
|
1549
|
+
opacity: 0;
|
|
1550
|
+
}
|
|
1551
|
+
to {
|
|
1552
|
+
opacity: 1;
|
|
1553
|
+
}
|
|
1489
1554
|
}
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
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/
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
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
|
-
.
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
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
|
-
.
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
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
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1646
|
+
.excalidraw .Dialog__action-button svg {
|
|
1647
|
+
display: block;
|
|
1648
|
+
width: 1rem;
|
|
1649
|
+
height: 1rem;
|
|
1555
1650
|
}
|
|
1556
|
-
|
|
1557
|
-
|
|
1651
|
+
.excalidraw .Dialog__action-button--danger {
|
|
1652
|
+
background-color: var(--color-danger);
|
|
1653
|
+
border-color: var(--color-danger);
|
|
1654
|
+
color: #fff;
|
|
1558
1655
|
}
|
|
1559
|
-
.
|
|
1560
|
-
|
|
1561
|
-
border-
|
|
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
|
-
|
|
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
|
-
|
|
1569
|
-
|
|
1664
|
+
.excalidraw.theme--dark .Dialog__action-button--primary {
|
|
1665
|
+
color: var(--color-gray-100);
|
|
1570
1666
|
}
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
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
|
-
.
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
border-right: 0 !important;
|
|
1675
|
+
.excalidraw .publish-library__fields {
|
|
1676
|
+
display: flex;
|
|
1677
|
+
flex-direction: column;
|
|
1580
1678
|
}
|
|
1581
|
-
|
|
1582
|
-
|
|
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
|
-
.
|
|
1585
|
-
|
|
1586
|
-
|
|
1685
|
+
.excalidraw .publish-library__fields label span {
|
|
1686
|
+
font-weight: 500;
|
|
1687
|
+
font-size: 1rem;
|
|
1688
|
+
color: #868e96;
|
|
1587
1689
|
}
|
|
1588
|
-
.
|
|
1589
|
-
|
|
1590
|
-
|
|
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
|
-
|
|
1593
|
-
|
|
1696
|
+
.excalidraw .publish-library__fields label .required {
|
|
1697
|
+
color: #e03131;
|
|
1698
|
+
margin: 0.2rem;
|
|
1594
1699
|
}
|
|
1595
|
-
.
|
|
1596
|
-
|
|
1597
|
-
|
|
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
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
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 .
|
|
1613
|
-
|
|
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/
|
|
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 .
|
|
1794
|
-
-
|
|
1795
|
-
|
|
1796
|
-
|
|
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 .
|
|
1799
|
-
|
|
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 .
|
|
1824
|
-
|
|
1825
|
-
height: 1.5rem;
|
|
2014
|
+
.excalidraw .library-unit--hover {
|
|
2015
|
+
border-color: var(--color-primary);
|
|
1826
2016
|
}
|
|
1827
|
-
.excalidraw .
|
|
1828
|
-
|
|
1829
|
-
|
|
2017
|
+
.excalidraw .library-unit--selected {
|
|
2018
|
+
border-color: var(--color-primary);
|
|
2019
|
+
border-width: 1px;
|
|
1830
2020
|
}
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
:
|
|
1835
|
-
|
|
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
|
-
|
|
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 .
|
|
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
|
-
|
|
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
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
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 .
|
|
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.
|
|
2053
|
+
padding: 0.5rem;
|
|
1912
2054
|
position: absolute;
|
|
1913
|
-
|
|
1914
|
-
|
|
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 .
|
|
1921
|
-
|
|
1922
|
-
|
|
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 .
|
|
2064
|
+
.excalidraw .library-unit__checkbox {
|
|
1928
2065
|
position: absolute;
|
|
1929
|
-
top: 0;
|
|
1930
|
-
|
|
1931
|
-
|
|
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
|
-
|
|
1939
|
-
|
|
1940
|
-
:
|
|
1941
|
-
|
|
1942
|
-
|
|
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
|
-
|
|
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
|
-
|
|
1952
|
-
|
|
1953
|
-
.excalidraw .
|
|
1954
|
-
|
|
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
|
-
|
|
2102
|
+
justify-content: center;
|
|
1957
2103
|
align-items: center;
|
|
1958
|
-
|
|
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 .
|
|
1972
|
-
|
|
2106
|
+
.excalidraw .library-unit__adder svg {
|
|
2107
|
+
color: var(--color-primary-light);
|
|
1973
2108
|
width: 1rem;
|
|
1974
2109
|
height: 1rem;
|
|
1975
2110
|
}
|
|
1976
|
-
.excalidraw .
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
color: #fff;
|
|
2111
|
+
.excalidraw .library-unit:active .library-unit__adder {
|
|
2112
|
+
animation: none;
|
|
2113
|
+
transform: scale(0.8);
|
|
1980
2114
|
}
|
|
1981
|
-
.excalidraw .
|
|
1982
|
-
|
|
1983
|
-
border-color: var(--color-primary);
|
|
1984
|
-
color: #fff;
|
|
2115
|
+
.excalidraw .library-unit__active {
|
|
2116
|
+
cursor: pointer;
|
|
1985
2117
|
}
|
|
1986
|
-
|
|
1987
|
-
|
|
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
|
-
|
|
1990
|
-
|
|
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/
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
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
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
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 .
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
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 .
|
|
2011
|
-
|
|
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 .
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
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 .
|
|
2022
|
-
|
|
2023
|
-
|
|
2176
|
+
.excalidraw .library-menu-items-container > div {
|
|
2177
|
+
padding-left: 0.75rem;
|
|
2178
|
+
padding-right: 0.75rem;
|
|
2024
2179
|
}
|
|
2025
|
-
.excalidraw .
|
|
2026
|
-
display:
|
|
2027
|
-
|
|
2028
|
-
|
|
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 .
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
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 .
|
|
2037
|
-
|
|
2038
|
-
|
|
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 .
|
|
2041
|
-
|
|
2202
|
+
.excalidraw .library-menu-items-container__header--excal {
|
|
2203
|
+
margin-top: 2rem;
|
|
2042
2204
|
}
|
|
2043
|
-
.excalidraw .
|
|
2044
|
-
|
|
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 .
|
|
2047
|
-
|
|
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 .
|
|
2050
|
-
|
|
2219
|
+
.excalidraw .library-menu-items-private-library-container {
|
|
2220
|
+
min-height: 3.75rem;
|
|
2221
|
+
width: 100%;
|
|
2051
2222
|
}
|
|
2052
|
-
|
|
2053
|
-
|
|
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 .
|
|
2056
|
-
|
|
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 .
|
|
2059
|
-
padding:
|
|
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 .
|
|
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-
|
|
2261
|
+
flex-direction: column;
|
|
2064
2262
|
}
|
|
2065
|
-
.excalidraw .publish-library
|
|
2066
|
-
|
|
2263
|
+
.excalidraw .publish-library-success-close.ToolIcon_type_button {
|
|
2264
|
+
background-color: #228be6;
|
|
2265
|
+
align-self: flex-end;
|
|
2067
2266
|
}
|
|
2068
|
-
.excalidraw .publish-library-
|
|
2069
|
-
color: #
|
|
2267
|
+
.excalidraw .publish-library-success-close.ToolIcon_type_button:hover {
|
|
2268
|
+
background-color: #1971c2;
|
|
2070
2269
|
}
|
|
2071
|
-
.excalidraw .publish-library-
|
|
2072
|
-
|
|
2073
|
-
font-
|
|
2074
|
-
|
|
2075
|
-
|
|
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 .
|
|
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 .
|
|
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:
|
|
2083
|
-
|
|
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 .
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
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 .
|
|
2108
|
-
|
|
2109
|
-
background-color: white;
|
|
2308
|
+
.excalidraw .library-menu-browse-button:hover {
|
|
2309
|
+
background-color: var(--color-brand-hover);
|
|
2110
2310
|
}
|
|
2111
|
-
.excalidraw .
|
|
2112
|
-
|
|
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 .
|
|
2119
|
-
|
|
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 .
|
|
2124
|
-
|
|
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 .
|
|
2129
|
-
|
|
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 .
|
|
2132
|
-
|
|
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 .
|
|
2135
|
-
|
|
2334
|
+
.excalidraw .layer-ui__library .library-menu-dropdown-container {
|
|
2335
|
+
position: relative;
|
|
2136
2336
|
}
|
|
2137
|
-
.excalidraw .
|
|
2138
|
-
|
|
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 .
|
|
2141
|
-
|
|
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/
|
|
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
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
border-
|
|
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 .
|
|
2167
|
-
|
|
2367
|
+
.excalidraw .ExcTextField--fullWidth {
|
|
2368
|
+
width: 100%;
|
|
2369
|
+
flex-grow: 1;
|
|
2168
2370
|
}
|
|
2169
|
-
.excalidraw .
|
|
2170
|
-
|
|
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 .
|
|
2173
|
-
|
|
2174
|
-
|
|
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 .
|
|
2177
|
-
|
|
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.
|
|
2183
|
-
|
|
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 .
|
|
2399
|
+
.excalidraw .ExcTextField__input input {
|
|
2186
2400
|
display: flex;
|
|
2187
2401
|
align-items: center;
|
|
2188
|
-
|
|
2189
|
-
|
|
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 .
|
|
2193
|
-
|
|
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 .
|
|
2199
|
-
|
|
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 .
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
cursor: pointer;
|
|
2423
|
+
.excalidraw .ExcTextField__input input:focus {
|
|
2424
|
+
outline: initial;
|
|
2425
|
+
box-shadow: initial;
|
|
2218
2426
|
}
|
|
2219
|
-
.excalidraw .
|
|
2220
|
-
|
|
2221
|
-
|
|
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 .
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
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
|
-
|
|
2236
|
-
|
|
2476
|
+
:root[dir=rtl] .zoom-out-button {
|
|
2477
|
+
transform: scaleX(-1);
|
|
2237
2478
|
}
|
|
2238
|
-
.
|
|
2239
|
-
|
|
2479
|
+
.zoom-out-button .ToolIcon__icon {
|
|
2480
|
+
border-top-right-radius: 0 !important;
|
|
2481
|
+
border-bottom-right-radius: 0 !important;
|
|
2240
2482
|
}
|
|
2241
|
-
|
|
2242
|
-
|
|
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
|
-
|
|
2245
|
-
|
|
2246
|
-
width: 16px;
|
|
2488
|
+
:root[dir=rtl] .zoom-in-button {
|
|
2489
|
+
transform: scaleX(-1);
|
|
2247
2490
|
}
|
|
2248
|
-
.
|
|
2249
|
-
|
|
2250
|
-
|
|
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
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
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
|
-
|
|
2267
|
-
|
|
2268
|
-
transform: scale(0.8);
|
|
2501
|
+
:root[dir=rtl] .undo-redo-buttons .undo-button-container button {
|
|
2502
|
+
transform: scaleX(-1);
|
|
2269
2503
|
}
|
|
2270
|
-
.
|
|
2271
|
-
|
|
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
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
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
|
-
|
|
2285
|
-
|
|
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
|
-
|
|
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
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
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
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
margin-bottom: 0.75rem;
|
|
2526
|
+
|
|
2527
|
+
.excalidraw .command-palette-dialog {
|
|
2528
|
+
-webkit-user-select: none;
|
|
2529
|
+
user-select: none;
|
|
2314
2530
|
}
|
|
2315
|
-
.excalidraw
|
|
2316
|
-
|
|
2531
|
+
.excalidraw .command-palette-dialog .Modal__content {
|
|
2532
|
+
height: auto;
|
|
2533
|
+
max-height: 100%;
|
|
2317
2534
|
}
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
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 .
|
|
2332
|
-
|
|
2333
|
-
padding
|
|
2541
|
+
.excalidraw .command-palette-dialog .Modal__content .Island {
|
|
2542
|
+
height: 100%;
|
|
2543
|
+
padding: 1.5rem;
|
|
2334
2544
|
}
|
|
2335
|
-
.excalidraw .
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2545
|
+
.excalidraw .command-palette-dialog .Modal__content .Dialog__content {
|
|
2546
|
+
height: 100%;
|
|
2547
|
+
display: flex;
|
|
2548
|
+
flex-direction: column;
|
|
2339
2549
|
}
|
|
2340
|
-
.excalidraw .
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
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 .
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
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 .
|
|
2358
|
-
|
|
2565
|
+
.excalidraw .command-palette-dialog .shortcut .shortcut-wrapper {
|
|
2566
|
+
display: flex;
|
|
2359
2567
|
}
|
|
2360
|
-
.excalidraw .
|
|
2361
|
-
|
|
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 .
|
|
2366
|
-
|
|
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
|
-
|
|
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 .
|
|
2375
|
-
|
|
2376
|
-
|
|
2580
|
+
.excalidraw .command-palette-dialog .shortcut .shortcut-desc {
|
|
2581
|
+
margin-left: 4px;
|
|
2582
|
+
color: var(--color-gray-50);
|
|
2377
2583
|
}
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
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
|
-
|
|
2595
|
+
padding: 12px 0px;
|
|
2596
|
+
margin-right: 0.25rem;
|
|
2385
2597
|
}
|
|
2386
|
-
.excalidraw .
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
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 .
|
|
2403
|
-
|
|
2404
|
-
|
|
2605
|
+
.excalidraw .command-palette-dialog .commands .command-item {
|
|
2606
|
+
color: var(--popup-text-color);
|
|
2607
|
+
height: 2.5rem;
|
|
2405
2608
|
display: flex;
|
|
2406
|
-
|
|
2609
|
+
justify-content: space-between;
|
|
2407
2610
|
align-items: center;
|
|
2408
|
-
|
|
2409
|
-
|
|
2611
|
+
box-sizing: border-box;
|
|
2612
|
+
padding: 0 0.5rem;
|
|
2613
|
+
border-radius: var(--border-radius-lg);
|
|
2614
|
+
cursor: pointer;
|
|
2410
2615
|
}
|
|
2411
|
-
.excalidraw .
|
|
2412
|
-
|
|
2616
|
+
.excalidraw .command-palette-dialog .commands .command-item:active {
|
|
2617
|
+
background-color: var(--color-surface-low);
|
|
2413
2618
|
}
|
|
2414
|
-
.excalidraw .
|
|
2619
|
+
.excalidraw .command-palette-dialog .commands .command-item .name {
|
|
2415
2620
|
display: flex;
|
|
2416
|
-
|
|
2621
|
+
align-items: center;
|
|
2622
|
+
gap: 0.25rem;
|
|
2417
2623
|
}
|
|
2418
|
-
.excalidraw .
|
|
2419
|
-
background-color:
|
|
2420
|
-
align-self: flex-end;
|
|
2624
|
+
.excalidraw .command-palette-dialog .commands .item-selected {
|
|
2625
|
+
background-color: var(--color-surface-mid);
|
|
2421
2626
|
}
|
|
2422
|
-
.excalidraw .
|
|
2423
|
-
|
|
2627
|
+
.excalidraw .command-palette-dialog .commands .item-disabled {
|
|
2628
|
+
opacity: 0.3;
|
|
2629
|
+
cursor: not-allowed;
|
|
2424
2630
|
}
|
|
2425
|
-
.excalidraw .
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
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
|
-
|
|
2432
|
-
|
|
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 .
|
|
2439
|
-
|
|
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 .
|
|
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
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
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
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2679
|
+
font-family: inherit;
|
|
2680
|
+
display: grid;
|
|
2681
|
+
grid-template-columns: 1fr 0.2fr;
|
|
2682
|
+
align-items: center;
|
|
2462
2683
|
}
|
|
2463
|
-
.excalidraw .
|
|
2464
|
-
|
|
2684
|
+
.excalidraw .context-menu-item.checkmark::before {
|
|
2685
|
+
position: absolute;
|
|
2686
|
+
left: 6px;
|
|
2687
|
+
margin-bottom: 1px;
|
|
2688
|
+
content: "✓";
|
|
2465
2689
|
}
|
|
2466
|
-
.excalidraw .
|
|
2467
|
-
|
|
2690
|
+
.excalidraw .context-menu-item.dangerous .context-menu-item__label {
|
|
2691
|
+
color: #f03e3e;
|
|
2468
2692
|
}
|
|
2469
|
-
.excalidraw.
|
|
2470
|
-
|
|
2693
|
+
.excalidraw .context-menu-item .context-menu-item__label {
|
|
2694
|
+
justify-self: start;
|
|
2695
|
+
margin-inline-end: 20px;
|
|
2471
2696
|
}
|
|
2472
|
-
.excalidraw.
|
|
2473
|
-
|
|
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 .
|
|
2476
|
-
|
|
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 .
|
|
2484
|
-
|
|
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 .
|
|
2490
|
-
|
|
2709
|
+
.excalidraw .context-menu-item:hover.dangerous .context-menu-item__label {
|
|
2710
|
+
color: var(--popup-bg-color);
|
|
2491
2711
|
}
|
|
2492
|
-
.excalidraw .
|
|
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
|
|
2500
|
-
|
|
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
|
-
|
|
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:
|
|
3570
|
+
gap: var(--avatarList-gap);
|
|
3333
3571
|
box-sizing: border-box;
|
|
3334
|
-
max-
|
|
3335
|
-
|
|
3336
|
-
|
|
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.
|
|
3353
|
-
height: 1.
|
|
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.
|
|
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
|
|
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
|
|
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-
|
|
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:
|
|
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:
|
|
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
|
\**********************************************************************************************************************************************************************************************************/
|