@dfosco/storyboard-react 4.0.0-beta.35 → 4.0.0-beta.37

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.
@@ -0,0 +1,1773 @@
1
+ /* ViewfinderNew — SaaS-style homescreen layout */
2
+
3
+ .layout {
4
+ display: flex;
5
+ flex-direction: column;
6
+ height: 100vh;
7
+ font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
8
+ color: #1a1a1a;
9
+ background: #fafafa;
10
+ }
11
+
12
+ /* ─── Full-width header ─── */
13
+
14
+ .topBar {
15
+ display: flex;
16
+ align-items: center;
17
+ justify-content: space-between;
18
+ padding: 16px 24px;
19
+ border-bottom: 1px solid #e5e5e5;
20
+ background: #fff;
21
+ flex-shrink: 0;
22
+ }
23
+
24
+ .topBarLeft {
25
+ display: flex;
26
+ align-items: center;
27
+ gap: 12px;
28
+ }
29
+
30
+ .logo {
31
+ width: 40px;
32
+ height: 40px;
33
+ background: #1a1a1a;
34
+ border-radius: 8px;
35
+ transform: rotate(-1deg);
36
+ display: flex;
37
+ align-items: center;
38
+ justify-content: center;
39
+ color: #fff;
40
+ flex-shrink: 0;
41
+ }
42
+
43
+ .appName {
44
+ font-size: 24px;
45
+ font-weight: 900;
46
+ font-style: italic;
47
+ color: #1a1a1a;
48
+ line-height: 1.1;
49
+ }
50
+
51
+ .appSubtitle {
52
+ font-size: 14px;
53
+ color: #888;
54
+ line-height: 1.3;
55
+ margin-top: 2px;
56
+ }
57
+
58
+ .topActions {
59
+ display: flex;
60
+ align-items: center;
61
+ gap: 8px;
62
+ }
63
+
64
+ .createBtn {
65
+ display: flex;
66
+ align-items: center;
67
+ gap: 6px;
68
+ padding: 8px 20px;
69
+ background: #1a1a1a;
70
+ color: #fff;
71
+ border: none;
72
+ border-radius: 8px;
73
+ font-size: 16px;
74
+ font-weight: 500;
75
+ cursor: pointer;
76
+ transition: background 0.15s;
77
+ }
78
+
79
+ .createBtn:hover {
80
+ background: #333;
81
+ }
82
+
83
+ /* Branch dropdown */
84
+
85
+ .branchBtn {
86
+ display: flex;
87
+ align-items: center;
88
+ gap: 6px;
89
+ padding: 7px 14px;
90
+ background: #fff;
91
+ color: #555;
92
+ border: 1px solid #e5e5e5;
93
+ border-radius: 8px;
94
+ font-size: 16px;
95
+ font-weight: 500;
96
+ cursor: pointer;
97
+ transition: all 0.15s;
98
+ font-family: inherit;
99
+ }
100
+
101
+ .branchBtn:hover {
102
+ background: #f5f5f5;
103
+ border-color: #ccc;
104
+ }
105
+
106
+ .branchBtnText {
107
+ max-width: 160px;
108
+ overflow: hidden;
109
+ text-overflow: ellipsis;
110
+ white-space: nowrap;
111
+ }
112
+
113
+ .branchPositioner {
114
+ z-index: 200;
115
+ }
116
+
117
+ .branchPopup {
118
+ background: #fff;
119
+ border: 1px solid #e5e5e5;
120
+ border-radius: 10px;
121
+ box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
122
+ min-width: 240px;
123
+ max-width: 320px;
124
+ padding: 6px 0;
125
+ font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, sans-serif;
126
+ }
127
+
128
+ .branchSectionLabel {
129
+ padding: 8px 14px 4px;
130
+ font-size: 14px;
131
+ font-weight: 600;
132
+ color: #999;
133
+ text-transform: uppercase;
134
+ letter-spacing: 0.4px;
135
+ }
136
+
137
+ .branchItem {
138
+ display: flex;
139
+ align-items: center;
140
+ gap: 8px;
141
+ padding: 7px 14px;
142
+ font-size: 16px;
143
+ color: #555;
144
+ cursor: pointer;
145
+ transition: background 0.1s;
146
+ border: none;
147
+ background: none;
148
+ width: 100%;
149
+ text-align: left;
150
+ }
151
+
152
+ .branchItem:hover,
153
+ .branchItem[data-highlighted] {
154
+ background: #f5f5f5;
155
+ }
156
+
157
+ .branchItemActive {
158
+ composes: branchItem;
159
+ color: #1a1a1a;
160
+ font-weight: 600;
161
+ }
162
+
163
+ .branchSeparator {
164
+ height: 1px;
165
+ background: #e5e5e5;
166
+ margin: 4px 10px;
167
+ }
168
+
169
+ .branchViewport {
170
+ max-height: 280px;
171
+ overflow-y: auto;
172
+ }
173
+
174
+ .branchShowAll {
175
+ display: block;
176
+ width: 100%;
177
+ padding: 8px 14px;
178
+ font-size: 16px;
179
+ color: #2563eb;
180
+ background: none;
181
+ border: none;
182
+ cursor: pointer;
183
+ text-align: left;
184
+ font-family: inherit;
185
+ }
186
+
187
+ .branchShowAll:hover {
188
+ background: #f5f5f5;
189
+ }
190
+
191
+ /* ─── Body: sidebar + content ─── */
192
+
193
+ .body {
194
+ display: flex;
195
+ flex: 1;
196
+ overflow: hidden;
197
+ }
198
+
199
+ /* ─── Sidebar ─── */
200
+
201
+ .sidebar {
202
+ width: 260px;
203
+ min-width: 220px;
204
+ background: #fff;
205
+ border-right: 1px solid #e5e5e5;
206
+ display: flex;
207
+ flex-direction: column;
208
+ padding: 0;
209
+ overflow-y: auto;
210
+ }
211
+
212
+ /* Nav items */
213
+
214
+ .navSection {
215
+ padding: 12px 8px 4px;
216
+ }
217
+
218
+ .navItem {
219
+ display: flex;
220
+ align-items: center;
221
+ gap: 10px;
222
+ padding: 7px 12px;
223
+ border-radius: 6px;
224
+ font-size: 16px;
225
+ font-weight: 500;
226
+ color: #555;
227
+ cursor: pointer;
228
+ border: none;
229
+ background: none;
230
+ width: 100%;
231
+ text-align: left;
232
+ transition: background 0.1s;
233
+ }
234
+
235
+ .navItem:hover {
236
+ background: #f5f5f5;
237
+ }
238
+
239
+ .navItemActive {
240
+ composes: navItem;
241
+ background: #f0f0f0;
242
+ color: #1a1a1a;
243
+ font-weight: 600;
244
+ }
245
+
246
+ .navIcon {
247
+ width: 18px;
248
+ height: 18px;
249
+ display: flex;
250
+ align-items: center;
251
+ justify-content: center;
252
+ opacity: 0.6;
253
+ font-size: 16px;
254
+ }
255
+
256
+ .navItemActive .navIcon {
257
+ opacity: 1;
258
+ }
259
+
260
+ .navCount {
261
+ margin-left: auto;
262
+ font-size: 14px;
263
+ color: #aaa;
264
+ font-weight: 500;
265
+ }
266
+
267
+ /* Separator */
268
+
269
+ .separator {
270
+ height: 1px;
271
+ background: #e5e5e5;
272
+ margin: 8px 16px;
273
+ }
274
+
275
+ /* Starred section */
276
+
277
+ .sectionLabel {
278
+ padding: 8px 20px 4px;
279
+ font-size: 14px;
280
+ font-weight: 600;
281
+ color: #999;
282
+ text-transform: uppercase;
283
+ letter-spacing: 0.5px;
284
+ }
285
+
286
+ .starredItem {
287
+ display: flex;
288
+ align-items: center;
289
+ gap: 8px;
290
+ padding: 6px 20px;
291
+ font-size: 16px;
292
+ color: #555;
293
+ cursor: pointer;
294
+ transition: background 0.1s;
295
+ text-decoration: none;
296
+ }
297
+
298
+ .starredItem:hover {
299
+ background: #f5f5f5;
300
+ }
301
+
302
+ .starredEmpty {
303
+ padding: 6px 20px;
304
+ font-size: 14px;
305
+ color: #bbb;
306
+ font-style: italic;
307
+ }
308
+
309
+ .starredIcon {
310
+ width: 16px;
311
+ height: 16px;
312
+ display: flex;
313
+ align-items: center;
314
+ justify-content: center;
315
+ flex-shrink: 0;
316
+ opacity: 0.5;
317
+ }
318
+
319
+ /* Sidebar footer */
320
+
321
+ .sidebarFooter {
322
+ margin-top: auto;
323
+ border-top: 1px solid #e5e5e5;
324
+ padding: 12px;
325
+ }
326
+
327
+ .avatar {
328
+ width: 32px;
329
+ height: 32px;
330
+ border-radius: 50%;
331
+ background: #f0f0f0;
332
+ display: flex;
333
+ align-items: center;
334
+ justify-content: center;
335
+ font-size: 16px;
336
+ color: #888;
337
+ flex-shrink: 0;
338
+ }
339
+
340
+ .userName {
341
+ font-size: 16px;
342
+ font-weight: 500;
343
+ color: #1a1a1a;
344
+ }
345
+
346
+ .userSub {
347
+ font-size: 14px;
348
+ color: #999;
349
+ }
350
+
351
+ .loginBtn {
352
+ display: flex;
353
+ align-items: center;
354
+ gap: 10px;
355
+ width: 100%;
356
+ padding: 8px 10px;
357
+ background: none;
358
+ border: 1px solid #e5e5e5;
359
+ border-radius: 8px;
360
+ font-size: 16px;
361
+ color: #555;
362
+ cursor: pointer;
363
+ transition: all 0.15s;
364
+ text-align: left;
365
+ }
366
+
367
+ .loginBtn:hover {
368
+ background: #f5f5f5;
369
+ border-color: #ccc;
370
+ }
371
+
372
+ /* ─── Main Content ─── */
373
+
374
+ .main {
375
+ flex: 1;
376
+ display: flex;
377
+ flex-direction: column;
378
+ overflow-y: auto;
379
+ }
380
+
381
+ /* Tabs */
382
+
383
+ .tabs {
384
+ display: flex;
385
+ align-items: center;
386
+ gap: 0;
387
+ padding: 0 32px;
388
+ background: #fff;
389
+ border-bottom: 1px solid #e5e5e5;
390
+ }
391
+
392
+ .tab {
393
+ padding: 11px 16px;
394
+ font-size: 16px;
395
+ font-weight: 500;
396
+ color: #888;
397
+ border: none;
398
+ background: none;
399
+ cursor: pointer;
400
+ border-bottom: 2px solid transparent;
401
+ transition: all 0.15s;
402
+ }
403
+
404
+ .tab:hover {
405
+ color: #1a1a1a;
406
+ }
407
+
408
+ .tabActive {
409
+ composes: tab;
410
+ color: #1a1a1a;
411
+ border-bottom-color: #1a1a1a;
412
+ font-weight: 600;
413
+ }
414
+
415
+ /* Grid */
416
+
417
+ .content {
418
+ padding: 24px 32px;
419
+ flex: 1;
420
+ }
421
+
422
+ .grid {
423
+ display: grid;
424
+ grid-template-columns: repeat(4, 1fr);
425
+ gap: 16px;
426
+ }
427
+
428
+ .emptyState {
429
+ padding: 48px 0;
430
+ text-align: center;
431
+ font-size: 16px;
432
+ color: #999;
433
+ }
434
+
435
+ /* Card */
436
+
437
+ .card {
438
+ background: #fff;
439
+ border: 1px solid #e5e5e5;
440
+ border-radius: 10px;
441
+ overflow: hidden;
442
+ cursor: pointer;
443
+ transition: all 0.15s;
444
+ text-decoration: none !important;
445
+ color: inherit;
446
+ display: block;
447
+ }
448
+
449
+ .card:hover {
450
+ border-color: #ccc;
451
+ box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
452
+ text-decoration: none !important;
453
+ }
454
+
455
+ .card:visited,
456
+ .card:focus,
457
+ .card:active,
458
+ .card:link {
459
+ text-decoration: none !important;
460
+ color: inherit;
461
+ }
462
+
463
+ .cardThumb {
464
+ height: 140px;
465
+ background: #f5f5f5;
466
+ display: flex;
467
+ align-items: flex-start;
468
+ justify-content: space-between;
469
+ position: relative;
470
+ padding: 10px;
471
+ }
472
+
473
+ .cardBadge {
474
+ padding: 3px 8px;
475
+ border-radius: 4px;
476
+ font-size: 12px;
477
+ font-weight: 600;
478
+ text-transform: uppercase;
479
+ letter-spacing: 0.3px;
480
+ background: rgba(0,0,0,0.06);
481
+ color: #555;
482
+ }
483
+
484
+ /* Icon buttons (star, flows, etc.) */
485
+
486
+ .iconBtn {
487
+ display: flex;
488
+ align-items: center;
489
+ justify-content: center;
490
+ width: 32px;
491
+ height: 32px;
492
+ border-radius: 6px;
493
+ border: none;
494
+ background: none;
495
+ cursor: pointer;
496
+ color: #bbb;
497
+ transition: all 0.15s;
498
+ }
499
+
500
+ .iconBtn:hover {
501
+ background: rgba(0, 0, 0, 0.06);
502
+ color: #555;
503
+ }
504
+
505
+ .iconBtnActive {
506
+ composes: iconBtn;
507
+ color: #f59e0b;
508
+ }
509
+
510
+ .iconBtnActive:hover {
511
+ background: rgba(0, 0, 0, 0.06);
512
+ color: #d97706;
513
+ }
514
+
515
+ .cardActions {
516
+ display: flex;
517
+ align-items: center;
518
+ gap: 2px;
519
+ }
520
+
521
+ .cardBody {
522
+ padding: 12px 14px;
523
+ display: flex;
524
+ align-items: flex-start;
525
+ gap: 8px;
526
+ }
527
+
528
+ .cardBodyContent {
529
+ flex: 1;
530
+ min-width: 0;
531
+ }
532
+
533
+ .cardTitle {
534
+ font-size: 16px;
535
+ font-weight: 600;
536
+ color: #1a1a1a;
537
+ margin-bottom: 4px;
538
+ white-space: nowrap;
539
+ overflow: hidden;
540
+ text-overflow: ellipsis;
541
+ text-decoration: none;
542
+ }
543
+
544
+ .cardMeta {
545
+ display: flex;
546
+ align-items: center;
547
+ gap: 6px;
548
+ font-size: 14px;
549
+ color: #aaa;
550
+ text-decoration: none;
551
+ }
552
+
553
+ .cardMetaDot {
554
+ width: 3px;
555
+ height: 3px;
556
+ border-radius: 50%;
557
+ background: #d1d5db;
558
+ }
559
+
560
+ /* Folder card */
561
+
562
+ .folderCard {
563
+ composes: card;
564
+ }
565
+
566
+ .folderThumb {
567
+ height: 140px;
568
+ background: #f0f4ff;
569
+ display: flex;
570
+ align-items: center;
571
+ justify-content: center;
572
+ color: #54aeff;
573
+ }
574
+
575
+ /* External badge */
576
+
577
+ .externalBadge {
578
+ display: inline-flex;
579
+ align-items: center;
580
+ gap: 3px;
581
+ margin-left: 6px;
582
+ font-size: 12px;
583
+ color: #999;
584
+ font-weight: 500;
585
+ }
586
+
587
+ /* Create menu overlay */
588
+
589
+ .createMenuOverlay {
590
+ position: fixed;
591
+ inset: 0;
592
+ background: rgba(0, 0, 0, 0.15);
593
+ z-index: 100;
594
+ display: flex;
595
+ align-items: center;
596
+ justify-content: center;
597
+ }
598
+
599
+ .createMenu {
600
+ background: #fff;
601
+ border-radius: 12px;
602
+ box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
603
+ padding: 24px;
604
+ width: 360px;
605
+ max-width: 90vw;
606
+ }
607
+
608
+ .createMenuTitle {
609
+ font-size: 18px;
610
+ font-weight: 600;
611
+ margin-bottom: 16px;
612
+ color: #1a1a1a;
613
+ }
614
+
615
+ .createMenuGrid {
616
+ display: flex;
617
+ flex-direction: column;
618
+ gap: 8px;
619
+ }
620
+
621
+ .createMenuItem {
622
+ display: flex;
623
+ align-items: center;
624
+ gap: 12px;
625
+ padding: 12px 14px;
626
+ border: 1px solid #e5e5e5;
627
+ border-radius: 8px;
628
+ background: #fff;
629
+ cursor: pointer;
630
+ transition: all 0.15s;
631
+ text-align: left;
632
+ }
633
+
634
+ .createMenuItem:hover {
635
+ border-color: #ccc;
636
+ background: #fafafa;
637
+ }
638
+
639
+ .createMenuIcon {
640
+ width: 36px;
641
+ height: 36px;
642
+ border-radius: 8px;
643
+ display: flex;
644
+ align-items: center;
645
+ justify-content: center;
646
+ font-size: 24px;
647
+ flex-shrink: 0;
648
+ background: #f0f0f0;
649
+ color: #1a1a1a;
650
+ }
651
+
652
+ .createMenuItemTitle {
653
+ font-size: 16px;
654
+ font-weight: 600;
655
+ color: #1a1a1a;
656
+ }
657
+
658
+ .createMenuItemDesc {
659
+ font-size: 14px;
660
+ color: #999;
661
+ }
662
+
663
+ /* Create form styles */
664
+
665
+ .createFormField {
666
+ margin-bottom: 14px;
667
+ }
668
+
669
+ .createFormLabel {
670
+ font-size: 16px;
671
+ font-weight: 500;
672
+ margin-bottom: 4px;
673
+ display: block;
674
+ }
675
+
676
+ .createFormInput {
677
+ width: 100%;
678
+ padding: 8px 12px;
679
+ border: 1px solid #e5e5e5;
680
+ border-radius: 6px;
681
+ font-size: 16px;
682
+ box-sizing: border-box;
683
+ }
684
+
685
+ .createFormInput:focus {
686
+ outline: none;
687
+ border-color: #999;
688
+ }
689
+
690
+ .createFormCheckbox {
691
+ display: flex;
692
+ align-items: center;
693
+ gap: 8px;
694
+ font-size: 16px;
695
+ }
696
+
697
+ .createFormActions {
698
+ display: flex;
699
+ justify-content: flex-end;
700
+ gap: 8px;
701
+ margin-top: 16px;
702
+ }
703
+
704
+ .createFormBack {
705
+ display: flex;
706
+ align-items: center;
707
+ gap: 4px;
708
+ background: none;
709
+ border: none;
710
+ color: #888;
711
+ font-size: 16px;
712
+ cursor: pointer;
713
+ padding: 0;
714
+ margin-bottom: 12px;
715
+ }
716
+
717
+ .createFormBack:hover {
718
+ color: #1a1a1a;
719
+ }
720
+
721
+ .createFooter {
722
+ display: flex;
723
+ align-items: center;
724
+ gap: 8px;
725
+ margin-top: 16px;
726
+ padding-top: 12px;
727
+ border-top: 1px solid #e5e5e5;
728
+ }
729
+
730
+ .createFooterDot {
731
+ width: 8px;
732
+ height: 8px;
733
+ border-radius: 50%;
734
+ background: #2563eb;
735
+ flex-shrink: 0;
736
+ }
737
+
738
+ .createFooterText {
739
+ font-size: 14px;
740
+ color: #999;
741
+ }
742
+
743
+ .createFormError {
744
+ font-size: 14px;
745
+ color: #dc2626;
746
+ margin-top: 8px;
747
+ }
748
+
749
+ /* PAT Token dialog */
750
+
751
+ .dialog {
752
+ background: #fff;
753
+ border-radius: 12px;
754
+ box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
755
+ padding: 28px;
756
+ width: 480px;
757
+ max-width: 90vw;
758
+ position: relative;
759
+ }
760
+
761
+ .dialogClose {
762
+ position: absolute;
763
+ top: 16px;
764
+ right: 16px;
765
+ background: none;
766
+ border: none;
767
+ font-size: 24px;
768
+ line-height: 1;
769
+ color: #999;
770
+ cursor: pointer;
771
+ padding: 4px 8px;
772
+ border-radius: 4px;
773
+ }
774
+
775
+ .dialogClose:hover {
776
+ background: #f0f0f0;
777
+ color: #555;
778
+ }
779
+
780
+ .dialogTitle {
781
+ font-size: 18px;
782
+ font-weight: 600;
783
+ margin-bottom: 8px;
784
+ color: #1a1a1a;
785
+ padding-right: 32px;
786
+ }
787
+
788
+ .dialogDesc {
789
+ font-size: 16px;
790
+ color: #666;
791
+ margin-bottom: 16px;
792
+ line-height: 1.5;
793
+ }
794
+
795
+ .dialogSeparator {
796
+ border: none;
797
+ border-top: 1px solid #e5e5e5;
798
+ margin: 16px 0;
799
+ }
800
+
801
+ .dialogLabel {
802
+ display: block;
803
+ font-size: 16px;
804
+ font-weight: 600;
805
+ color: #1a1a1a;
806
+ margin-bottom: 6px;
807
+ }
808
+
809
+ .dialogInput {
810
+ width: 100%;
811
+ padding: 10px 12px;
812
+ border: 1px solid #e5e5e5;
813
+ border-radius: 6px;
814
+ font-size: 16px;
815
+ font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
816
+ margin-bottom: 16px;
817
+ box-sizing: border-box;
818
+ }
819
+
820
+ .dialogInput:focus {
821
+ outline: none;
822
+ border-color: #999;
823
+ }
824
+
825
+ .dialogActions {
826
+ display: flex;
827
+ justify-content: flex-end;
828
+ gap: 8px;
829
+ margin-top: 8px;
830
+ }
831
+
832
+ .btnSecondary {
833
+ padding: 8px 16px;
834
+ background: #fff;
835
+ border: 1px solid #e5e5e5;
836
+ border-radius: 6px;
837
+ font-size: 16px;
838
+ color: #555;
839
+ cursor: pointer;
840
+ }
841
+
842
+ .btnSecondary:hover {
843
+ background: #f5f5f5;
844
+ }
845
+
846
+ .btnPrimary {
847
+ padding: 8px 16px;
848
+ background: #1a1a1a;
849
+ border: none;
850
+ border-radius: 6px;
851
+ font-size: 16px;
852
+ font-weight: 600;
853
+ color: #fff;
854
+ cursor: pointer;
855
+ }
856
+
857
+ .btnPrimary:hover {
858
+ background: #333;
859
+ }
860
+
861
+ /* Token config card */
862
+
863
+ .tokenCard {
864
+ background: #f6f8fa;
865
+ border: 1px solid #e5e5e5;
866
+ border-radius: 8px;
867
+ padding: 14px 16px;
868
+ margin-bottom: 12px;
869
+ }
870
+
871
+ .tokenCardTitle {
872
+ font-size: 16px;
873
+ font-weight: 600;
874
+ color: #1a1a1a;
875
+ margin-bottom: 10px;
876
+ }
877
+
878
+ .tokenCardRow {
879
+ display: flex;
880
+ align-items: baseline;
881
+ gap: 6px;
882
+ font-size: 14px;
883
+ line-height: 1.8;
884
+ }
885
+
886
+ .tokenCardLabel {
887
+ color: #666;
888
+ flex-shrink: 0;
889
+ }
890
+
891
+ .tokenCardValue {
892
+ font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
893
+ font-size: 14px;
894
+ color: #1a1a1a;
895
+ }
896
+
897
+ .tokenLink {
898
+ display: inline-block;
899
+ font-size: 16px;
900
+ color: #0969da;
901
+ text-decoration: none;
902
+ margin-bottom: 4px;
903
+ }
904
+
905
+ .tokenLink:hover {
906
+ text-decoration: underline;
907
+ }
908
+
909
+ /* Warning banner */
910
+
911
+ .warningBanner {
912
+ display: flex;
913
+ align-items: center;
914
+ gap: 8px;
915
+ padding: 10px 12px;
916
+ background: #fff8c5;
917
+ border: 1px solid #d4a72c;
918
+ border-radius: 6px;
919
+ font-size: 14px;
920
+ color: #6a5300;
921
+ margin-bottom: 8px;
922
+ }
923
+
924
+ .warningIcon {
925
+ flex-shrink: 0;
926
+ font-size: 16px;
927
+ }
928
+
929
+ /* Muted thumbnail colors */
930
+ .thumbBlue { background: #f0f4f8; }
931
+ .thumbAmber { background: #faf5ee; }
932
+ .thumbGreen { background: #f0f7f4; }
933
+ .thumbPurple { background: #f5f0fa; }
934
+ .thumbRose { background: #faf0f2; }
935
+ .thumbSlate { background: #f3f4f6; }
936
+
937
+ /* Group by folders checkbox */
938
+
939
+ .groupByFolders {
940
+ display: flex;
941
+ align-items: center;
942
+ gap: 6px;
943
+ margin-left: auto;
944
+ font-size: 16px;
945
+ color: #555;
946
+ cursor: pointer;
947
+ padding: 0 4px;
948
+ white-space: nowrap;
949
+ user-select: none;
950
+ }
951
+
952
+ .groupByFoldersCheckbox {
953
+ accent-color: #1a1a1a;
954
+ cursor: pointer;
955
+ }
956
+
957
+ /* Folder sections */
958
+
959
+ .folderSection {
960
+ margin-top: 24px;
961
+ }
962
+
963
+ .folderSection:first-child {
964
+ margin-top: 0;
965
+ }
966
+
967
+ .folderHeader {
968
+ display: flex;
969
+ align-items: center;
970
+ gap: 8px;
971
+ padding: 8px 0;
972
+ margin-bottom: 35px;
973
+ border: none;
974
+ background: none;
975
+ cursor: pointer;
976
+ font-size: 16px;
977
+ font-weight: 600;
978
+ color: #1a1a1a;
979
+ width: 100%;
980
+ text-align: left;
981
+ }
982
+
983
+ .folderHeader:hover {
984
+ color: #555;
985
+ }
986
+
987
+ .folderIcon {
988
+ color: #1a1a1a;
989
+ flex-shrink: 0;
990
+ }
991
+
992
+ .folderName {
993
+ flex: 1;
994
+ }
995
+
996
+ .folderCount {
997
+ font-size: 14px;
998
+ font-weight: 400;
999
+ color: #999;
1000
+ }
1001
+
1002
+ .folderChevron {
1003
+ color: #999;
1004
+ transition: transform 0.2s;
1005
+ }
1006
+
1007
+ .folderChevronExpanded {
1008
+ composes: folderChevron;
1009
+ transform: rotate(90deg);
1010
+ }
1011
+
1012
+ /* Flows dropdown */
1013
+
1014
+ .flowsBtn {
1015
+ display: flex;
1016
+ align-items: center;
1017
+ justify-content: center;
1018
+ width: 24px;
1019
+ height: 24px;
1020
+ border-radius: 4px;
1021
+ border: none;
1022
+ background: none;
1023
+ cursor: pointer;
1024
+ color: #ccc;
1025
+ flex-shrink: 0;
1026
+ transition: all 0.15s;
1027
+ margin-top: 1px;
1028
+ }
1029
+
1030
+ .flowsBtn:hover {
1031
+ background: #f0f0f0;
1032
+ color: #555;
1033
+ }
1034
+
1035
+ .flowsPositioner {
1036
+ z-index: 200;
1037
+ }
1038
+
1039
+ .flowsPopup {
1040
+ background: #fff;
1041
+ border: 1px solid #e5e5e5;
1042
+ border-radius: 8px;
1043
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
1044
+ min-width: 160px;
1045
+ padding: 4px 0;
1046
+ font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, sans-serif;
1047
+ }
1048
+
1049
+ .flowsTitle {
1050
+ padding: 6px 12px 4px;
1051
+ font-size: 14px;
1052
+ font-weight: 600;
1053
+ color: #999;
1054
+ text-transform: uppercase;
1055
+ letter-spacing: 0.4px;
1056
+ }
1057
+
1058
+ .flowsItem {
1059
+ display: block;
1060
+ width: 100%;
1061
+ padding: 6px 12px;
1062
+ font-size: 16px;
1063
+ color: #555;
1064
+ cursor: pointer;
1065
+ border: none;
1066
+ background: none;
1067
+ text-align: left;
1068
+ transition: background 0.1s;
1069
+ text-decoration: none;
1070
+ }
1071
+
1072
+ .flowsItem:hover,
1073
+ .flowsItem[data-highlighted] {
1074
+ background: #f5f5f5;
1075
+ color: #1a1a1a;
1076
+ }
1077
+
1078
+ /* Group by folders checkbox */
1079
+
1080
+ .groupByFolders {
1081
+ display: flex;
1082
+ align-items: center;
1083
+ gap: 6px;
1084
+ margin-left: auto;
1085
+ font-size: 16px;
1086
+ color: #555;
1087
+ cursor: pointer;
1088
+ padding: 0 4px;
1089
+ white-space: nowrap;
1090
+ user-select: none;
1091
+ }
1092
+
1093
+ .groupByFoldersCheckbox {
1094
+ accent-color: #1a1a1a;
1095
+ cursor: pointer;
1096
+ }
1097
+
1098
+ /* Folder sections */
1099
+
1100
+ .folderSection {
1101
+ margin-top: 24px;
1102
+ }
1103
+
1104
+ .folderSection:first-child {
1105
+ margin-top: 0;
1106
+ }
1107
+
1108
+ .folderHeader {
1109
+ display: flex;
1110
+ align-items: center;
1111
+ gap: 8px;
1112
+ padding: 8px 0;
1113
+ margin-bottom: 12px;
1114
+ border: none;
1115
+ background: none;
1116
+ cursor: pointer;
1117
+ font-size: 16px;
1118
+ font-weight: 600;
1119
+ color: #1a1a1a;
1120
+ width: 100%;
1121
+ text-align: left;
1122
+ }
1123
+
1124
+ .folderHeader:hover {
1125
+ color: #555;
1126
+ }
1127
+
1128
+ .folderIcon {
1129
+ color: #1a1a1a;
1130
+ flex-shrink: 0;
1131
+ }
1132
+
1133
+ .folderName {
1134
+ flex: 1;
1135
+ }
1136
+
1137
+ .folderCount {
1138
+ font-size: 14px;
1139
+ font-weight: 400;
1140
+ color: #999;
1141
+ }
1142
+
1143
+ .folderChevron {
1144
+ color: #999;
1145
+ transition: transform 0.2s;
1146
+ }
1147
+
1148
+ .folderChevronExpanded {
1149
+ composes: folderChevron;
1150
+ transform: rotate(90deg);
1151
+ }
1152
+
1153
+ /* Flows dropdown */
1154
+
1155
+ .flowsBtn {
1156
+ display: flex;
1157
+ align-items: center;
1158
+ justify-content: center;
1159
+ width: 24px;
1160
+ height: 24px;
1161
+ border-radius: 4px;
1162
+ border: none;
1163
+ background: none;
1164
+ cursor: pointer;
1165
+ color: #ccc;
1166
+ flex-shrink: 0;
1167
+ transition: all 0.15s;
1168
+ margin-top: 1px;
1169
+ }
1170
+
1171
+ .flowsBtn:hover {
1172
+ background: #f0f0f0;
1173
+ color: #555;
1174
+ }
1175
+
1176
+ .flowsPositioner {
1177
+ z-index: 200;
1178
+ }
1179
+
1180
+ .flowsPopup {
1181
+ background: #fff;
1182
+ border: 1px solid #e5e5e5;
1183
+ border-radius: 8px;
1184
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
1185
+ min-width: 160px;
1186
+ padding: 4px 0;
1187
+ font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, sans-serif;
1188
+ }
1189
+
1190
+ .flowsTitle {
1191
+ padding: 6px 12px 4px;
1192
+ font-size: 14px;
1193
+ font-weight: 600;
1194
+ color: #999;
1195
+ text-transform: uppercase;
1196
+ letter-spacing: 0.4px;
1197
+ }
1198
+
1199
+ .flowsItem {
1200
+ display: block;
1201
+ width: 100%;
1202
+ padding: 6px 12px;
1203
+ font-size: 16px;
1204
+ color: #555;
1205
+ cursor: pointer;
1206
+ border: none;
1207
+ background: none;
1208
+ text-align: left;
1209
+ transition: background 0.1s;
1210
+ text-decoration: none;
1211
+ }
1212
+
1213
+ .flowsItem:hover,
1214
+ .flowsItem[data-highlighted] {
1215
+ background: #f5f5f5;
1216
+ color: #1a1a1a;
1217
+ }
1218
+
1219
+ /* Avatar stack */
1220
+
1221
+ .avatarStack {
1222
+ display: flex;
1223
+ flex-direction: row-reverse;
1224
+ justify-content: flex-end;
1225
+ }
1226
+
1227
+ .avatarStack > .avatarImg + .avatarImg {
1228
+ margin-right: -8px;
1229
+ }
1230
+
1231
+ .avatarImg {
1232
+ width: 24px;
1233
+ height: 24px;
1234
+ border-radius: 50%;
1235
+ border: 2px solid #fff;
1236
+ object-fit: cover;
1237
+ flex-shrink: 0;
1238
+ }
1239
+
1240
+ /* Text-only card header */
1241
+
1242
+ .cardHeader {
1243
+ display: flex;
1244
+ align-items: center;
1245
+ justify-content: space-between;
1246
+ padding: 12px 14px 0;
1247
+ }
1248
+
1249
+ .cardDescription {
1250
+ font-size: 14px;
1251
+ color: #666;
1252
+ line-height: 1.5;
1253
+ display: -webkit-box;
1254
+ -webkit-line-clamp: 2;
1255
+ -webkit-box-orient: vertical;
1256
+ overflow: hidden;
1257
+ margin-top: 4px;
1258
+ }
1259
+
1260
+ .cardFooter {
1261
+ display: flex;
1262
+ align-items: center;
1263
+ gap: 8px;
1264
+ margin-top: 8px;
1265
+ }
1266
+
1267
+ /* Create dropdown (replaces modal) */
1268
+
1269
+ .createDropdownPositioner {
1270
+ z-index: 200;
1271
+ }
1272
+
1273
+ .createDropdown {
1274
+ background: #fff;
1275
+ border: 1px solid #e5e5e5;
1276
+ border-radius: 12px;
1277
+ box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
1278
+ padding: 16px;
1279
+ width: 360px;
1280
+ max-width: 90vw;
1281
+ font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, sans-serif;
1282
+ }
1283
+
1284
+ .createDropdownTitle {
1285
+ font-size: 16px;
1286
+ font-weight: 600;
1287
+ margin-bottom: 12px;
1288
+ color: #1a1a1a;
1289
+ }
1290
+
1291
+ .createDropdownGrid {
1292
+ display: flex;
1293
+ flex-direction: column;
1294
+ gap: 6px;
1295
+ }
1296
+
1297
+ .createDropdownForm {
1298
+ /* Wrapper for inline form inside dropdown */
1299
+ }
1300
+
1301
+ /* More options */
1302
+
1303
+ .moreOptionsBtn {
1304
+ display: flex;
1305
+ align-items: center;
1306
+ gap: 4px;
1307
+ background: none;
1308
+ border: none;
1309
+ color: #666;
1310
+ font-size: 14px;
1311
+ font-weight: 500;
1312
+ cursor: pointer;
1313
+ padding: 8px 0 4px;
1314
+ margin-top: 8px;
1315
+ transition: color 0.15s;
1316
+ }
1317
+
1318
+ .moreOptionsBtn:hover {
1319
+ color: #1a1a1a;
1320
+ }
1321
+
1322
+ .moreOptionsSection {
1323
+ margin-top: 8px;
1324
+ display: flex;
1325
+ flex-direction: column;
1326
+ gap: 4px;
1327
+ padding-top: 8px;
1328
+ border-top: 1px solid #eee;
1329
+ }
1330
+
1331
+ .moreOptionItem {
1332
+ display: block;
1333
+ width: 100%;
1334
+ padding: 8px 10px;
1335
+ border: none;
1336
+ background: none;
1337
+ border-radius: 6px;
1338
+ cursor: pointer;
1339
+ text-align: left;
1340
+ transition: background 0.1s;
1341
+ }
1342
+
1343
+ .moreOptionItem:hover {
1344
+ background: #f5f5f5;
1345
+ }
1346
+
1347
+ .moreOptionTitle {
1348
+ font-size: 14px;
1349
+ font-weight: 600;
1350
+ color: #1a1a1a;
1351
+ }
1352
+
1353
+ .moreOptionDesc {
1354
+ font-size: 14px;
1355
+ color: #999;
1356
+ }
1357
+
1358
+ /* Create tip */
1359
+
1360
+ .createTip {
1361
+ margin-top: 12px;
1362
+ padding-top: 10px;
1363
+ border-top: 1px solid #eee;
1364
+ }
1365
+
1366
+ .createTipText {
1367
+ font-size: 14px;
1368
+ color: #999;
1369
+ line-height: 1.5;
1370
+ }
1371
+
1372
+ .createTipCode {
1373
+ font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
1374
+ font-size: 12px;
1375
+ background: #f0f0f0;
1376
+ padding: 1px 5px;
1377
+ border-radius: 3px;
1378
+ color: #555;
1379
+ }
1380
+
1381
+ /* Group by folders checkbox */
1382
+
1383
+ .groupByFolders {
1384
+ display: flex;
1385
+ align-items: center;
1386
+ gap: 6px;
1387
+ margin-left: auto;
1388
+ font-size: 14px;
1389
+ color: #555;
1390
+ cursor: pointer;
1391
+ padding: 0 4px;
1392
+ white-space: nowrap;
1393
+ user-select: none;
1394
+ }
1395
+
1396
+ .groupByFoldersCheckbox {
1397
+ accent-color: #1a1a1a;
1398
+ cursor: pointer;
1399
+ }
1400
+
1401
+ /* Folder sections */
1402
+
1403
+ .folderSection {
1404
+ padding-bottom: 24px;
1405
+ margin-bottom: 24px;
1406
+ border-bottom: 1px solid #e5e5e5;
1407
+ }
1408
+
1409
+ .folderSectionCollapsed {
1410
+ composes: folderSection;
1411
+ padding-bottom: 0;
1412
+ }
1413
+
1414
+ .folderSection:last-child,
1415
+ .folderSectionCollapsed:last-child {
1416
+ border-bottom: none;
1417
+ margin-bottom: 0;
1418
+ }
1419
+
1420
+ .folderHeader {
1421
+ display: flex;
1422
+ align-items: center;
1423
+ gap: 8px;
1424
+ padding: 8px 0;
1425
+ margin-bottom: 16px;
1426
+ border: none;
1427
+ background: none;
1428
+ cursor: pointer;
1429
+ font-size: 16px;
1430
+ font-weight: 600;
1431
+ color: #1a1a1a;
1432
+ width: 100%;
1433
+ text-align: left;
1434
+ }
1435
+
1436
+ .folderHeader:hover {
1437
+ color: #555;
1438
+ }
1439
+
1440
+ .folderIcon {
1441
+ color: #1a1a1a;
1442
+ flex-shrink: 0;
1443
+ }
1444
+
1445
+ .folderName {
1446
+ flex: 1;
1447
+ }
1448
+
1449
+ .folderCount {
1450
+ font-size: 14px;
1451
+ font-weight: 400;
1452
+ color: #999;
1453
+ }
1454
+
1455
+ .folderChevron {
1456
+ color: #999;
1457
+ transition: transform 0.2s;
1458
+ }
1459
+
1460
+ .folderChevronExpanded {
1461
+ composes: folderChevron;
1462
+ transform: rotate(90deg);
1463
+ }
1464
+
1465
+ /* Flows dropdown */
1466
+
1467
+ .flowsBtn {
1468
+ display: flex;
1469
+ align-items: center;
1470
+ justify-content: center;
1471
+ width: 24px;
1472
+ height: 24px;
1473
+ border-radius: 4px;
1474
+ border: none;
1475
+ background: none;
1476
+ cursor: pointer;
1477
+ color: #ccc;
1478
+ flex-shrink: 0;
1479
+ transition: all 0.15s;
1480
+ margin-top: 1px;
1481
+ }
1482
+
1483
+ .flowsBtn:hover {
1484
+ background: #f0f0f0;
1485
+ color: #555;
1486
+ }
1487
+
1488
+ .flowsPositioner {
1489
+ z-index: 200;
1490
+ }
1491
+
1492
+ .flowsPopup {
1493
+ background: #fff;
1494
+ border: 1px solid #e5e5e5;
1495
+ border-radius: 8px;
1496
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
1497
+ min-width: 180px;
1498
+ padding: 4px 0;
1499
+ font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, sans-serif;
1500
+ }
1501
+
1502
+ .flowsTitle {
1503
+ padding: 6px 12px 4px;
1504
+ font-size: 12px;
1505
+ font-weight: 600;
1506
+ color: #999;
1507
+ text-transform: uppercase;
1508
+ letter-spacing: 0.4px;
1509
+ }
1510
+
1511
+ .flowsItem {
1512
+ display: block;
1513
+ width: 100%;
1514
+ padding: 6px 12px;
1515
+ font-size: 14px;
1516
+ color: #555;
1517
+ cursor: pointer;
1518
+ border: none;
1519
+ background: none;
1520
+ text-align: left;
1521
+ transition: background 0.1s;
1522
+ text-decoration: none;
1523
+ }
1524
+
1525
+ .flowsItem:hover,
1526
+ .flowsItem[data-highlighted] {
1527
+ background: #f5f5f5;
1528
+ color: #1a1a1a;
1529
+ }
1530
+
1531
+ /* Avatar stack */
1532
+
1533
+ .avatarStack {
1534
+ display: flex;
1535
+ flex-direction: row-reverse;
1536
+ justify-content: flex-end;
1537
+ }
1538
+
1539
+ .avatarStack > .avatarImg + .avatarImg {
1540
+ margin-right: -8px;
1541
+ }
1542
+
1543
+ .avatarImg {
1544
+ width: 24px;
1545
+ height: 24px;
1546
+ border-radius: 50%;
1547
+ border: 2px solid #fff;
1548
+ object-fit: cover;
1549
+ flex-shrink: 0;
1550
+ }
1551
+
1552
+ /* Text-only card header */
1553
+
1554
+ .cardHeader {
1555
+ display: flex;
1556
+ align-items: center;
1557
+ justify-content: space-between;
1558
+ padding: 14px 16px 0;
1559
+ }
1560
+
1561
+ .cardDescription {
1562
+ font-size: 14px;
1563
+ color: #666;
1564
+ line-height: 1.5;
1565
+ display: -webkit-box;
1566
+ -webkit-line-clamp: 2;
1567
+ -webkit-box-orient: vertical;
1568
+ overflow: hidden;
1569
+ margin-top: 4px;
1570
+ }
1571
+
1572
+ .cardFooter {
1573
+ display: flex;
1574
+ align-items: center;
1575
+ gap: 8px;
1576
+ margin-top: 10px;
1577
+ }
1578
+
1579
+ /* Create dropdown (replaces modal) */
1580
+
1581
+ .createDropdownPositioner {
1582
+ z-index: 200;
1583
+ }
1584
+
1585
+ .createDropdown {
1586
+ background: #fff;
1587
+ border: 1px solid #e5e5e5;
1588
+ border-radius: 12px;
1589
+ box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
1590
+ padding: 16px;
1591
+ width: 380px;
1592
+ max-width: 90vw;
1593
+ font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, sans-serif;
1594
+ }
1595
+
1596
+ .createDropdownTitle {
1597
+ font-size: 16px;
1598
+ font-weight: 600;
1599
+ margin-bottom: 12px;
1600
+ color: #1a1a1a;
1601
+ }
1602
+
1603
+ .createDropdownGrid {
1604
+ display: flex;
1605
+ flex-direction: column;
1606
+ gap: 6px;
1607
+ }
1608
+
1609
+ .createDropdownForm {
1610
+ /* Wrapper for inline form inside dropdown */
1611
+ }
1612
+
1613
+ /* More options */
1614
+
1615
+ .moreOptionsBtn {
1616
+ display: flex;
1617
+ align-items: center;
1618
+ gap: 4px;
1619
+ background: none;
1620
+ border: none;
1621
+ color: #666;
1622
+ font-size: 14px;
1623
+ font-weight: 500;
1624
+ cursor: pointer;
1625
+ padding: 8px 0 4px;
1626
+ margin-top: 8px;
1627
+ transition: color 0.15s;
1628
+ }
1629
+
1630
+ .moreOptionsBtn:hover {
1631
+ color: #1a1a1a;
1632
+ }
1633
+
1634
+ .moreOptionsSection {
1635
+ margin-top: 8px;
1636
+ display: flex;
1637
+ flex-direction: column;
1638
+ gap: 4px;
1639
+ padding-top: 8px;
1640
+ border-top: 1px solid #eee;
1641
+ }
1642
+
1643
+ .moreOptionItem {
1644
+ display: block;
1645
+ width: 100%;
1646
+ padding: 10px 12px;
1647
+ border: none;
1648
+ background: none;
1649
+ border-radius: 6px;
1650
+ cursor: pointer;
1651
+ text-align: left;
1652
+ transition: background 0.1s;
1653
+ }
1654
+
1655
+ .moreOptionItem:hover {
1656
+ background: #f5f5f5;
1657
+ }
1658
+
1659
+ .moreOptionTitle {
1660
+ font-size: 14px;
1661
+ font-weight: 600;
1662
+ color: #1a1a1a;
1663
+ }
1664
+
1665
+ .moreOptionDesc {
1666
+ font-size: 12px;
1667
+ color: #999;
1668
+ margin-top: 2px;
1669
+ }
1670
+
1671
+ /* Create tip */
1672
+
1673
+ .createTip {
1674
+ margin-top: 12px;
1675
+ padding-top: 10px;
1676
+ border-top: 1px solid #eee;
1677
+ }
1678
+
1679
+ .createTipText {
1680
+ font-size: 12px;
1681
+ color: #999;
1682
+ line-height: 1.5;
1683
+ }
1684
+
1685
+ .createTipCode {
1686
+ font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
1687
+ font-size: 12px;
1688
+ background: #f0f0f0;
1689
+ padding: 1px 5px;
1690
+ border-radius: 3px;
1691
+ color: #555;
1692
+ }
1693
+
1694
+ /* Hamburger button — hidden on desktop */
1695
+
1696
+ .hamburgerBtn {
1697
+ display: none;
1698
+ align-items: center;
1699
+ justify-content: center;
1700
+ width: 36px;
1701
+ height: 36px;
1702
+ border-radius: 8px;
1703
+ border: none;
1704
+ background: none;
1705
+ cursor: pointer;
1706
+ color: #555;
1707
+ transition: background 0.15s;
1708
+ }
1709
+
1710
+ .hamburgerBtn:hover {
1711
+ background: #f0f0f0;
1712
+ }
1713
+
1714
+ /* ─── Responsive: cards wrap on smaller screens ─── */
1715
+
1716
+ @media (max-width: 1200px) {
1717
+ .grid {
1718
+ grid-template-columns: repeat(3, 1fr);
1719
+ }
1720
+ }
1721
+
1722
+ @media (max-width: 900px) {
1723
+ .grid {
1724
+ grid-template-columns: repeat(2, 1fr);
1725
+ }
1726
+ }
1727
+
1728
+ /* ─── Responsive: sidebar collapses under 500px ─── */
1729
+
1730
+ @media (max-width: 500px) {
1731
+ .hamburgerBtn {
1732
+ display: flex;
1733
+ }
1734
+
1735
+ .sidebar {
1736
+ display: none;
1737
+ position: absolute;
1738
+ top: 0;
1739
+ left: 0;
1740
+ z-index: 100;
1741
+ width: 260px;
1742
+ height: 100%;
1743
+ box-shadow: 4px 0 16px rgba(0, 0, 0, 0.1);
1744
+ }
1745
+
1746
+ .sidebarOpen {
1747
+ display: flex;
1748
+ }
1749
+
1750
+ .body {
1751
+ position: relative;
1752
+ }
1753
+
1754
+ .grid {
1755
+ grid-template-columns: 1fr;
1756
+ }
1757
+
1758
+ .topBar {
1759
+ padding: 12px 16px;
1760
+ }
1761
+
1762
+ .content {
1763
+ padding: 16px;
1764
+ }
1765
+
1766
+ .tabs {
1767
+ padding: 0 16px;
1768
+ }
1769
+
1770
+ .groupByFolders {
1771
+ display: none;
1772
+ }
1773
+ }