@reacteditor/core 0.0.15 → 0.0.16
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/{Editor-7UIJWCPN.mjs → Editor-J7XDD77B.mjs} +7 -7
- package/dist/{chunk-RAMNEU3M.mjs → chunk-3NSI5XES.mjs} +1387 -1097
- package/dist/{chunk-3CGBQNX4.mjs → chunk-4L7H4JV4.mjs} +1 -1
- package/dist/{chunk-647NZJYM.mjs → chunk-5QKQ3LQJ.mjs} +3 -3
- package/dist/{chunk-NPC7A3V3.mjs → chunk-FTVOCMGV.mjs} +13 -3
- package/dist/{chunk-T43H325W.mjs → chunk-JHURG5NN.mjs} +122 -21
- package/dist/{chunk-TFAZFGYZ.mjs → chunk-Q667J2EG.mjs} +7 -7
- package/dist/{chunk-NKHR722W.mjs → chunk-RGC274VM.mjs} +1 -1
- package/dist/{chunk-C2KWANIN.mjs → chunk-RQZQMS6E.mjs} +1 -1
- package/dist/{chunk-GIGXMGTZ.mjs → chunk-TG2KTWSB.mjs} +1 -1
- package/dist/{full-PM3VSLYA.mjs → full-T5SGODJ2.mjs} +6 -6
- package/dist/index.css +530 -471
- package/dist/index.js +1271 -859
- package/dist/index.mjs +9 -9
- package/dist/{loaded-IIHO4UZS.mjs → loaded-6YKSFCCD.mjs} +3 -3
- package/dist/{loaded-5MUU76TF.mjs → loaded-DUBT6SP5.mjs} +3 -3
- package/dist/{loaded-ULJY3YN5.mjs → loaded-ZQCRSG65.mjs} +3 -3
- package/dist/no-external.css +530 -471
- package/dist/no-external.js +1271 -859
- package/dist/no-external.mjs +9 -9
- package/dist/rsc.js +14 -3
- package/dist/rsc.mjs +2 -2
- package/package.json +1 -2
package/dist/index.css
CHANGED
|
@@ -2176,12 +2176,13 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
|
|
|
2176
2176
|
}
|
|
2177
2177
|
|
|
2178
2178
|
/* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Preview/styles.module.css/#css-module-data */
|
|
2179
|
-
.
|
|
2179
|
+
._EditorPreview_1ybfe_1 {
|
|
2180
2180
|
position: relative;
|
|
2181
2181
|
height: 100%;
|
|
2182
2182
|
}
|
|
2183
|
-
._EditorPreview-
|
|
2183
|
+
._EditorPreview-frame_1ybfe_6 {
|
|
2184
2184
|
border: none;
|
|
2185
|
+
border-radius: var(--editor-radius-md);
|
|
2185
2186
|
height: 100%;
|
|
2186
2187
|
width: 100%;
|
|
2187
2188
|
}
|
|
@@ -2344,100 +2345,262 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
|
|
|
2344
2345
|
}
|
|
2345
2346
|
|
|
2346
2347
|
/* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Layout/styles.module.css/#css-module-data */
|
|
2347
|
-
.
|
|
2348
|
+
._Editor_l0swf_19 {
|
|
2348
2349
|
--editor-space-px: 16px;
|
|
2349
2350
|
color: var(--editor-text-primary);
|
|
2350
2351
|
font-family: var(--editor-font-family);
|
|
2351
2352
|
overflow-x: hidden;
|
|
2352
2353
|
}
|
|
2353
2354
|
@media (min-width: 766px) {
|
|
2354
|
-
.
|
|
2355
|
+
._Editor_l0swf_19 {
|
|
2355
2356
|
overflow-x: auto;
|
|
2356
2357
|
}
|
|
2357
2358
|
}
|
|
2358
|
-
._Editor-
|
|
2359
|
+
._Editor-portal_l0swf_32 {
|
|
2359
2360
|
position: relative;
|
|
2360
2361
|
z-index: 2;
|
|
2361
2362
|
}
|
|
2362
|
-
.
|
|
2363
|
+
._EditorLayout_l0swf_37 {
|
|
2363
2364
|
height: 100dvh;
|
|
2364
2365
|
}
|
|
2365
|
-
._EditorLayout-
|
|
2366
|
-
--editor-
|
|
2367
|
-
--editor-
|
|
2366
|
+
._EditorLayout-inner_l0swf_41 {
|
|
2367
|
+
--editor-frame-width: auto;
|
|
2368
|
+
--editor-header-height: min-content;
|
|
2369
|
+
--editor-side-bar-width: 0px;
|
|
2370
|
+
--editor-left-side-bar-width: var( --editor-user-left-side-bar-width, var(--editor-side-bar-width) );
|
|
2371
|
+
--editor-right-side-bar-width: var( --editor-user-right-side-bar-width, var(--editor-side-bar-width) );
|
|
2368
2372
|
background-color: var(--editor-surface-app);
|
|
2369
2373
|
display: grid;
|
|
2370
|
-
grid-template-areas: "header" "editor";
|
|
2371
|
-
grid-template-columns:
|
|
2372
|
-
grid-template-rows: var(--editor-header-height)
|
|
2374
|
+
grid-template-areas: "header" "editor" "mobilepanel" "left" "right";
|
|
2375
|
+
grid-template-columns: var(--editor-frame-width);
|
|
2376
|
+
grid-template-rows: var(--editor-header-height) auto 0 0 0;
|
|
2373
2377
|
height: 100%;
|
|
2374
2378
|
position: relative;
|
|
2379
|
+
transition: none;
|
|
2375
2380
|
z-index: 0;
|
|
2376
2381
|
overflow: hidden;
|
|
2377
2382
|
}
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2383
|
+
@media (min-width: 638px) {
|
|
2384
|
+
._EditorLayout-inner_l0swf_41 {
|
|
2385
|
+
grid-template-areas: "header header header" "left editor right";
|
|
2386
|
+
grid-template-columns: 0 var(--editor-frame-width) 0;
|
|
2387
|
+
grid-template-rows: var(--editor-header-height) auto;
|
|
2388
|
+
}
|
|
2389
|
+
._Editor--hidePlugins_l0swf_72 ._EditorLayout-inner_l0swf_41,
|
|
2390
|
+
._EditorLayout_l0swf_37:not(._EditorLayout--navBarVisible_l0swf_73) ._EditorLayout-inner_l0swf_41 {
|
|
2391
|
+
--editor-header-height: 0;
|
|
2392
|
+
}
|
|
2393
|
+
}
|
|
2394
|
+
._EditorLayout_l0swf_37:not(._EditorLayout--navBarVisible_l0swf_73) ._EditorLayout-inner_l0swf_41 {
|
|
2395
|
+
--editor-header-height: 0;
|
|
2381
2396
|
}
|
|
2382
|
-
._EditorLayout-
|
|
2383
|
-
|
|
2397
|
+
._EditorLayout--mounted_l0swf_82 ._EditorLayout-inner_l0swf_41 {
|
|
2398
|
+
--editor-side-bar-width: 186px;
|
|
2399
|
+
}
|
|
2400
|
+
._EditorLayout--mobilePanelHeightToggle_l0swf_86._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-inner_l0swf_41 {
|
|
2401
|
+
grid-template-rows: var(--editor-header-height) auto 60% 0 0;
|
|
2402
|
+
}
|
|
2403
|
+
._EditorLayout--mobilePanelCustomHeight_l0swf_91._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-inner_l0swf_41 {
|
|
2404
|
+
grid-template-rows: var(--editor-header-height) auto var( --editor-mobile-panel-height, 60% ) 0 0;
|
|
2405
|
+
}
|
|
2406
|
+
@media (min-width: 638px) {
|
|
2407
|
+
._EditorLayout--mobilePanelHeightToggle_l0swf_86._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-inner_l0swf_41 {
|
|
2408
|
+
grid-template-columns: var(--editor-left-side-bar-width) var(--editor-frame-width) 0;
|
|
2409
|
+
grid-template-rows: var(--editor-header-height) auto;
|
|
2410
|
+
}
|
|
2411
|
+
}
|
|
2412
|
+
._EditorLayout--mobilePanelHeightMinContent_l0swf_109._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-inner_l0swf_41 {
|
|
2413
|
+
grid-template-rows: var(--editor-header-height) auto min-content 0 0;
|
|
2414
|
+
}
|
|
2415
|
+
@media (min-width: 638px) {
|
|
2416
|
+
._EditorLayout--mobilePanelHeightToggle_l0swf_86._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-inner_l0swf_41,
|
|
2417
|
+
._EditorLayout--mobilePanelCustomHeight_l0swf_91._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-inner_l0swf_41,
|
|
2418
|
+
._EditorLayout--mobilePanelHeightMinContent_l0swf_109._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-inner_l0swf_41 {
|
|
2419
|
+
grid-template-columns: var(--editor-left-side-bar-width) var(--editor-frame-width) 0;
|
|
2420
|
+
grid-template-rows: var(--editor-header-height) auto;
|
|
2421
|
+
}
|
|
2422
|
+
}
|
|
2423
|
+
@media (min-width: 638px) {
|
|
2424
|
+
._EditorLayout--rightSideBarVisible_l0swf_129 ._EditorLayout-inner_l0swf_41 {
|
|
2425
|
+
grid-template-columns: 0 var(--editor-frame-width) var(--editor-right-side-bar-width);
|
|
2426
|
+
}
|
|
2427
|
+
}
|
|
2428
|
+
@media (min-width: 638px) {
|
|
2429
|
+
._EditorLayout--leftSideBarVisible_l0swf_86._EditorLayout--rightSideBarVisible_l0swf_129 ._EditorLayout-inner_l0swf_41 {
|
|
2430
|
+
grid-template-columns: var(--editor-left-side-bar-width) var(--editor-frame-width) var(--editor-right-side-bar-width);
|
|
2431
|
+
}
|
|
2432
|
+
}
|
|
2433
|
+
@media (min-width: 458px) {
|
|
2434
|
+
._EditorLayout-mounted_l0swf_146 ._EditorLayout-inner_l0swf_41 {
|
|
2435
|
+
--editor-frame-width: minmax(266px, auto);
|
|
2436
|
+
}
|
|
2437
|
+
}
|
|
2438
|
+
@media (min-width: 638px) {
|
|
2439
|
+
._EditorLayout_l0swf_37 ._EditorLayout-inner_l0swf_41 {
|
|
2440
|
+
--editor-side-bar-width: minmax(186px, 250px);
|
|
2441
|
+
}
|
|
2442
|
+
}
|
|
2443
|
+
@media (min-width: 766px) {
|
|
2444
|
+
._EditorLayout_l0swf_37 ._EditorLayout-inner_l0swf_41 {
|
|
2445
|
+
--editor-frame-width: auto;
|
|
2446
|
+
}
|
|
2447
|
+
}
|
|
2448
|
+
@media (min-width: 990px) {
|
|
2449
|
+
._EditorLayout_l0swf_37 ._EditorLayout-inner_l0swf_41 {
|
|
2450
|
+
--editor-side-bar-width: 256px;
|
|
2451
|
+
}
|
|
2452
|
+
}
|
|
2453
|
+
@media (min-width: 1198px) {
|
|
2454
|
+
._EditorLayout_l0swf_37 ._EditorLayout-inner_l0swf_41 {
|
|
2455
|
+
--editor-side-bar-width: 274px;
|
|
2456
|
+
}
|
|
2457
|
+
}
|
|
2458
|
+
@media (min-width: 1398px) {
|
|
2459
|
+
._EditorLayout_l0swf_37 ._EditorLayout-inner_l0swf_41 {
|
|
2460
|
+
--editor-side-bar-width: 290px;
|
|
2461
|
+
}
|
|
2462
|
+
}
|
|
2463
|
+
@media (min-width: 1598px) {
|
|
2464
|
+
._EditorLayout_l0swf_37 ._EditorLayout-inner_l0swf_41 {
|
|
2465
|
+
--editor-side-bar-width: 320px;
|
|
2466
|
+
}
|
|
2467
|
+
}
|
|
2468
|
+
._EditorLayout-header_l0swf_187 {
|
|
2469
|
+
grid-area: header;
|
|
2384
2470
|
background-color: var(--editor-surface-panel);
|
|
2385
2471
|
border-bottom: 1px solid var(--editor-border-subtle);
|
|
2386
|
-
|
|
2472
|
+
overflow: hidden;
|
|
2473
|
+
}
|
|
2474
|
+
._EditorHeader_l0swf_194 {
|
|
2475
|
+
align-items: center;
|
|
2387
2476
|
display: grid;
|
|
2388
|
-
gap: 12px;
|
|
2389
|
-
|
|
2390
|
-
grid-template-
|
|
2391
|
-
|
|
2392
|
-
|
|
2477
|
+
column-gap: 12px;
|
|
2478
|
+
row-gap: 6px;
|
|
2479
|
+
grid-template-areas: "url url" "plugins actions";
|
|
2480
|
+
grid-template-columns: auto 1fr;
|
|
2481
|
+
padding-block: 6px;
|
|
2482
|
+
padding-inline-start: calc(8px + env(safe-area-inset-left, 0px));
|
|
2483
|
+
padding-inline-end: calc(12px + env(safe-area-inset-right, 0px));
|
|
2393
2484
|
}
|
|
2394
|
-
|
|
2485
|
+
@media (min-width: 638px) {
|
|
2486
|
+
._EditorHeader_l0swf_194 {
|
|
2487
|
+
column-gap: 16px;
|
|
2488
|
+
row-gap: 0;
|
|
2489
|
+
grid-template-areas: "plugins url actions";
|
|
2490
|
+
grid-template-columns: 1fr auto 1fr;
|
|
2491
|
+
height: 40px;
|
|
2492
|
+
padding-block: 0;
|
|
2493
|
+
padding-inline-start: 8px;
|
|
2494
|
+
padding-inline-end: 8px;
|
|
2495
|
+
}
|
|
2496
|
+
}
|
|
2497
|
+
._EditorHeader-plugins_l0swf_221 {
|
|
2395
2498
|
align-items: center;
|
|
2499
|
+
color: var(--editor-text-secondary);
|
|
2396
2500
|
display: flex;
|
|
2397
|
-
gap:
|
|
2501
|
+
gap: 4px;
|
|
2502
|
+
grid-area: plugins;
|
|
2398
2503
|
justify-self: start;
|
|
2399
|
-
min-width: 0;
|
|
2400
2504
|
}
|
|
2401
|
-
.
|
|
2505
|
+
._EditorHeader-plugins_l0swf_221 svg {
|
|
2506
|
+
height: 18px;
|
|
2507
|
+
width: 18px;
|
|
2508
|
+
}
|
|
2509
|
+
._EditorHeader-pluginItem_l0swf_235 {
|
|
2402
2510
|
align-items: center;
|
|
2511
|
+
display: inline-flex;
|
|
2512
|
+
}
|
|
2513
|
+
@media (min-width: 638px) {
|
|
2514
|
+
._EditorHeader-pluginItem--mobileOnly_l0swf_241 {
|
|
2515
|
+
display: none;
|
|
2516
|
+
}
|
|
2517
|
+
}
|
|
2518
|
+
._EditorHeader-pluginItem--desktopOnly_l0swf_246 {
|
|
2519
|
+
display: none;
|
|
2520
|
+
}
|
|
2521
|
+
@media (min-width: 638px) {
|
|
2522
|
+
._EditorHeader-pluginItem--desktopOnly_l0swf_246 {
|
|
2523
|
+
display: inline-flex;
|
|
2524
|
+
}
|
|
2525
|
+
}
|
|
2526
|
+
._EditorHeader-urlBarSlot_l0swf_256 {
|
|
2403
2527
|
display: flex;
|
|
2528
|
+
grid-area: url;
|
|
2404
2529
|
justify-content: center;
|
|
2405
|
-
justify-self: center;
|
|
2406
|
-
max-width: 480px;
|
|
2407
2530
|
min-width: 0;
|
|
2408
|
-
width:
|
|
2531
|
+
width: 100%;
|
|
2532
|
+
}
|
|
2533
|
+
@media (min-width: 638px) {
|
|
2534
|
+
._EditorHeader-urlBarSlot_l0swf_256 {
|
|
2535
|
+
width: clamp(240px, 40vw, 480px);
|
|
2536
|
+
}
|
|
2537
|
+
}
|
|
2538
|
+
._EditorHeader-urlBarSlot_l0swf_256 > * {
|
|
2539
|
+
width: 100%;
|
|
2409
2540
|
}
|
|
2410
|
-
.
|
|
2541
|
+
._EditorHeader-actions_l0swf_274 {
|
|
2411
2542
|
align-items: center;
|
|
2412
2543
|
display: flex;
|
|
2413
|
-
gap:
|
|
2544
|
+
gap: 12px;
|
|
2545
|
+
grid-area: actions;
|
|
2414
2546
|
justify-self: end;
|
|
2415
|
-
min-width: 0;
|
|
2416
2547
|
}
|
|
2417
|
-
.
|
|
2418
|
-
|
|
2548
|
+
._EditorHeader-history_l0swf_282 {
|
|
2549
|
+
color: var(--editor-text-tertiary);
|
|
2419
2550
|
display: flex;
|
|
2420
2551
|
gap: 2px;
|
|
2421
2552
|
}
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2553
|
+
._EditorLayout-mobilePanel_l0swf_288 {
|
|
2554
|
+
grid-area: mobilepanel;
|
|
2555
|
+
background: var(--editor-surface-panel);
|
|
2556
|
+
border-block-start: 1px solid var(--editor-border-subtle);
|
|
2557
|
+
display: none;
|
|
2558
|
+
flex-direction: column;
|
|
2559
|
+
overflow: hidden;
|
|
2560
|
+
}
|
|
2561
|
+
._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-mobilePanel_l0swf_288 {
|
|
2562
|
+
display: flex;
|
|
2563
|
+
}
|
|
2564
|
+
@media (min-width: 638px) {
|
|
2565
|
+
._EditorLayout-mobilePanel_l0swf_288,
|
|
2566
|
+
._EditorLayout--leftSideBarVisible_l0swf_86 ._EditorLayout-mobilePanel_l0swf_288 {
|
|
2428
2567
|
display: none;
|
|
2429
2568
|
}
|
|
2430
2569
|
}
|
|
2431
|
-
.
|
|
2570
|
+
._EditorLayout-mobilePanelContent_l0swf_308 {
|
|
2571
|
+
flex: 1;
|
|
2572
|
+
overflow-y: auto;
|
|
2573
|
+
display: flex;
|
|
2574
|
+
flex-direction: column;
|
|
2575
|
+
}
|
|
2576
|
+
._EditorLayout-mobileDragHandle_l0swf_315 {
|
|
2577
|
+
display: flex;
|
|
2578
|
+
align-items: center;
|
|
2579
|
+
justify-content: center;
|
|
2580
|
+
padding: 8px 0 4px;
|
|
2581
|
+
cursor: grab;
|
|
2582
|
+
touch-action: none;
|
|
2583
|
+
flex-shrink: 0;
|
|
2584
|
+
}
|
|
2585
|
+
._EditorLayout-mobileDragHandle_l0swf_315:active {
|
|
2586
|
+
cursor: grabbing;
|
|
2587
|
+
}
|
|
2588
|
+
._EditorLayout-mobileDragHandlePill_l0swf_329 {
|
|
2589
|
+
width: 36px;
|
|
2590
|
+
height: 4px;
|
|
2591
|
+
border-radius: 2px;
|
|
2592
|
+
background-color: var(--editor-border-subtle);
|
|
2593
|
+
}
|
|
2594
|
+
._EditorPluginTab_l0swf_336 {
|
|
2432
2595
|
display: none;
|
|
2433
2596
|
flex-grow: 1;
|
|
2434
2597
|
max-height: 100%;
|
|
2435
2598
|
}
|
|
2436
|
-
._EditorPluginTab--
|
|
2599
|
+
._EditorPluginTab--visible_l0swf_342 {
|
|
2437
2600
|
display: flex;
|
|
2438
2601
|
flex-direction: column;
|
|
2439
2602
|
}
|
|
2440
|
-
._EditorPluginTab-
|
|
2603
|
+
._EditorPluginTab-body_l0swf_347 {
|
|
2441
2604
|
flex-grow: 1;
|
|
2442
2605
|
max-height: 100%;
|
|
2443
2606
|
}
|
|
@@ -2577,524 +2740,400 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
|
|
|
2577
2740
|
flex-shrink: 0;
|
|
2578
2741
|
}
|
|
2579
2742
|
|
|
2580
|
-
/* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/
|
|
2581
|
-
.
|
|
2582
|
-
background:
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
flex
|
|
2743
|
+
/* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/ui/Combobox/styles.module.css/#css-module-data */
|
|
2744
|
+
._EditorCombobox-input_12a2a_4 {
|
|
2745
|
+
background: transparent;
|
|
2746
|
+
border: 0;
|
|
2747
|
+
color: inherit;
|
|
2748
|
+
flex: 1;
|
|
2749
|
+
font: inherit;
|
|
2750
|
+
font-size: var(--editor-font-size-xxs);
|
|
2751
|
+
min-width: 0;
|
|
2752
|
+
outline: none;
|
|
2586
2753
|
padding: 0;
|
|
2587
|
-
|
|
2588
|
-
|
|
2754
|
+
width: 100%;
|
|
2755
|
+
}
|
|
2756
|
+
._EditorCombobox-input_12a2a_4::placeholder {
|
|
2757
|
+
color: var(--editor-text-tertiary);
|
|
2589
2758
|
}
|
|
2590
|
-
.
|
|
2759
|
+
._EditorCombobox-trigger_12a2a_21 {
|
|
2760
|
+
align-items: center;
|
|
2761
|
+
background: transparent;
|
|
2762
|
+
border: 0;
|
|
2763
|
+
color: var(--editor-text-tertiary);
|
|
2764
|
+
cursor: pointer;
|
|
2765
|
+
display: inline-flex;
|
|
2766
|
+
flex-shrink: 0;
|
|
2767
|
+
height: 20px;
|
|
2768
|
+
justify-content: center;
|
|
2769
|
+
outline: none;
|
|
2591
2770
|
padding: 0;
|
|
2592
|
-
|
|
2771
|
+
width: 20px;
|
|
2593
2772
|
}
|
|
2594
|
-
@media (
|
|
2595
|
-
.
|
|
2596
|
-
|
|
2773
|
+
@media (hover: hover) and (pointer: fine) {
|
|
2774
|
+
._EditorCombobox-trigger_12a2a_21:hover {
|
|
2775
|
+
color: var(--editor-text-primary);
|
|
2597
2776
|
}
|
|
2598
2777
|
}
|
|
2599
|
-
.
|
|
2600
|
-
|
|
2601
|
-
inset: 0;
|
|
2602
|
-
z-index: 1000;
|
|
2603
|
-
padding: 0 !important;
|
|
2604
|
-
}
|
|
2605
|
-
._EditorCanvas-inner_1h1vv_38 {
|
|
2606
|
-
display: flex;
|
|
2607
|
-
flex-direction: column;
|
|
2608
|
-
height: 100%;
|
|
2609
|
-
min-width: 288px;
|
|
2610
|
-
position: relative;
|
|
2611
|
-
width: 100%;
|
|
2778
|
+
._EditorCombobox-triggerIcon_12a2a_42 {
|
|
2779
|
+
pointer-events: none;
|
|
2612
2780
|
}
|
|
2613
|
-
.
|
|
2614
|
-
|
|
2615
|
-
width: 100%;
|
|
2616
|
-
z-index: 1;
|
|
2781
|
+
._EditorCombobox-positioner_12a2a_46 {
|
|
2782
|
+
z-index: 50;
|
|
2617
2783
|
}
|
|
2618
|
-
.
|
|
2619
|
-
|
|
2620
|
-
|
|
2784
|
+
._EditorCombobox-content_12a2a_50 {
|
|
2785
|
+
background: var(--editor-surface-raised);
|
|
2786
|
+
border: 1px solid var(--editor-border-subtle);
|
|
2787
|
+
border-radius: var(--editor-radius-md);
|
|
2788
|
+
box-shadow: var(--editor-shadow-md);
|
|
2789
|
+
color: var(--editor-text-primary);
|
|
2790
|
+
font-family: var(--editor-font-family);
|
|
2791
|
+
font-size: var(--editor-font-size-xxs);
|
|
2792
|
+
max-height: var(--available-height);
|
|
2793
|
+
min-width: var(--anchor-width);
|
|
2621
2794
|
overflow: hidden;
|
|
2622
|
-
|
|
2795
|
+
transform-origin: var(--transform-origin);
|
|
2796
|
+
z-index: 50;
|
|
2623
2797
|
}
|
|
2624
|
-
.
|
|
2625
|
-
|
|
2798
|
+
._EditorCombobox-list_12a2a_65 {
|
|
2799
|
+
max-height: inherit;
|
|
2800
|
+
overflow-y: auto;
|
|
2801
|
+
padding: 4px;
|
|
2626
2802
|
}
|
|
2627
|
-
.
|
|
2803
|
+
._EditorCombobox-item_12a2a_71 {
|
|
2804
|
+
align-items: center;
|
|
2805
|
+
border-radius: var(--editor-radius-sm);
|
|
2806
|
+
cursor: pointer;
|
|
2628
2807
|
display: flex;
|
|
2629
|
-
|
|
2630
|
-
|
|
2808
|
+
font: inherit;
|
|
2809
|
+
font-size: var(--editor-font-size-xxs);
|
|
2810
|
+
gap: 8px;
|
|
2811
|
+
outline: none;
|
|
2812
|
+
padding: 6px 8px 6px 28px;
|
|
2813
|
+
position: relative;
|
|
2814
|
+
user-select: none;
|
|
2631
2815
|
}
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
|
|
2816
|
+
._EditorCombobox-item_12a2a_71[data-highlighted],
|
|
2817
|
+
._EditorCombobox-item_12a2a_71[data-selected] {
|
|
2818
|
+
background: var(--editor-accent-soft);
|
|
2819
|
+
color: var(--editor-text-accent);
|
|
2636
2820
|
}
|
|
2637
|
-
.
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
box-shadow: var(--editor-shadow-lg);
|
|
2641
|
-
border-radius: var(--editor-radius-md);
|
|
2642
|
-
flex: 1;
|
|
2821
|
+
._EditorCombobox-item_12a2a_71[data-disabled] {
|
|
2822
|
+
cursor: not-allowed;
|
|
2823
|
+
opacity: 0.5;
|
|
2643
2824
|
pointer-events: none;
|
|
2644
|
-
opacity: 0;
|
|
2645
|
-
min-height: 100%;
|
|
2646
|
-
}
|
|
2647
|
-
._EditorCanvas--ready_1h1vv_98 ._EditorCanvas-root_1h1vv_69 {
|
|
2648
|
-
pointer-events: unset;
|
|
2649
|
-
opacity: 1;
|
|
2650
2825
|
}
|
|
2651
|
-
.
|
|
2826
|
+
._EditorCombobox-itemIndicator_12a2a_97 {
|
|
2652
2827
|
align-items: center;
|
|
2653
|
-
color: var(--editor-
|
|
2654
|
-
display: flex;
|
|
2655
|
-
inset: 0;
|
|
2828
|
+
color: var(--editor-accent-strong);
|
|
2829
|
+
display: inline-flex;
|
|
2656
2830
|
justify-content: center;
|
|
2831
|
+
left: 8px;
|
|
2657
2832
|
pointer-events: none;
|
|
2658
2833
|
position: absolute;
|
|
2659
|
-
|
|
2660
|
-
opacity: 0;
|
|
2661
|
-
}
|
|
2662
|
-
._EditorCanvas--showLoader_1h1vv_115 ._EditorCanvas-loader_1h1vv_103 {
|
|
2663
|
-
opacity: 1;
|
|
2834
|
+
width: 14px;
|
|
2664
2835
|
}
|
|
2665
|
-
.
|
|
2666
|
-
|
|
2667
|
-
|
|
2836
|
+
._EditorCombobox-empty_12a2a_110:not(:empty) {
|
|
2837
|
+
color: var(--editor-text-tertiary);
|
|
2838
|
+
font-size: var(--editor-font-size-xxs);
|
|
2839
|
+
padding: 12px 8px;
|
|
2840
|
+
text-align: center;
|
|
2668
2841
|
}
|
|
2669
|
-
|
|
2842
|
+
|
|
2843
|
+
/* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/BrowserBar/styles.module.css/#css-module-data */
|
|
2844
|
+
._BrowserBar_glswb_1 {
|
|
2670
2845
|
align-items: center;
|
|
2671
2846
|
background: var(--editor-surface-panel);
|
|
2672
2847
|
border: 1px solid var(--editor-border-subtle);
|
|
2673
|
-
border-
|
|
2674
|
-
|
|
2675
|
-
box-shadow: var(--editor-shadow-md);
|
|
2848
|
+
border-bottom: 0;
|
|
2849
|
+
border-radius: var(--editor-radius-md) var(--editor-radius-md) 0 0;
|
|
2676
2850
|
display: flex;
|
|
2677
|
-
gap:
|
|
2678
|
-
|
|
2679
|
-
|
|
2680
|
-
position: absolute;
|
|
2681
|
-
transform: translateX(-50%);
|
|
2682
|
-
z-index: 10;
|
|
2683
|
-
}
|
|
2684
|
-
._EditorCanvas-toolbarDivider_1h1vv_144 {
|
|
2685
|
-
background: var(--editor-border-subtle);
|
|
2686
|
-
flex-shrink: 0;
|
|
2687
|
-
height: 20px;
|
|
2688
|
-
margin: 0 4px;
|
|
2689
|
-
width: 1px;
|
|
2851
|
+
gap: 8px;
|
|
2852
|
+
padding: 8px 10px;
|
|
2853
|
+
width: 100%;
|
|
2690
2854
|
}
|
|
2691
|
-
.
|
|
2692
|
-
|
|
2855
|
+
._BrowserBar-urlTrigger_glswb_16 {
|
|
2856
|
+
align-items: center;
|
|
2857
|
+
background: var(--editor-surface-sunken);
|
|
2858
|
+
border: 1px solid var(--editor-border-subtle);
|
|
2859
|
+
border-radius: 9999px;
|
|
2860
|
+
color: var(--editor-text-primary);
|
|
2693
2861
|
display: inline-flex;
|
|
2862
|
+
flex: 1;
|
|
2694
2863
|
font-size: var(--editor-font-size-xxs);
|
|
2695
|
-
|
|
2696
|
-
justify-content:
|
|
2697
|
-
min-width:
|
|
2698
|
-
padding: 0 4px;
|
|
2699
|
-
user-select: none;
|
|
2700
|
-
}
|
|
2701
|
-
|
|
2702
|
-
/* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Sidebar/styles.module.css/#css-module-data */
|
|
2703
|
-
._Sidebar_1ynke_8 {
|
|
2704
|
-
background: var(--editor-surface-panel);
|
|
2705
|
-
bottom: 0;
|
|
2706
|
-
display: flex;
|
|
2707
|
-
flex-direction: column;
|
|
2864
|
+
gap: 8px;
|
|
2865
|
+
justify-content: flex-start;
|
|
2866
|
+
min-width: 0;
|
|
2708
2867
|
overflow: hidden;
|
|
2709
|
-
|
|
2710
|
-
|
|
2711
|
-
width: var(--editor-side-bar-width, 280px);
|
|
2712
|
-
z-index: 10;
|
|
2713
|
-
}
|
|
2714
|
-
._Sidebar--left_1ynke_20 {
|
|
2715
|
-
border-right: 1px solid var(--editor-border-subtle);
|
|
2716
|
-
left: 0;
|
|
2717
|
-
}
|
|
2718
|
-
._Sidebar--right_1ynke_25 {
|
|
2719
|
-
border-left: 1px solid var(--editor-border-subtle);
|
|
2720
|
-
right: 0;
|
|
2721
|
-
}
|
|
2722
|
-
._Sidebar-body_1ynke_30 {
|
|
2723
|
-
display: flex;
|
|
2724
|
-
flex: 1;
|
|
2725
|
-
flex-direction: column;
|
|
2726
|
-
min-height: 0;
|
|
2727
|
-
overflow-y: auto;
|
|
2868
|
+
padding: 3px 12px;
|
|
2869
|
+
width: 100%;
|
|
2728
2870
|
}
|
|
2729
|
-
@media (
|
|
2730
|
-
.
|
|
2731
|
-
|
|
2732
|
-
|
|
2733
|
-
right: 0;
|
|
2734
|
-
top: auto;
|
|
2735
|
-
max-height: 50dvh;
|
|
2736
|
-
width: 100%;
|
|
2737
|
-
}
|
|
2738
|
-
._Sidebar--left_1ynke_20 {
|
|
2739
|
-
border-right: 0;
|
|
2740
|
-
border-top: 1px solid var(--editor-border-subtle);
|
|
2741
|
-
}
|
|
2742
|
-
._Sidebar--right_1ynke_25 {
|
|
2743
|
-
border-left: 0;
|
|
2744
|
-
border-top: 1px solid var(--editor-border-subtle);
|
|
2745
|
-
z-index: 11;
|
|
2871
|
+
@media (hover: hover) and (pointer: fine) {
|
|
2872
|
+
._BrowserBar-urlTrigger_glswb_16:hover {
|
|
2873
|
+
background: var(--editor-surface-hover);
|
|
2874
|
+
border-color: var(--editor-border-default);
|
|
2746
2875
|
}
|
|
2747
2876
|
}
|
|
2748
|
-
|
|
2749
|
-
|
|
2750
|
-
|
|
2751
|
-
|
|
2752
|
-
align-items: center;
|
|
2753
|
-
padding: 10px 0;
|
|
2754
|
-
padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
|
|
2755
|
-
}
|
|
2756
|
-
@media (min-width: 638px) {
|
|
2757
|
-
._Nav_1ft0o_1 {
|
|
2758
|
-
flex-direction: column;
|
|
2759
|
-
height: 100%;
|
|
2760
|
-
padding: 0;
|
|
2761
|
-
padding-bottom: 0;
|
|
2762
|
-
align-items: stretch;
|
|
2763
|
-
}
|
|
2877
|
+
._BrowserBar-urlTrigger_glswb_16:focus-within {
|
|
2878
|
+
border-color: var(--editor-border-default);
|
|
2879
|
+
box-shadow: var(--editor-ring);
|
|
2880
|
+
outline: none;
|
|
2764
2881
|
}
|
|
2765
|
-
.
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
flex-direction: row;
|
|
2769
|
-
height: auto;
|
|
2770
|
-
padding: 0;
|
|
2882
|
+
._BrowserBar-urlIcon_glswb_46 {
|
|
2883
|
+
color: var(--editor-text-tertiary);
|
|
2884
|
+
flex-shrink: 0;
|
|
2771
2885
|
}
|
|
2772
|
-
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
|
|
2776
|
-
|
|
2777
|
-
|
|
2778
|
-
|
|
2886
|
+
._BrowserBar-urlText_glswb_51 {
|
|
2887
|
+
color: var(--editor-text-primary);
|
|
2888
|
+
display: inline-flex;
|
|
2889
|
+
flex: 1;
|
|
2890
|
+
gap: 8px;
|
|
2891
|
+
min-width: 0;
|
|
2892
|
+
overflow: hidden;
|
|
2893
|
+
text-align: left;
|
|
2894
|
+
text-overflow: ellipsis;
|
|
2895
|
+
white-space: nowrap;
|
|
2779
2896
|
}
|
|
2780
|
-
.
|
|
2781
|
-
|
|
2782
|
-
list-style: none;
|
|
2783
|
-
margin: 0;
|
|
2784
|
-
padding: 0;
|
|
2785
|
-
overflow-x: auto;
|
|
2786
|
-
gap: 12px;
|
|
2787
|
-
justify-content: center;
|
|
2897
|
+
._BrowserBar-urlInput_glswb_63 {
|
|
2898
|
+
color: var(--editor-text-primary);
|
|
2788
2899
|
flex: 1;
|
|
2900
|
+
min-width: 0;
|
|
2789
2901
|
}
|
|
2790
|
-
|
|
2791
|
-
|
|
2792
|
-
|
|
2793
|
-
flex-direction: column;
|
|
2794
|
-
gap: 4px;
|
|
2795
|
-
width: 100%;
|
|
2796
|
-
flex-grow: 1;
|
|
2797
|
-
overflow-x: hidden;
|
|
2798
|
-
overflow-y: auto;
|
|
2799
|
-
justify-content: flex-start;
|
|
2800
|
-
}
|
|
2801
|
-
}
|
|
2802
|
-
._Nav--horizontal_1ft0o_20 ._Nav-list_1ft0o_36 {
|
|
2803
|
-
flex-direction: row;
|
|
2804
|
-
gap: 4px;
|
|
2805
|
-
padding-top: 0;
|
|
2806
|
-
width: auto;
|
|
2807
|
-
flex: 0 0 auto;
|
|
2808
|
-
overflow-x: auto;
|
|
2809
|
-
overflow-y: hidden;
|
|
2810
|
-
justify-content: flex-start;
|
|
2902
|
+
._BrowserBar-itemPath_glswb_69 {
|
|
2903
|
+
color: var(--editor-text-primary);
|
|
2904
|
+
flex-shrink: 0;
|
|
2811
2905
|
}
|
|
2812
|
-
|
|
2813
|
-
|
|
2814
|
-
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
flex: 0 0 auto;
|
|
2819
|
-
overflow-x: auto;
|
|
2820
|
-
overflow-y: hidden;
|
|
2821
|
-
justify-content: flex-start;
|
|
2822
|
-
}
|
|
2906
|
+
._BrowserBar-itemTitle_glswb_74 {
|
|
2907
|
+
color: var(--editor-text-tertiary);
|
|
2908
|
+
margin-left: auto;
|
|
2909
|
+
overflow: hidden;
|
|
2910
|
+
text-overflow: ellipsis;
|
|
2911
|
+
white-space: nowrap;
|
|
2823
2912
|
}
|
|
2824
|
-
.
|
|
2825
|
-
|
|
2913
|
+
._BrowserBar-actions_glswb_82 {
|
|
2914
|
+
align-items: center;
|
|
2915
|
+
display: flex;
|
|
2916
|
+
flex-shrink: 0;
|
|
2917
|
+
gap: 2px;
|
|
2918
|
+
margin-left: auto;
|
|
2826
2919
|
}
|
|
2827
|
-
|
|
2828
|
-
|
|
2829
|
-
|
|
2830
|
-
align-items: center;
|
|
2831
|
-
justify-content: center;
|
|
2832
|
-
padding: 12px 0;
|
|
2833
|
-
}
|
|
2920
|
+
._BrowserBar-deviceIcon_glswb_92 {
|
|
2921
|
+
color: var(--editor-text-primary);
|
|
2922
|
+
display: inline-flex;
|
|
2834
2923
|
}
|
|
2835
|
-
|
|
2836
|
-
|
|
2837
|
-
|
|
2838
|
-
|
|
2839
|
-
|
|
2924
|
+
|
|
2925
|
+
/* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Canvas/styles.module.css/#css-module-data */
|
|
2926
|
+
._EditorCanvas_10xv6_1 {
|
|
2927
|
+
background-color: var(--editor-surface-sunken);
|
|
2928
|
+
background-image:
|
|
2929
|
+
radial-gradient(
|
|
2930
|
+
circle,
|
|
2931
|
+
var(--editor-border-default) 1px,
|
|
2932
|
+
transparent 1px);
|
|
2933
|
+
background-size: 16px 16px;
|
|
2934
|
+
background-position: 0 0;
|
|
2840
2935
|
display: flex;
|
|
2841
|
-
|
|
2842
|
-
|
|
2843
|
-
|
|
2844
|
-
padding: 6px;
|
|
2845
|
-
box-sizing: border-box;
|
|
2846
|
-
transition: background-color var(--editor-motion-fast) var(--editor-ease), color var(--editor-motion-fast) var(--editor-ease);
|
|
2847
|
-
border: 0;
|
|
2848
|
-
width: 38px;
|
|
2849
|
-
height: 38px;
|
|
2850
|
-
margin: 0 auto;
|
|
2936
|
+
grid-area: editor;
|
|
2937
|
+
flex-direction: column;
|
|
2938
|
+
padding: calc(var(--editor-space-px) * 0.5);
|
|
2851
2939
|
position: relative;
|
|
2940
|
+
overflow: hidden;
|
|
2852
2941
|
}
|
|
2853
|
-
@media (min-width:
|
|
2854
|
-
.
|
|
2855
|
-
padding:
|
|
2856
|
-
width: 32px;
|
|
2857
|
-
height: 32px;
|
|
2942
|
+
@media (min-width: 1198px) {
|
|
2943
|
+
._EditorCanvas_10xv6_1 {
|
|
2944
|
+
padding: calc(var(--editor-space-px) * 0.75);
|
|
2858
2945
|
}
|
|
2859
2946
|
}
|
|
2860
|
-
.
|
|
2861
|
-
|
|
2862
|
-
clip-path: inset(100%);
|
|
2863
|
-
height: 1px;
|
|
2947
|
+
._EditorCanvas--fullScreen_10xv6_24 {
|
|
2948
|
+
padding: 0;
|
|
2864
2949
|
overflow: hidden;
|
|
2865
|
-
position: absolute;
|
|
2866
|
-
white-space: nowrap;
|
|
2867
|
-
width: 1px;
|
|
2868
|
-
}
|
|
2869
|
-
._NavItem_1ft0o_96:first-of-type {
|
|
2870
|
-
padding-left: 0;
|
|
2871
2950
|
}
|
|
2872
|
-
|
|
2873
|
-
|
|
2874
|
-
}
|
|
2875
|
-
@media (min-width: 638px) {
|
|
2876
|
-
._NavItem_1ft0o_96:first-of-type,
|
|
2877
|
-
._NavItem_1ft0o_96:last-of-type {
|
|
2951
|
+
@media (min-width: 1198px) {
|
|
2952
|
+
._EditorCanvas--fullScreen_10xv6_24 {
|
|
2878
2953
|
padding: 0;
|
|
2879
2954
|
}
|
|
2880
2955
|
}
|
|
2881
|
-
.
|
|
2882
|
-
|
|
2883
|
-
|
|
2956
|
+
._EditorCanvas--canvasFullScreen_10xv6_40 {
|
|
2957
|
+
position: fixed;
|
|
2958
|
+
inset: 0;
|
|
2959
|
+
z-index: 1000;
|
|
2960
|
+
padding: 0 !important;
|
|
2961
|
+
}
|
|
2962
|
+
._EditorCanvas-inner_10xv6_47 {
|
|
2884
2963
|
display: flex;
|
|
2885
|
-
|
|
2964
|
+
height: 100%;
|
|
2886
2965
|
justify-content: center;
|
|
2966
|
+
min-width: 288px;
|
|
2967
|
+
position: relative;
|
|
2968
|
+
width: 100%;
|
|
2887
2969
|
}
|
|
2888
|
-
.
|
|
2889
|
-
|
|
2890
|
-
|
|
2891
|
-
|
|
2892
|
-
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
}
|
|
2896
|
-
._NavItem_1ft0o_96:not(._NavItem--active_1ft0o_162) > ._NavItem-link_1ft0o_96:hover {
|
|
2897
|
-
background-color: var(--editor-surface-hover);
|
|
2898
|
-
color: var(--editor-text-accent);
|
|
2970
|
+
._EditorCanvas-rootColumn_10xv6_56 {
|
|
2971
|
+
box-sizing: content-box;
|
|
2972
|
+
display: flex;
|
|
2973
|
+
flex-direction: column;
|
|
2974
|
+
min-width: 321px;
|
|
2975
|
+
height: 100%;
|
|
2976
|
+
transform-origin: top;
|
|
2899
2977
|
}
|
|
2900
|
-
@media (min-width:
|
|
2901
|
-
.
|
|
2902
|
-
|
|
2978
|
+
@media (min-width: 1198px) {
|
|
2979
|
+
._EditorCanvas-rootColumn_10xv6_56 {
|
|
2980
|
+
min-width: unset;
|
|
2903
2981
|
}
|
|
2904
2982
|
}
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
@media (min-width: 638px) {
|
|
2909
|
-
._NavItem--desktopOnly_1ft0o_178 {
|
|
2910
|
-
display: block;
|
|
2983
|
+
@media (prefers-reduced-motion: reduce) {
|
|
2984
|
+
._EditorCanvas-rootColumn_10xv6_56 {
|
|
2985
|
+
transition: none !important;
|
|
2911
2986
|
}
|
|
2912
2987
|
}
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
|
|
2921
|
-
border-bottom: 1px solid var(--editor-color-grey-09);
|
|
2922
|
-
font-weight: 600;
|
|
2923
|
-
padding-bottom: 8px;
|
|
2924
|
-
padding-left: 16px;
|
|
2925
|
-
padding-right: 16px;
|
|
2926
|
-
padding-top: 8px;
|
|
2988
|
+
._EditorCanvas-root_10xv6_56 {
|
|
2989
|
+
background: var(--editor-surface-panel);
|
|
2990
|
+
outline: 1px solid var(--editor-border-subtle);
|
|
2991
|
+
box-shadow: var(--editor-shadow-lg);
|
|
2992
|
+
border-radius: var(--editor-radius-md);
|
|
2993
|
+
flex: 1;
|
|
2994
|
+
pointer-events: none;
|
|
2995
|
+
opacity: 0;
|
|
2927
2996
|
}
|
|
2928
|
-
@media (
|
|
2929
|
-
.
|
|
2930
|
-
|
|
2997
|
+
@media (prefers-reduced-motion: reduce) {
|
|
2998
|
+
._EditorCanvas-root_10xv6_56 {
|
|
2999
|
+
transition: none !important;
|
|
2931
3000
|
}
|
|
2932
3001
|
}
|
|
2933
|
-
|
|
2934
|
-
|
|
2935
|
-
|
|
2936
|
-
background: transparent;
|
|
2937
|
-
border: 0;
|
|
2938
|
-
color: inherit;
|
|
2939
|
-
flex: 1;
|
|
2940
|
-
font: inherit;
|
|
2941
|
-
font-size: var(--editor-font-size-xxs);
|
|
2942
|
-
min-width: 0;
|
|
2943
|
-
outline: none;
|
|
2944
|
-
padding: 0;
|
|
2945
|
-
width: 100%;
|
|
2946
|
-
}
|
|
2947
|
-
._EditorCombobox-input_12a2a_4::placeholder {
|
|
2948
|
-
color: var(--editor-text-tertiary);
|
|
3002
|
+
._EditorCanvas--ready_10xv6_93 ._EditorCanvas-root_10xv6_56 {
|
|
3003
|
+
pointer-events: unset;
|
|
3004
|
+
opacity: 1;
|
|
2949
3005
|
}
|
|
2950
|
-
.
|
|
3006
|
+
._EditorCanvas-loader_10xv6_98 {
|
|
2951
3007
|
align-items: center;
|
|
2952
|
-
background: transparent;
|
|
2953
|
-
border: 0;
|
|
2954
3008
|
color: var(--editor-text-tertiary);
|
|
2955
|
-
|
|
2956
|
-
|
|
2957
|
-
flex-shrink: 0;
|
|
2958
|
-
height: 20px;
|
|
3009
|
+
display: flex;
|
|
3010
|
+
inset: 0;
|
|
2959
3011
|
justify-content: center;
|
|
2960
|
-
|
|
2961
|
-
|
|
2962
|
-
|
|
3012
|
+
pointer-events: none;
|
|
3013
|
+
position: absolute;
|
|
3014
|
+
transition: opacity 250ms ease-out;
|
|
3015
|
+
opacity: 0;
|
|
2963
3016
|
}
|
|
2964
|
-
|
|
2965
|
-
|
|
2966
|
-
color: var(--editor-text-primary);
|
|
2967
|
-
}
|
|
3017
|
+
._EditorCanvas--showLoader_10xv6_110 ._EditorCanvas-loader_10xv6_98 {
|
|
3018
|
+
opacity: 1;
|
|
2968
3019
|
}
|
|
2969
|
-
.
|
|
2970
|
-
|
|
3020
|
+
._EditorCanvas--showLoader_10xv6_110._EditorCanvas--ready_10xv6_93 ._EditorCanvas-loader_10xv6_98 {
|
|
3021
|
+
opacity: 0;
|
|
3022
|
+
transition: none;
|
|
2971
3023
|
}
|
|
2972
|
-
.
|
|
2973
|
-
|
|
3024
|
+
._EditorCanvas-bottomBar_10xv6_119 {
|
|
3025
|
+
align-items: center;
|
|
3026
|
+
bottom: 16px;
|
|
3027
|
+
display: flex;
|
|
3028
|
+
justify-content: center;
|
|
3029
|
+
left: 0;
|
|
3030
|
+
pointer-events: none;
|
|
3031
|
+
position: absolute;
|
|
3032
|
+
right: 0;
|
|
3033
|
+
z-index: 10;
|
|
2974
3034
|
}
|
|
2975
|
-
.
|
|
2976
|
-
|
|
3035
|
+
._EditorCanvas-bottomBarPill_10xv6_131 {
|
|
3036
|
+
align-items: center;
|
|
3037
|
+
background: var(--editor-surface-panel);
|
|
2977
3038
|
border: 1px solid var(--editor-border-subtle);
|
|
2978
3039
|
border-radius: var(--editor-radius-md);
|
|
2979
3040
|
box-shadow: var(--editor-shadow-md);
|
|
2980
3041
|
color: var(--editor-text-primary);
|
|
2981
|
-
font-family: var(--editor-font-family);
|
|
2982
|
-
font-size: var(--editor-font-size-xxs);
|
|
2983
|
-
max-height: var(--available-height);
|
|
2984
|
-
min-width: var(--anchor-width);
|
|
2985
|
-
overflow: hidden;
|
|
2986
|
-
transform-origin: var(--transform-origin);
|
|
2987
|
-
z-index: 50;
|
|
2988
|
-
}
|
|
2989
|
-
._EditorCombobox-list_12a2a_65 {
|
|
2990
|
-
max-height: inherit;
|
|
2991
|
-
overflow-y: auto;
|
|
2992
|
-
padding: 4px;
|
|
2993
|
-
}
|
|
2994
|
-
._EditorCombobox-item_12a2a_71 {
|
|
2995
|
-
align-items: center;
|
|
2996
|
-
border-radius: var(--editor-radius-sm);
|
|
2997
|
-
cursor: pointer;
|
|
2998
3042
|
display: flex;
|
|
2999
|
-
|
|
3000
|
-
|
|
3001
|
-
|
|
3002
|
-
outline: none;
|
|
3003
|
-
padding: 6px 8px 6px 28px;
|
|
3004
|
-
position: relative;
|
|
3005
|
-
user-select: none;
|
|
3006
|
-
}
|
|
3007
|
-
._EditorCombobox-item_12a2a_71[data-highlighted],
|
|
3008
|
-
._EditorCombobox-item_12a2a_71[data-selected] {
|
|
3009
|
-
background: var(--editor-accent-soft);
|
|
3010
|
-
color: var(--editor-text-accent);
|
|
3011
|
-
}
|
|
3012
|
-
._EditorCombobox-item_12a2a_71[data-disabled] {
|
|
3013
|
-
cursor: not-allowed;
|
|
3014
|
-
opacity: 0.5;
|
|
3015
|
-
pointer-events: none;
|
|
3043
|
+
gap: 4px;
|
|
3044
|
+
padding: 4px 8px;
|
|
3045
|
+
pointer-events: auto;
|
|
3016
3046
|
}
|
|
3017
|
-
.
|
|
3018
|
-
|
|
3019
|
-
|
|
3020
|
-
|
|
3021
|
-
|
|
3022
|
-
left: 8px;
|
|
3023
|
-
pointer-events: none;
|
|
3024
|
-
position: absolute;
|
|
3025
|
-
width: 14px;
|
|
3047
|
+
._EditorCanvas-bottomBarDivider_10xv6_144 {
|
|
3048
|
+
background: var(--editor-border-subtle);
|
|
3049
|
+
height: 18px;
|
|
3050
|
+
margin: 0 4px;
|
|
3051
|
+
width: 1px;
|
|
3026
3052
|
}
|
|
3027
|
-
.
|
|
3028
|
-
color: var(--editor-text-
|
|
3053
|
+
._EditorCanvas-zoomLevel_10xv6_151 {
|
|
3054
|
+
color: var(--editor-text-secondary);
|
|
3029
3055
|
font-size: var(--editor-font-size-xxs);
|
|
3030
|
-
|
|
3056
|
+
font-variant-numeric: tabular-nums;
|
|
3057
|
+
min-width: 36px;
|
|
3058
|
+
padding: 0 4px;
|
|
3031
3059
|
text-align: center;
|
|
3032
3060
|
}
|
|
3033
3061
|
|
|
3034
|
-
/* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/
|
|
3035
|
-
|
|
3036
|
-
|
|
3062
|
+
/* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/ResizeHandle/styles.module.css/#css-module-data */
|
|
3063
|
+
@media (min-width: 766px) {
|
|
3064
|
+
._ResizeHandle_1u3rv_2 {
|
|
3065
|
+
position: absolute;
|
|
3066
|
+
width: 5px;
|
|
3067
|
+
height: 100%;
|
|
3068
|
+
cursor: col-resize;
|
|
3069
|
+
z-index: 10;
|
|
3070
|
+
background: transparent;
|
|
3071
|
+
top: 0;
|
|
3072
|
+
}
|
|
3073
|
+
._ResizeHandle_1u3rv_2:hover {
|
|
3074
|
+
background: var(--editor-accent-soft);
|
|
3075
|
+
}
|
|
3076
|
+
._ResizeHandle--left_1u3rv_16 {
|
|
3077
|
+
right: -3px;
|
|
3078
|
+
}
|
|
3079
|
+
._ResizeHandle--right_1u3rv_20 {
|
|
3080
|
+
left: -3px;
|
|
3081
|
+
}
|
|
3082
|
+
}
|
|
3083
|
+
|
|
3084
|
+
/* components/Editor/components/ResizeHandle/styles.css */
|
|
3085
|
+
[data-resize-overlay] {
|
|
3086
|
+
position: fixed;
|
|
3087
|
+
top: 0;
|
|
3088
|
+
left: 0;
|
|
3089
|
+
right: 0;
|
|
3090
|
+
bottom: 0;
|
|
3091
|
+
z-index: 9999;
|
|
3092
|
+
cursor: col-resize;
|
|
3093
|
+
}
|
|
3094
|
+
|
|
3095
|
+
/* css-module:/Users/rami/Documents/apps/react-editor/packages/core/components/Editor/components/Sidebar/styles.module.css/#css-module-data */
|
|
3096
|
+
._Sidebar_14k7q_1 {
|
|
3097
|
+
border-block-start: 1px solid var(--editor-border-subtle);
|
|
3098
|
+
position: relative;
|
|
3099
|
+
display: none;
|
|
3100
|
+
flex-direction: column;
|
|
3101
|
+
overflow-y: auto;
|
|
3102
|
+
}
|
|
3103
|
+
._Sidebar--isVisible_14k7q_9 {
|
|
3037
3104
|
display: flex;
|
|
3038
|
-
gap: 8px;
|
|
3039
|
-
width: 100%;
|
|
3040
3105
|
}
|
|
3041
|
-
.
|
|
3042
|
-
|
|
3043
|
-
|
|
3044
|
-
border: 1px solid var(--editor-border-subtle);
|
|
3045
|
-
border-radius: 9999px;
|
|
3046
|
-
color: var(--editor-text-primary);
|
|
3047
|
-
display: inline-flex;
|
|
3048
|
-
flex: 1;
|
|
3049
|
-
font-size: var(--editor-font-size-xxs);
|
|
3050
|
-
gap: 8px;
|
|
3051
|
-
justify-content: flex-start;
|
|
3052
|
-
min-width: 0;
|
|
3053
|
-
overflow: hidden;
|
|
3054
|
-
padding: 4px 12px;
|
|
3055
|
-
width: 100%;
|
|
3106
|
+
._Sidebar--left_14k7q_13 {
|
|
3107
|
+
background: var(--editor-surface-panel);
|
|
3108
|
+
grid-area: left;
|
|
3056
3109
|
}
|
|
3057
|
-
@media (
|
|
3058
|
-
.
|
|
3059
|
-
|
|
3060
|
-
border-
|
|
3110
|
+
@media (min-width: 766px) {
|
|
3111
|
+
._Sidebar--left_14k7q_13 {
|
|
3112
|
+
border-block-start: 0;
|
|
3113
|
+
border-inline-end: 1px solid var(--editor-border-subtle);
|
|
3061
3114
|
}
|
|
3062
3115
|
}
|
|
3063
|
-
.
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
outline: none;
|
|
3067
|
-
}
|
|
3068
|
-
._BrowserBar-urlIcon_ey7dt_43 {
|
|
3069
|
-
color: var(--editor-text-tertiary);
|
|
3070
|
-
flex-shrink: 0;
|
|
3116
|
+
._Sidebar--right_14k7q_25 {
|
|
3117
|
+
background: var(--editor-surface-panel);
|
|
3118
|
+
grid-area: right;
|
|
3071
3119
|
}
|
|
3072
|
-
|
|
3073
|
-
|
|
3074
|
-
|
|
3075
|
-
|
|
3076
|
-
|
|
3077
|
-
min-width: 0;
|
|
3078
|
-
overflow: hidden;
|
|
3079
|
-
text-align: left;
|
|
3080
|
-
text-overflow: ellipsis;
|
|
3081
|
-
white-space: nowrap;
|
|
3120
|
+
@media (min-width: 766px) {
|
|
3121
|
+
._Sidebar--right_14k7q_25 {
|
|
3122
|
+
border-block-start: 0;
|
|
3123
|
+
border-inline-start: 1px solid var(--editor-border-subtle);
|
|
3124
|
+
}
|
|
3082
3125
|
}
|
|
3083
|
-
.
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
min-width: 0;
|
|
3126
|
+
._Sidebar-resizeHandle_14k7q_37 {
|
|
3127
|
+
position: absolute;
|
|
3128
|
+
height: 100%;
|
|
3087
3129
|
}
|
|
3088
|
-
.
|
|
3089
|
-
|
|
3090
|
-
|
|
3130
|
+
._Sidebar--left_14k7q_13 + ._Sidebar-resizeHandle_14k7q_37 {
|
|
3131
|
+
grid-area: left;
|
|
3132
|
+
justify-self: end;
|
|
3091
3133
|
}
|
|
3092
|
-
.
|
|
3093
|
-
|
|
3094
|
-
|
|
3095
|
-
overflow: hidden;
|
|
3096
|
-
text-overflow: ellipsis;
|
|
3097
|
-
white-space: nowrap;
|
|
3134
|
+
._Sidebar--right_14k7q_25 + ._Sidebar-resizeHandle_14k7q_37 {
|
|
3135
|
+
grid-area: right;
|
|
3136
|
+
justify-self: start;
|
|
3098
3137
|
}
|
|
3099
3138
|
|
|
3100
3139
|
/* css-module:/Users/rami/Documents/apps/react-editor/packages/core/plugins/blocks/styles.module.css/#css-module-data */
|
|
@@ -3110,6 +3149,26 @@ body:has(._DropZone--isAnimating_1h108_70:empty) [data-editor-overlay] {
|
|
|
3110
3149
|
display: none;
|
|
3111
3150
|
}
|
|
3112
3151
|
|
|
3152
|
+
/* css-module:/Users/rami/Documents/apps/react-editor/packages/core/plugins/fields/styles.module.css/#css-module-data */
|
|
3153
|
+
._FieldsPlugin_262zt_1 {
|
|
3154
|
+
background: white;
|
|
3155
|
+
height: 100%;
|
|
3156
|
+
overflow-y: auto;
|
|
3157
|
+
}
|
|
3158
|
+
._FieldsPlugin-header_262zt_7 {
|
|
3159
|
+
border-bottom: 1px solid var(--editor-color-grey-09);
|
|
3160
|
+
font-weight: 600;
|
|
3161
|
+
padding-bottom: 8px;
|
|
3162
|
+
padding-left: 16px;
|
|
3163
|
+
padding-right: 16px;
|
|
3164
|
+
padding-top: 8px;
|
|
3165
|
+
}
|
|
3166
|
+
@media (min-width: 638px) {
|
|
3167
|
+
._FieldsPlugin-header_262zt_7 {
|
|
3168
|
+
padding: 16px;
|
|
3169
|
+
}
|
|
3170
|
+
}
|
|
3171
|
+
|
|
3113
3172
|
/* css-module:/Users/rami/Documents/apps/react-editor/packages/core/plugins/outline/styles.module.css/#css-module-data */
|
|
3114
3173
|
._OutlinePlugin_q92j6_1 {
|
|
3115
3174
|
padding: 16px;
|