@dfosco/storyboard-react 4.0.0-beta.41 → 4.0.0-beta.42
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/package.json +3 -3
- package/src/Icon.jsx +4 -3
- package/src/Viewfinder.jsx +38 -2
- package/src/Viewfinder.module.css +135 -573
- package/src/canvas/PageSelector.jsx +37 -13
- package/src/canvas/PageSelector.module.css +7 -0
- package/src/context.jsx +5 -1
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
flex-direction: column;
|
|
6
6
|
height: calc(100vh - var(--sb-branch-bar-height, 0px));
|
|
7
7
|
font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
8
|
-
color: #1a1a1a;
|
|
9
|
-
background: #fafafa;
|
|
8
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
9
|
+
background: var(--bgColor-inset, #fafafa);
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
/* ─── Full-width header ─── */
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
align-items: center;
|
|
17
17
|
justify-content: space-between;
|
|
18
18
|
padding: 16px 24px;
|
|
19
|
-
border-bottom: 1px solid #e5e5e5;
|
|
20
|
-
background: #fff;
|
|
19
|
+
border-bottom: 1px solid var(--borderColor-default, #e5e5e5);
|
|
20
|
+
background: var(--bgColor-default, #fff);
|
|
21
21
|
flex-shrink: 0;
|
|
22
22
|
}
|
|
23
23
|
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
.logo {
|
|
31
31
|
width: 48px;
|
|
32
32
|
height: 48px;
|
|
33
|
-
background: #313131;
|
|
33
|
+
background: var(--bgColor-emphasis, #313131);
|
|
34
34
|
border-radius: 8px;
|
|
35
35
|
transform: rotate(-1deg);
|
|
36
36
|
display: flex;
|
|
37
37
|
align-items: center;
|
|
38
38
|
justify-content: center;
|
|
39
|
-
color: #fff;
|
|
39
|
+
color: var(--fgColor-onEmphasis, #fff);
|
|
40
40
|
flex-shrink: 0;
|
|
41
41
|
}
|
|
42
42
|
|
|
@@ -44,13 +44,13 @@
|
|
|
44
44
|
font-size: 24px;
|
|
45
45
|
/* font-style: italic; */
|
|
46
46
|
font-weight: 900;
|
|
47
|
-
color: #1a1a1a;
|
|
47
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
48
48
|
line-height: 1.1;
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
.appSubtitle {
|
|
52
52
|
font-size: 16px;
|
|
53
|
-
color: #888;
|
|
53
|
+
color: var(--fgColor-muted, #888);
|
|
54
54
|
line-height: 1.3;
|
|
55
55
|
margin-top: 4px;
|
|
56
56
|
}
|
|
@@ -66,8 +66,8 @@
|
|
|
66
66
|
align-items: center;
|
|
67
67
|
gap: 6px;
|
|
68
68
|
padding: 8px 20px;
|
|
69
|
-
background: #1a1a1a;
|
|
70
|
-
color: #fff;
|
|
69
|
+
background: var(--bgColor-emphasis, #1a1a1a);
|
|
70
|
+
color: var(--fgColor-onEmphasis, #fff);
|
|
71
71
|
border: none;
|
|
72
72
|
border-radius: 8px;
|
|
73
73
|
font-size: 16px;
|
|
@@ -77,7 +77,7 @@
|
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
.createBtn:hover {
|
|
80
|
-
background: #333;
|
|
80
|
+
background: var(--bgColor-emphasis, #333);
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
/* Branch dropdown */
|
|
@@ -87,9 +87,9 @@
|
|
|
87
87
|
align-items: center;
|
|
88
88
|
gap: 6px;
|
|
89
89
|
padding: 7px 14px;
|
|
90
|
-
background: #fff;
|
|
91
|
-
color: #555;
|
|
92
|
-
border: 1px solid #e5e5e5;
|
|
90
|
+
background: var(--bgColor-default, #fff);
|
|
91
|
+
color: var(--fgColor-muted, #555);
|
|
92
|
+
border: 1px solid var(--borderColor-default, #e5e5e5);
|
|
93
93
|
border-radius: 8px;
|
|
94
94
|
font-size: 16px;
|
|
95
95
|
font-weight: 500;
|
|
@@ -99,8 +99,8 @@
|
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
.branchBtn:hover {
|
|
102
|
-
background: #f5f5f5;
|
|
103
|
-
border-color:
|
|
102
|
+
background: var(--bgColor-muted, #f5f5f5);
|
|
103
|
+
border-color: var(--borderColor-muted);
|
|
104
104
|
}
|
|
105
105
|
|
|
106
106
|
.branchBtnText {
|
|
@@ -115,8 +115,8 @@
|
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
.branchPopup {
|
|
118
|
-
background: #fff;
|
|
119
|
-
border: 1px solid #e5e5e5;
|
|
118
|
+
background: var(--bgColor-default, #fff);
|
|
119
|
+
border: 1px solid var(--borderColor-default, #e5e5e5);
|
|
120
120
|
border-radius: 10px;
|
|
121
121
|
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
|
|
122
122
|
min-width: 240px;
|
|
@@ -129,7 +129,7 @@
|
|
|
129
129
|
padding: 8px 14px 4px;
|
|
130
130
|
font-size: 14px;
|
|
131
131
|
font-weight: 600;
|
|
132
|
-
color: #999;
|
|
132
|
+
color: var(--fgColor-muted, #999);
|
|
133
133
|
text-transform: uppercase;
|
|
134
134
|
letter-spacing: 0.4px;
|
|
135
135
|
}
|
|
@@ -140,7 +140,7 @@
|
|
|
140
140
|
gap: 8px;
|
|
141
141
|
padding: 7px 14px;
|
|
142
142
|
font-size: 16px;
|
|
143
|
-
color: #555;
|
|
143
|
+
color: var(--fgColor-muted, #555);
|
|
144
144
|
cursor: pointer;
|
|
145
145
|
transition: background 0.1s;
|
|
146
146
|
border: none;
|
|
@@ -151,18 +151,18 @@
|
|
|
151
151
|
|
|
152
152
|
.branchItem:hover,
|
|
153
153
|
.branchItem[data-highlighted] {
|
|
154
|
-
background: #f5f5f5;
|
|
154
|
+
background: var(--bgColor-muted, #f5f5f5);
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
.branchItemActive {
|
|
158
158
|
composes: branchItem;
|
|
159
|
-
color: #1a1a1a;
|
|
159
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
160
160
|
font-weight: 600;
|
|
161
161
|
}
|
|
162
162
|
|
|
163
163
|
.branchSeparator {
|
|
164
164
|
height: 1px;
|
|
165
|
-
background: #e5e5e5;
|
|
165
|
+
background: var(--borderColor-default, #e5e5e5);
|
|
166
166
|
margin: 4px 10px;
|
|
167
167
|
}
|
|
168
168
|
|
|
@@ -176,7 +176,7 @@
|
|
|
176
176
|
width: 100%;
|
|
177
177
|
padding: 8px 14px;
|
|
178
178
|
font-size: 16px;
|
|
179
|
-
color: #2563eb;
|
|
179
|
+
color: var(--fgColor-accent, #2563eb);
|
|
180
180
|
background: none;
|
|
181
181
|
border: none;
|
|
182
182
|
cursor: pointer;
|
|
@@ -185,7 +185,7 @@
|
|
|
185
185
|
}
|
|
186
186
|
|
|
187
187
|
.branchShowAll:hover {
|
|
188
|
-
background: #f5f5f5;
|
|
188
|
+
background: var(--bgColor-muted, #f5f5f5);
|
|
189
189
|
}
|
|
190
190
|
|
|
191
191
|
/* ─── Body: sidebar + content ─── */
|
|
@@ -201,8 +201,8 @@
|
|
|
201
201
|
.sidebar {
|
|
202
202
|
width: 260px;
|
|
203
203
|
min-width: 220px;
|
|
204
|
-
background: #fff;
|
|
205
|
-
border-right: 1px solid #e5e5e5;
|
|
204
|
+
background: var(--bgColor-default, #fff);
|
|
205
|
+
border-right: 1px solid var(--borderColor-default, #e5e5e5);
|
|
206
206
|
display: flex;
|
|
207
207
|
flex-direction: column;
|
|
208
208
|
padding: 0;
|
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
border-radius: 6px;
|
|
229
229
|
font-size: 16px;
|
|
230
230
|
font-weight: 500;
|
|
231
|
-
color: #555;
|
|
231
|
+
color: var(--fgColor-muted, #555);
|
|
232
232
|
cursor: pointer;
|
|
233
233
|
border: none;
|
|
234
234
|
background: none;
|
|
@@ -238,13 +238,13 @@
|
|
|
238
238
|
}
|
|
239
239
|
|
|
240
240
|
.navItem:hover {
|
|
241
|
-
background: #f5f5f5;
|
|
241
|
+
background: var(--bgColor-muted, #f5f5f5);
|
|
242
242
|
}
|
|
243
243
|
|
|
244
244
|
.navItemActive {
|
|
245
245
|
composes: navItem;
|
|
246
|
-
background: #f0f0f0;
|
|
247
|
-
color: #1a1a1a;
|
|
246
|
+
background: var(--bgColor-neutral-muted, #f0f0f0);
|
|
247
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
248
248
|
font-weight: 600;
|
|
249
249
|
}
|
|
250
250
|
|
|
@@ -265,7 +265,7 @@
|
|
|
265
265
|
.navCount {
|
|
266
266
|
margin-left: auto;
|
|
267
267
|
font-size: 14px;
|
|
268
|
-
color:
|
|
268
|
+
color: var(--fgColor-muted);
|
|
269
269
|
font-weight: 500;
|
|
270
270
|
}
|
|
271
271
|
|
|
@@ -273,7 +273,7 @@
|
|
|
273
273
|
|
|
274
274
|
.separator {
|
|
275
275
|
height: 1px;
|
|
276
|
-
background: #e5e5e5;
|
|
276
|
+
background: var(--borderColor-default, #e5e5e5);
|
|
277
277
|
margin: 8px 16px;
|
|
278
278
|
}
|
|
279
279
|
|
|
@@ -281,9 +281,9 @@
|
|
|
281
281
|
|
|
282
282
|
.sectionLabel {
|
|
283
283
|
padding: 8px 20px 4px;
|
|
284
|
-
font-size:
|
|
284
|
+
font-size: 12px;
|
|
285
285
|
font-weight: 600;
|
|
286
|
-
color: #999;
|
|
286
|
+
color: var(--fgColor-muted, #999);
|
|
287
287
|
text-transform: uppercase;
|
|
288
288
|
letter-spacing: 0.5px;
|
|
289
289
|
}
|
|
@@ -294,7 +294,7 @@
|
|
|
294
294
|
gap: 8px;
|
|
295
295
|
padding: 6px 20px;
|
|
296
296
|
font-size: 16px;
|
|
297
|
-
color: #555;
|
|
297
|
+
color: var(--fgColor-muted, #555);
|
|
298
298
|
cursor: pointer;
|
|
299
299
|
transition: background 0.1s;
|
|
300
300
|
text-decoration: none;
|
|
@@ -302,18 +302,18 @@
|
|
|
302
302
|
|
|
303
303
|
.starredItem:link,
|
|
304
304
|
.starredItem:visited {
|
|
305
|
-
color: #555;
|
|
305
|
+
color: var(--fgColor-muted, #555);
|
|
306
306
|
text-decoration: none;
|
|
307
307
|
}
|
|
308
308
|
|
|
309
309
|
.starredItem:hover {
|
|
310
|
-
background: #f5f5f5;
|
|
310
|
+
background: var(--bgColor-muted, #f5f5f5);
|
|
311
311
|
}
|
|
312
312
|
|
|
313
313
|
.starredEmpty {
|
|
314
314
|
padding: 6px 20px;
|
|
315
315
|
font-size: 14px;
|
|
316
|
-
color:
|
|
316
|
+
color: var(--fgColor-muted);
|
|
317
317
|
font-style: italic;
|
|
318
318
|
}
|
|
319
319
|
|
|
@@ -331,7 +331,7 @@
|
|
|
331
331
|
|
|
332
332
|
.sidebarFooter {
|
|
333
333
|
flex-shrink: 0;
|
|
334
|
-
border-top: 1px solid #e5e5e5;
|
|
334
|
+
border-top: 1px solid var(--borderColor-default, #e5e5e5);
|
|
335
335
|
padding: 12px;
|
|
336
336
|
}
|
|
337
337
|
|
|
@@ -339,24 +339,24 @@
|
|
|
339
339
|
width: 32px;
|
|
340
340
|
height: 32px;
|
|
341
341
|
border-radius: 50%;
|
|
342
|
-
background: #f0f0f0;
|
|
342
|
+
background: var(--bgColor-neutral-muted, #f0f0f0);
|
|
343
343
|
display: flex;
|
|
344
344
|
align-items: center;
|
|
345
345
|
justify-content: center;
|
|
346
346
|
font-size: 16px;
|
|
347
|
-
color: #888;
|
|
347
|
+
color: var(--fgColor-muted, #888);
|
|
348
348
|
flex-shrink: 0;
|
|
349
349
|
}
|
|
350
350
|
|
|
351
351
|
.userName {
|
|
352
352
|
font-size: 16px;
|
|
353
353
|
font-weight: 500;
|
|
354
|
-
color: #1a1a1a;
|
|
354
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
355
355
|
}
|
|
356
356
|
|
|
357
357
|
.userSub {
|
|
358
358
|
font-size: 14px;
|
|
359
|
-
color: #999;
|
|
359
|
+
color: var(--fgColor-muted, #999);
|
|
360
360
|
}
|
|
361
361
|
|
|
362
362
|
.loginBtn {
|
|
@@ -366,18 +366,18 @@
|
|
|
366
366
|
width: 100%;
|
|
367
367
|
padding: 8px 10px;
|
|
368
368
|
background: none;
|
|
369
|
-
border: 1px solid #e5e5e5;
|
|
369
|
+
border: 1px solid var(--borderColor-default, #e5e5e5);
|
|
370
370
|
border-radius: 8px;
|
|
371
371
|
font-size: 16px;
|
|
372
|
-
color: #555;
|
|
372
|
+
color: var(--fgColor-muted, #555);
|
|
373
373
|
cursor: pointer;
|
|
374
374
|
transition: all 0.15s;
|
|
375
375
|
text-align: left;
|
|
376
376
|
}
|
|
377
377
|
|
|
378
378
|
.loginBtn:hover {
|
|
379
|
-
background: #f5f5f5;
|
|
380
|
-
border-color:
|
|
379
|
+
background: var(--bgColor-muted, #f5f5f5);
|
|
380
|
+
border-color: var(--borderColor-muted);
|
|
381
381
|
}
|
|
382
382
|
|
|
383
383
|
/* ─── Main Content ─── */
|
|
@@ -396,15 +396,15 @@
|
|
|
396
396
|
align-items: center;
|
|
397
397
|
gap: 0;
|
|
398
398
|
padding: 0 32px;
|
|
399
|
-
background: #fff;
|
|
400
|
-
border-bottom: 1px solid #e5e5e5;
|
|
399
|
+
background: var(--bgColor-default, #fff);
|
|
400
|
+
border-bottom: 1px solid var(--borderColor-default, #e5e5e5);
|
|
401
401
|
}
|
|
402
402
|
|
|
403
403
|
.tab {
|
|
404
404
|
padding: 11px 16px;
|
|
405
405
|
font-size: 16px;
|
|
406
406
|
font-weight: 500;
|
|
407
|
-
color: #888;
|
|
407
|
+
color: var(--fgColor-muted, #888);
|
|
408
408
|
border: none;
|
|
409
409
|
background: none;
|
|
410
410
|
cursor: pointer;
|
|
@@ -413,13 +413,13 @@
|
|
|
413
413
|
}
|
|
414
414
|
|
|
415
415
|
.tab:hover {
|
|
416
|
-
color: #1a1a1a;
|
|
416
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
417
417
|
}
|
|
418
418
|
|
|
419
419
|
.tabActive {
|
|
420
420
|
composes: tab;
|
|
421
|
-
color: #1a1a1a;
|
|
422
|
-
border-bottom-color: #1a1a1a;
|
|
421
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
422
|
+
border-bottom-color: var(--fgColor-default, #1a1a1a);
|
|
423
423
|
font-weight: 600;
|
|
424
424
|
}
|
|
425
425
|
|
|
@@ -440,14 +440,14 @@
|
|
|
440
440
|
padding: 48px 0;
|
|
441
441
|
text-align: center;
|
|
442
442
|
font-size: 16px;
|
|
443
|
-
color: #999;
|
|
443
|
+
color: var(--fgColor-muted, #999);
|
|
444
444
|
}
|
|
445
445
|
|
|
446
446
|
/* Card */
|
|
447
447
|
|
|
448
448
|
.card {
|
|
449
|
-
background: #fff;
|
|
450
|
-
border: 1px solid #e5e5e5;
|
|
449
|
+
background: var(--bgColor-default, #fff);
|
|
450
|
+
border: 1px solid var(--borderColor-default, #e5e5e5);
|
|
451
451
|
border-radius: 10px;
|
|
452
452
|
overflow: hidden;
|
|
453
453
|
cursor: pointer;
|
|
@@ -458,7 +458,7 @@
|
|
|
458
458
|
}
|
|
459
459
|
|
|
460
460
|
.card:hover {
|
|
461
|
-
border-color:
|
|
461
|
+
border-color: var(--borderColor-muted, rgba(128, 128, 128, 0.3));
|
|
462
462
|
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
|
|
463
463
|
text-decoration: none !important;
|
|
464
464
|
}
|
|
@@ -473,7 +473,7 @@
|
|
|
473
473
|
|
|
474
474
|
.cardThumb {
|
|
475
475
|
height: 140px;
|
|
476
|
-
background: #f5f5f5;
|
|
476
|
+
background: var(--bgColor-muted, #f5f5f5);
|
|
477
477
|
display: flex;
|
|
478
478
|
align-items: flex-start;
|
|
479
479
|
justify-content: space-between;
|
|
@@ -489,7 +489,7 @@
|
|
|
489
489
|
text-transform: uppercase;
|
|
490
490
|
letter-spacing: 0.3px;
|
|
491
491
|
background: rgba(0,0,0,0.06);
|
|
492
|
-
color: #555;
|
|
492
|
+
color: var(--fgColor-muted, #555);
|
|
493
493
|
}
|
|
494
494
|
|
|
495
495
|
/* Icon buttons (star, flows, etc.) */
|
|
@@ -504,23 +504,23 @@
|
|
|
504
504
|
border: none;
|
|
505
505
|
background: none;
|
|
506
506
|
cursor: pointer;
|
|
507
|
-
color:
|
|
507
|
+
color: var(--fgColor-muted);
|
|
508
508
|
transition: all 0.15s;
|
|
509
509
|
}
|
|
510
510
|
|
|
511
511
|
.iconBtn:hover {
|
|
512
512
|
background: rgba(0, 0, 0, 0.06);
|
|
513
|
-
color: #555;
|
|
513
|
+
color: var(--fgColor-muted, #555);
|
|
514
514
|
}
|
|
515
515
|
|
|
516
516
|
.iconBtnActive {
|
|
517
517
|
composes: iconBtn;
|
|
518
|
-
color: #f59e0b;
|
|
518
|
+
color: var(--fgColor-attention, #f59e0b);
|
|
519
519
|
}
|
|
520
520
|
|
|
521
521
|
.iconBtnActive:hover {
|
|
522
522
|
background: rgba(0, 0, 0, 0.06);
|
|
523
|
-
color: #d97706;
|
|
523
|
+
color: var(--fgColor-attention, #d97706);
|
|
524
524
|
}
|
|
525
525
|
|
|
526
526
|
.cardActions {
|
|
@@ -544,7 +544,7 @@
|
|
|
544
544
|
.cardTitle {
|
|
545
545
|
font-size: 16px;
|
|
546
546
|
font-weight: 600;
|
|
547
|
-
color: #1a1a1a;
|
|
547
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
548
548
|
margin-bottom: 4px;
|
|
549
549
|
white-space: nowrap;
|
|
550
550
|
overflow: hidden;
|
|
@@ -557,7 +557,7 @@
|
|
|
557
557
|
align-items: center;
|
|
558
558
|
gap: 6px;
|
|
559
559
|
font-size: 14px;
|
|
560
|
-
color:
|
|
560
|
+
color: var(--fgColor-muted);
|
|
561
561
|
text-decoration: none;
|
|
562
562
|
}
|
|
563
563
|
|
|
@@ -565,7 +565,7 @@
|
|
|
565
565
|
width: 3px;
|
|
566
566
|
height: 3px;
|
|
567
567
|
border-radius: 50%;
|
|
568
|
-
background: #d1d5db;
|
|
568
|
+
background: var(--borderColor-muted, #d1d5db);
|
|
569
569
|
}
|
|
570
570
|
|
|
571
571
|
/* Folder card */
|
|
@@ -576,11 +576,11 @@
|
|
|
576
576
|
|
|
577
577
|
.folderThumb {
|
|
578
578
|
height: 140px;
|
|
579
|
-
background: #f0f4ff;
|
|
579
|
+
background: var(--bgColor-accent-muted, #f0f4ff);
|
|
580
580
|
display: flex;
|
|
581
581
|
align-items: center;
|
|
582
582
|
justify-content: center;
|
|
583
|
-
color: #54aeff;
|
|
583
|
+
color: var(--fgColor-accent, #54aeff);
|
|
584
584
|
}
|
|
585
585
|
|
|
586
586
|
/* External badge */
|
|
@@ -591,7 +591,7 @@
|
|
|
591
591
|
gap: 3px;
|
|
592
592
|
margin-left: 6px;
|
|
593
593
|
font-size: 12px;
|
|
594
|
-
color: #999;
|
|
594
|
+
color: var(--fgColor-muted, #999);
|
|
595
595
|
font-weight: 500;
|
|
596
596
|
}
|
|
597
597
|
|
|
@@ -608,7 +608,7 @@
|
|
|
608
608
|
}
|
|
609
609
|
|
|
610
610
|
.createMenu {
|
|
611
|
-
background: #fff;
|
|
611
|
+
background: var(--bgColor-default, #fff);
|
|
612
612
|
border-radius: 12px;
|
|
613
613
|
box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
|
|
614
614
|
padding: 24px;
|
|
@@ -620,7 +620,7 @@
|
|
|
620
620
|
font-size: 18px;
|
|
621
621
|
font-weight: 600;
|
|
622
622
|
margin-bottom: 16px;
|
|
623
|
-
color: #1a1a1a;
|
|
623
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
624
624
|
}
|
|
625
625
|
|
|
626
626
|
.createMenuGrid {
|
|
@@ -634,17 +634,17 @@
|
|
|
634
634
|
align-items: center;
|
|
635
635
|
gap: 12px;
|
|
636
636
|
padding: 12px 14px;
|
|
637
|
-
border: 1px solid #e5e5e5;
|
|
637
|
+
border: 1px solid var(--borderColor-default, #e5e5e5);
|
|
638
638
|
border-radius: 8px;
|
|
639
|
-
background: #fff;
|
|
639
|
+
background: var(--bgColor-default, #fff);
|
|
640
640
|
cursor: pointer;
|
|
641
641
|
transition: all 0.15s;
|
|
642
642
|
text-align: left;
|
|
643
643
|
}
|
|
644
644
|
|
|
645
645
|
.createMenuItem:hover {
|
|
646
|
-
border-color:
|
|
647
|
-
background: #fafafa;
|
|
646
|
+
border-color: var(--borderColor-muted);
|
|
647
|
+
background: var(--bgColor-inset, #fafafa);
|
|
648
648
|
}
|
|
649
649
|
|
|
650
650
|
.createMenuIcon {
|
|
@@ -656,19 +656,19 @@
|
|
|
656
656
|
justify-content: center;
|
|
657
657
|
font-size: 24px;
|
|
658
658
|
flex-shrink: 0;
|
|
659
|
-
background: #f0f0f0;
|
|
660
|
-
color: #1a1a1a;
|
|
659
|
+
background: var(--bgColor-neutral-muted, #f0f0f0);
|
|
660
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
661
661
|
}
|
|
662
662
|
|
|
663
663
|
.createMenuItemTitle {
|
|
664
664
|
font-size: 16px;
|
|
665
665
|
font-weight: 600;
|
|
666
|
-
color: #1a1a1a;
|
|
666
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
667
667
|
}
|
|
668
668
|
|
|
669
669
|
.createMenuItemDesc {
|
|
670
670
|
font-size: 14px;
|
|
671
|
-
color: #999;
|
|
671
|
+
color: var(--fgColor-muted, #999);
|
|
672
672
|
}
|
|
673
673
|
|
|
674
674
|
/* Create form styles */
|
|
@@ -687,7 +687,7 @@
|
|
|
687
687
|
.createFormInput {
|
|
688
688
|
width: 100%;
|
|
689
689
|
padding: 8px 12px;
|
|
690
|
-
border: 1px solid #e5e5e5;
|
|
690
|
+
border: 1px solid var(--borderColor-default, #e5e5e5);
|
|
691
691
|
border-radius: 6px;
|
|
692
692
|
font-size: 16px;
|
|
693
693
|
box-sizing: border-box;
|
|
@@ -695,7 +695,7 @@
|
|
|
695
695
|
|
|
696
696
|
.createFormInput:focus {
|
|
697
697
|
outline: none;
|
|
698
|
-
border-color: #999;
|
|
698
|
+
border-color: var(--fgColor-muted, #999);
|
|
699
699
|
}
|
|
700
700
|
|
|
701
701
|
.createFormCheckbox {
|
|
@@ -718,7 +718,7 @@
|
|
|
718
718
|
gap: 4px;
|
|
719
719
|
background: none;
|
|
720
720
|
border: none;
|
|
721
|
-
color: #888;
|
|
721
|
+
color: var(--fgColor-muted, #888);
|
|
722
722
|
font-size: 16px;
|
|
723
723
|
cursor: pointer;
|
|
724
724
|
padding: 0;
|
|
@@ -726,7 +726,7 @@
|
|
|
726
726
|
}
|
|
727
727
|
|
|
728
728
|
.createFormBack:hover {
|
|
729
|
-
color: #1a1a1a;
|
|
729
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
730
730
|
}
|
|
731
731
|
|
|
732
732
|
.createFooter {
|
|
@@ -735,176 +735,36 @@
|
|
|
735
735
|
gap: 8px;
|
|
736
736
|
margin-top: 16px;
|
|
737
737
|
padding-top: 12px;
|
|
738
|
-
border-top: 1px solid #e5e5e5;
|
|
738
|
+
border-top: 1px solid var(--borderColor-default, #e5e5e5);
|
|
739
739
|
}
|
|
740
740
|
|
|
741
741
|
.createFooterDot {
|
|
742
742
|
width: 8px;
|
|
743
743
|
height: 8px;
|
|
744
744
|
border-radius: 50%;
|
|
745
|
-
background: #2563eb;
|
|
745
|
+
background: var(--fgColor-accent, #2563eb);
|
|
746
746
|
flex-shrink: 0;
|
|
747
747
|
}
|
|
748
748
|
|
|
749
749
|
.createFooterText {
|
|
750
750
|
font-size: 14px;
|
|
751
|
-
color: #999;
|
|
751
|
+
color: var(--fgColor-muted, #999);
|
|
752
752
|
}
|
|
753
753
|
|
|
754
754
|
.createFormError {
|
|
755
755
|
font-size: 14px;
|
|
756
|
-
color: #dc2626;
|
|
756
|
+
color: var(--fgColor-danger, #dc2626);
|
|
757
757
|
margin-top: 8px;
|
|
758
758
|
}
|
|
759
759
|
|
|
760
760
|
/* Muted thumbnail colors */
|
|
761
|
-
.thumbBlue { background: #f0f4f8; }
|
|
762
|
-
.thumbAmber { background: #faf5ee; }
|
|
763
|
-
.thumbGreen { background: #f0f7f4; }
|
|
764
|
-
.thumbPurple { background: #f5f0fa; }
|
|
765
|
-
.thumbRose { background: #faf0f2; }
|
|
766
|
-
.thumbSlate { background: #f3f4f6; }
|
|
767
|
-
|
|
768
|
-
/* Group by folders checkbox */
|
|
769
|
-
|
|
770
|
-
.groupByFolders {
|
|
771
|
-
display: flex;
|
|
772
|
-
align-items: center;
|
|
773
|
-
gap: 6px;
|
|
774
|
-
margin-left: auto;
|
|
775
|
-
font-size: 16px;
|
|
776
|
-
color: #555;
|
|
777
|
-
cursor: pointer;
|
|
778
|
-
padding: 0 4px;
|
|
779
|
-
white-space: nowrap;
|
|
780
|
-
user-select: none;
|
|
781
|
-
}
|
|
782
|
-
|
|
783
|
-
.groupByFoldersCheckbox {
|
|
784
|
-
accent-color: #1a1a1a;
|
|
785
|
-
cursor: pointer;
|
|
786
|
-
}
|
|
787
|
-
|
|
788
|
-
/* Folder sections */
|
|
789
|
-
|
|
790
|
-
.folderSection {
|
|
791
|
-
margin-top: 24px;
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
.folderSection:first-child {
|
|
795
|
-
margin-top: 0;
|
|
796
|
-
}
|
|
797
|
-
|
|
798
|
-
.folderHeader {
|
|
799
|
-
display: flex;
|
|
800
|
-
align-items: center;
|
|
801
|
-
gap: 8px;
|
|
802
|
-
padding: 8px 0;
|
|
803
|
-
margin-bottom: 35px;
|
|
804
|
-
border: none;
|
|
805
|
-
background: none;
|
|
806
|
-
cursor: pointer;
|
|
807
|
-
font-size: 16px;
|
|
808
|
-
font-weight: 600;
|
|
809
|
-
color: #1a1a1a;
|
|
810
|
-
width: 100%;
|
|
811
|
-
text-align: left;
|
|
812
|
-
}
|
|
813
|
-
|
|
814
|
-
.folderHeader:hover {
|
|
815
|
-
color: #555;
|
|
816
|
-
}
|
|
817
|
-
|
|
818
|
-
.folderIcon {
|
|
819
|
-
color: #1a1a1a;
|
|
820
|
-
flex-shrink: 0;
|
|
821
|
-
}
|
|
822
|
-
|
|
823
|
-
.folderName {
|
|
824
|
-
flex: 1;
|
|
825
|
-
}
|
|
826
|
-
|
|
827
|
-
.folderCount {
|
|
828
|
-
font-size: 14px;
|
|
829
|
-
font-weight: 400;
|
|
830
|
-
color: #999;
|
|
831
|
-
}
|
|
832
|
-
|
|
833
|
-
.folderChevron {
|
|
834
|
-
color: #999;
|
|
835
|
-
transition: transform 0.2s;
|
|
836
|
-
}
|
|
837
|
-
|
|
838
|
-
.folderChevronExpanded {
|
|
839
|
-
composes: folderChevron;
|
|
840
|
-
transform: rotate(90deg);
|
|
841
|
-
}
|
|
842
|
-
|
|
843
|
-
/* Flows dropdown */
|
|
844
|
-
|
|
845
|
-
.flowsBtn {
|
|
846
|
-
display: flex;
|
|
847
|
-
align-items: center;
|
|
848
|
-
justify-content: center;
|
|
849
|
-
width: 24px;
|
|
850
|
-
height: 24px;
|
|
851
|
-
border-radius: 4px;
|
|
852
|
-
border: none;
|
|
853
|
-
background: none;
|
|
854
|
-
cursor: pointer;
|
|
855
|
-
color: #ccc;
|
|
856
|
-
flex-shrink: 0;
|
|
857
|
-
transition: all 0.15s;
|
|
858
|
-
margin-top: 1px;
|
|
859
|
-
}
|
|
860
|
-
|
|
861
|
-
.flowsBtn:hover {
|
|
862
|
-
background: #f0f0f0;
|
|
863
|
-
color: #555;
|
|
864
|
-
}
|
|
865
|
-
|
|
866
|
-
.flowsPositioner {
|
|
867
|
-
z-index: 200;
|
|
868
|
-
}
|
|
869
|
-
|
|
870
|
-
.flowsPopup {
|
|
871
|
-
background: #fff;
|
|
872
|
-
border: 1px solid #e5e5e5;
|
|
873
|
-
border-radius: 8px;
|
|
874
|
-
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
|
|
875
|
-
min-width: 160px;
|
|
876
|
-
padding: 4px 0;
|
|
877
|
-
font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
878
|
-
}
|
|
761
|
+
.thumbBlue { background: var(--bgColor-accent-muted, #f0f4f8); }
|
|
762
|
+
.thumbAmber { background: var(--bgColor-attention-muted, #faf5ee); }
|
|
763
|
+
.thumbGreen { background: var(--bgColor-success-muted, #f0f7f4); }
|
|
764
|
+
.thumbPurple { background: var(--bgColor-done-muted, #f5f0fa); }
|
|
765
|
+
.thumbRose { background: var(--bgColor-danger-muted, #faf0f2); }
|
|
766
|
+
.thumbSlate { background: var(--bgColor-neutral-muted, #f3f4f6); }
|
|
879
767
|
|
|
880
|
-
.flowsTitle {
|
|
881
|
-
padding: 6px 12px 4px;
|
|
882
|
-
font-size: 14px;
|
|
883
|
-
font-weight: 600;
|
|
884
|
-
color: #999;
|
|
885
|
-
text-transform: uppercase;
|
|
886
|
-
letter-spacing: 0.4px;
|
|
887
|
-
}
|
|
888
|
-
|
|
889
|
-
.flowsItem {
|
|
890
|
-
display: block;
|
|
891
|
-
width: 100%;
|
|
892
|
-
padding: 6px 12px;
|
|
893
|
-
font-size: 16px;
|
|
894
|
-
color: #555;
|
|
895
|
-
cursor: pointer;
|
|
896
|
-
border: none;
|
|
897
|
-
background: none;
|
|
898
|
-
text-align: left;
|
|
899
|
-
transition: background 0.1s;
|
|
900
|
-
text-decoration: none;
|
|
901
|
-
}
|
|
902
|
-
|
|
903
|
-
.flowsItem:hover,
|
|
904
|
-
.flowsItem[data-highlighted] {
|
|
905
|
-
background: #f5f5f5;
|
|
906
|
-
color: #1a1a1a;
|
|
907
|
-
}
|
|
908
768
|
|
|
909
769
|
/* Group by folders checkbox */
|
|
910
770
|
|
|
@@ -913,311 +773,8 @@
|
|
|
913
773
|
align-items: center;
|
|
914
774
|
gap: 6px;
|
|
915
775
|
margin-left: auto;
|
|
916
|
-
font-size: 16px;
|
|
917
|
-
color: #555;
|
|
918
|
-
cursor: pointer;
|
|
919
|
-
padding: 0 4px;
|
|
920
|
-
white-space: nowrap;
|
|
921
|
-
user-select: none;
|
|
922
|
-
}
|
|
923
|
-
|
|
924
|
-
.groupByFoldersCheckbox {
|
|
925
|
-
accent-color: #1a1a1a;
|
|
926
|
-
cursor: pointer;
|
|
927
|
-
}
|
|
928
|
-
|
|
929
|
-
/* Folder sections */
|
|
930
|
-
|
|
931
|
-
.folderSection {
|
|
932
|
-
margin-top: 24px;
|
|
933
|
-
}
|
|
934
|
-
|
|
935
|
-
.folderSection:first-child {
|
|
936
|
-
margin-top: 0;
|
|
937
|
-
}
|
|
938
|
-
|
|
939
|
-
.folderHeader {
|
|
940
|
-
display: flex;
|
|
941
|
-
align-items: center;
|
|
942
|
-
gap: 8px;
|
|
943
|
-
padding: 8px 0;
|
|
944
|
-
margin-bottom: 12px;
|
|
945
|
-
border: none;
|
|
946
|
-
background: none;
|
|
947
|
-
cursor: pointer;
|
|
948
|
-
font-size: 16px;
|
|
949
|
-
font-weight: 600;
|
|
950
|
-
color: #1a1a1a;
|
|
951
|
-
width: 100%;
|
|
952
|
-
text-align: left;
|
|
953
|
-
}
|
|
954
|
-
|
|
955
|
-
.folderHeader:hover {
|
|
956
|
-
color: #555;
|
|
957
|
-
}
|
|
958
|
-
|
|
959
|
-
.folderIcon {
|
|
960
|
-
color: #1a1a1a;
|
|
961
|
-
flex-shrink: 0;
|
|
962
|
-
}
|
|
963
|
-
|
|
964
|
-
.folderName {
|
|
965
|
-
flex: 1;
|
|
966
|
-
}
|
|
967
|
-
|
|
968
|
-
.folderCount {
|
|
969
776
|
font-size: 14px;
|
|
970
|
-
|
|
971
|
-
color: #999;
|
|
972
|
-
}
|
|
973
|
-
|
|
974
|
-
.folderChevron {
|
|
975
|
-
color: #999;
|
|
976
|
-
transition: transform 0.2s;
|
|
977
|
-
}
|
|
978
|
-
|
|
979
|
-
.folderChevronExpanded {
|
|
980
|
-
composes: folderChevron;
|
|
981
|
-
transform: rotate(90deg);
|
|
982
|
-
}
|
|
983
|
-
|
|
984
|
-
/* Flows dropdown */
|
|
985
|
-
|
|
986
|
-
.flowsBtn {
|
|
987
|
-
display: flex;
|
|
988
|
-
align-items: center;
|
|
989
|
-
justify-content: center;
|
|
990
|
-
width: 24px;
|
|
991
|
-
height: 24px;
|
|
992
|
-
border-radius: 4px;
|
|
993
|
-
border: none;
|
|
994
|
-
background: none;
|
|
995
|
-
cursor: pointer;
|
|
996
|
-
color: #ccc;
|
|
997
|
-
flex-shrink: 0;
|
|
998
|
-
transition: all 0.15s;
|
|
999
|
-
margin-top: 1px;
|
|
1000
|
-
}
|
|
1001
|
-
|
|
1002
|
-
.flowsBtn:hover {
|
|
1003
|
-
background: #f0f0f0;
|
|
1004
|
-
color: #555;
|
|
1005
|
-
}
|
|
1006
|
-
|
|
1007
|
-
.flowsPositioner {
|
|
1008
|
-
z-index: 200;
|
|
1009
|
-
}
|
|
1010
|
-
|
|
1011
|
-
.flowsPopup {
|
|
1012
|
-
background: #fff;
|
|
1013
|
-
border: 1px solid #e5e5e5;
|
|
1014
|
-
border-radius: 8px;
|
|
1015
|
-
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
|
|
1016
|
-
min-width: 160px;
|
|
1017
|
-
padding: 4px 0;
|
|
1018
|
-
font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
1019
|
-
}
|
|
1020
|
-
|
|
1021
|
-
.flowsTitle {
|
|
1022
|
-
padding: 6px 12px 4px;
|
|
1023
|
-
font-size: 14px;
|
|
1024
|
-
font-weight: 600;
|
|
1025
|
-
color: #999;
|
|
1026
|
-
text-transform: uppercase;
|
|
1027
|
-
letter-spacing: 0.4px;
|
|
1028
|
-
}
|
|
1029
|
-
|
|
1030
|
-
.flowsItem {
|
|
1031
|
-
display: block;
|
|
1032
|
-
width: 100%;
|
|
1033
|
-
padding: 6px 12px;
|
|
1034
|
-
font-size: 16px;
|
|
1035
|
-
color: #555;
|
|
1036
|
-
cursor: pointer;
|
|
1037
|
-
border: none;
|
|
1038
|
-
background: none;
|
|
1039
|
-
text-align: left;
|
|
1040
|
-
transition: background 0.1s;
|
|
1041
|
-
text-decoration: none;
|
|
1042
|
-
}
|
|
1043
|
-
|
|
1044
|
-
.flowsItem:hover,
|
|
1045
|
-
.flowsItem[data-highlighted] {
|
|
1046
|
-
background: #f5f5f5;
|
|
1047
|
-
color: #1a1a1a;
|
|
1048
|
-
}
|
|
1049
|
-
|
|
1050
|
-
/* Avatar stack */
|
|
1051
|
-
|
|
1052
|
-
.avatarStack {
|
|
1053
|
-
display: flex;
|
|
1054
|
-
flex-direction: row-reverse;
|
|
1055
|
-
justify-content: flex-end;
|
|
1056
|
-
}
|
|
1057
|
-
|
|
1058
|
-
.avatarStack > .avatarImg + .avatarImg {
|
|
1059
|
-
margin-right: -8px;
|
|
1060
|
-
}
|
|
1061
|
-
|
|
1062
|
-
.avatarImg {
|
|
1063
|
-
width: 24px;
|
|
1064
|
-
height: 24px;
|
|
1065
|
-
border-radius: 50%;
|
|
1066
|
-
border: 2px solid #fff;
|
|
1067
|
-
object-fit: cover;
|
|
1068
|
-
flex-shrink: 0;
|
|
1069
|
-
}
|
|
1070
|
-
|
|
1071
|
-
/* Text-only card header */
|
|
1072
|
-
|
|
1073
|
-
.cardHeader {
|
|
1074
|
-
display: flex;
|
|
1075
|
-
align-items: center;
|
|
1076
|
-
justify-content: space-between;
|
|
1077
|
-
padding: 12px 14px 0;
|
|
1078
|
-
}
|
|
1079
|
-
|
|
1080
|
-
.cardDescription {
|
|
1081
|
-
font-size: 14px;
|
|
1082
|
-
color: #666;
|
|
1083
|
-
line-height: 1.5;
|
|
1084
|
-
display: -webkit-box;
|
|
1085
|
-
-webkit-line-clamp: 2;
|
|
1086
|
-
-webkit-box-orient: vertical;
|
|
1087
|
-
overflow: hidden;
|
|
1088
|
-
margin-top: 4px;
|
|
1089
|
-
}
|
|
1090
|
-
|
|
1091
|
-
.cardFooter {
|
|
1092
|
-
display: flex;
|
|
1093
|
-
align-items: center;
|
|
1094
|
-
gap: 8px;
|
|
1095
|
-
margin-top: 8px;
|
|
1096
|
-
}
|
|
1097
|
-
|
|
1098
|
-
/* Create dropdown (replaces modal) */
|
|
1099
|
-
|
|
1100
|
-
.createDropdownPositioner {
|
|
1101
|
-
z-index: 200;
|
|
1102
|
-
}
|
|
1103
|
-
|
|
1104
|
-
.createDropdown {
|
|
1105
|
-
background: #fff;
|
|
1106
|
-
border: 1px solid #e5e5e5;
|
|
1107
|
-
border-radius: 12px;
|
|
1108
|
-
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
|
|
1109
|
-
padding: 16px;
|
|
1110
|
-
width: 360px;
|
|
1111
|
-
max-width: 90vw;
|
|
1112
|
-
font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, sans-serif;
|
|
1113
|
-
}
|
|
1114
|
-
|
|
1115
|
-
.createDropdownTitle {
|
|
1116
|
-
font-size: 16px;
|
|
1117
|
-
font-weight: 600;
|
|
1118
|
-
margin-bottom: 12px;
|
|
1119
|
-
color: #1a1a1a;
|
|
1120
|
-
}
|
|
1121
|
-
|
|
1122
|
-
.createDropdownGrid {
|
|
1123
|
-
display: flex;
|
|
1124
|
-
flex-direction: column;
|
|
1125
|
-
gap: 6px;
|
|
1126
|
-
}
|
|
1127
|
-
|
|
1128
|
-
.createDropdownForm {
|
|
1129
|
-
/* Wrapper for inline form inside dropdown */
|
|
1130
|
-
}
|
|
1131
|
-
|
|
1132
|
-
/* More options */
|
|
1133
|
-
|
|
1134
|
-
.moreOptionsBtn {
|
|
1135
|
-
display: flex;
|
|
1136
|
-
align-items: center;
|
|
1137
|
-
gap: 4px;
|
|
1138
|
-
background: none;
|
|
1139
|
-
border: none;
|
|
1140
|
-
color: #666;
|
|
1141
|
-
font-size: 14px;
|
|
1142
|
-
font-weight: 500;
|
|
1143
|
-
cursor: pointer;
|
|
1144
|
-
padding: 8px 0 4px;
|
|
1145
|
-
margin-top: 8px;
|
|
1146
|
-
transition: color 0.15s;
|
|
1147
|
-
}
|
|
1148
|
-
|
|
1149
|
-
.moreOptionsBtn:hover {
|
|
1150
|
-
color: #1a1a1a;
|
|
1151
|
-
}
|
|
1152
|
-
|
|
1153
|
-
.moreOptionsSection {
|
|
1154
|
-
margin-top: 8px;
|
|
1155
|
-
display: flex;
|
|
1156
|
-
flex-direction: column;
|
|
1157
|
-
gap: 4px;
|
|
1158
|
-
padding-top: 8px;
|
|
1159
|
-
border-top: 1px solid #eee;
|
|
1160
|
-
}
|
|
1161
|
-
|
|
1162
|
-
.moreOptionItem {
|
|
1163
|
-
display: block;
|
|
1164
|
-
width: 100%;
|
|
1165
|
-
padding: 8px 10px;
|
|
1166
|
-
border: none;
|
|
1167
|
-
background: none;
|
|
1168
|
-
border-radius: 6px;
|
|
1169
|
-
cursor: pointer;
|
|
1170
|
-
text-align: left;
|
|
1171
|
-
transition: background 0.1s;
|
|
1172
|
-
}
|
|
1173
|
-
|
|
1174
|
-
.moreOptionItem:hover {
|
|
1175
|
-
background: #f5f5f5;
|
|
1176
|
-
}
|
|
1177
|
-
|
|
1178
|
-
.moreOptionTitle {
|
|
1179
|
-
font-size: 14px;
|
|
1180
|
-
font-weight: 600;
|
|
1181
|
-
color: #1a1a1a;
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
|
-
.moreOptionDesc {
|
|
1185
|
-
font-size: 14px;
|
|
1186
|
-
color: #999;
|
|
1187
|
-
}
|
|
1188
|
-
|
|
1189
|
-
/* Create tip */
|
|
1190
|
-
|
|
1191
|
-
.createTip {
|
|
1192
|
-
margin-top: 12px;
|
|
1193
|
-
padding-top: 10px;
|
|
1194
|
-
border-top: 1px solid #eee;
|
|
1195
|
-
}
|
|
1196
|
-
|
|
1197
|
-
.createTipText {
|
|
1198
|
-
font-size: 14px;
|
|
1199
|
-
color: #999;
|
|
1200
|
-
line-height: 1.5;
|
|
1201
|
-
}
|
|
1202
|
-
|
|
1203
|
-
.createTipCode {
|
|
1204
|
-
font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
|
|
1205
|
-
font-size: 12px;
|
|
1206
|
-
background: #f0f0f0;
|
|
1207
|
-
padding: 1px 5px;
|
|
1208
|
-
border-radius: 3px;
|
|
1209
|
-
color: #555;
|
|
1210
|
-
}
|
|
1211
|
-
|
|
1212
|
-
/* Group by folders checkbox */
|
|
1213
|
-
|
|
1214
|
-
.groupByFolders {
|
|
1215
|
-
display: flex;
|
|
1216
|
-
align-items: center;
|
|
1217
|
-
gap: 6px;
|
|
1218
|
-
margin-left: auto;
|
|
1219
|
-
font-size: 14px;
|
|
1220
|
-
color: #555;
|
|
777
|
+
color: var(--fgColor-muted, #555);
|
|
1221
778
|
cursor: pointer;
|
|
1222
779
|
padding: 0 4px;
|
|
1223
780
|
white-space: nowrap;
|
|
@@ -1225,16 +782,17 @@
|
|
|
1225
782
|
}
|
|
1226
783
|
|
|
1227
784
|
.groupByFoldersCheckbox {
|
|
1228
|
-
accent-color: #1a1a1a;
|
|
785
|
+
accent-color: var(--fgColor-default, #1a1a1a);
|
|
1229
786
|
cursor: pointer;
|
|
1230
787
|
}
|
|
1231
788
|
|
|
1232
789
|
/* Folder sections */
|
|
1233
790
|
|
|
1234
791
|
.folderSection {
|
|
792
|
+
margin-top: 24px;
|
|
1235
793
|
padding-bottom: 24px;
|
|
1236
794
|
margin-bottom: 24px;
|
|
1237
|
-
border-bottom: 1px solid #e5e5e5;
|
|
795
|
+
border-bottom: 1px solid var(--borderColor-default, #e5e5e5);
|
|
1238
796
|
}
|
|
1239
797
|
|
|
1240
798
|
.folderSectionCollapsed {
|
|
@@ -1242,6 +800,10 @@
|
|
|
1242
800
|
padding-bottom: 0;
|
|
1243
801
|
}
|
|
1244
802
|
|
|
803
|
+
.folderSection:first-child {
|
|
804
|
+
margin-top: 0;
|
|
805
|
+
}
|
|
806
|
+
|
|
1245
807
|
.folderSection:last-child,
|
|
1246
808
|
.folderSectionCollapsed:last-child {
|
|
1247
809
|
border-bottom: none;
|
|
@@ -1259,17 +821,17 @@
|
|
|
1259
821
|
cursor: pointer;
|
|
1260
822
|
font-size: 16px;
|
|
1261
823
|
font-weight: 600;
|
|
1262
|
-
color: #1a1a1a;
|
|
824
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
1263
825
|
width: 100%;
|
|
1264
826
|
text-align: left;
|
|
1265
827
|
}
|
|
1266
828
|
|
|
1267
829
|
.folderHeader:hover {
|
|
1268
|
-
color: #555;
|
|
830
|
+
color: var(--fgColor-muted, #555);
|
|
1269
831
|
}
|
|
1270
832
|
|
|
1271
833
|
.folderIcon {
|
|
1272
|
-
color: #1a1a1a;
|
|
834
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
1273
835
|
flex-shrink: 0;
|
|
1274
836
|
}
|
|
1275
837
|
|
|
@@ -1280,11 +842,11 @@
|
|
|
1280
842
|
.folderCount {
|
|
1281
843
|
font-size: 14px;
|
|
1282
844
|
font-weight: 400;
|
|
1283
|
-
color: #999;
|
|
845
|
+
color: var(--fgColor-muted, #999);
|
|
1284
846
|
}
|
|
1285
847
|
|
|
1286
848
|
.folderChevron {
|
|
1287
|
-
color: #999;
|
|
849
|
+
color: var(--fgColor-muted, #999);
|
|
1288
850
|
transition: transform 0.2s;
|
|
1289
851
|
}
|
|
1290
852
|
|
|
@@ -1305,15 +867,15 @@
|
|
|
1305
867
|
border: none;
|
|
1306
868
|
background: none;
|
|
1307
869
|
cursor: pointer;
|
|
1308
|
-
color: #
|
|
870
|
+
color: var(--fgColor-muted, #999);
|
|
1309
871
|
flex-shrink: 0;
|
|
1310
872
|
transition: all 0.15s;
|
|
1311
873
|
margin-top: 1px;
|
|
1312
874
|
}
|
|
1313
875
|
|
|
1314
876
|
.flowsBtn:hover {
|
|
1315
|
-
background: #f0f0f0;
|
|
1316
|
-
color: #555;
|
|
877
|
+
background: var(--bgColor-neutral-muted, #f0f0f0);
|
|
878
|
+
color: var(--fgColor-muted, #555);
|
|
1317
879
|
}
|
|
1318
880
|
|
|
1319
881
|
.flowsPositioner {
|
|
@@ -1321,8 +883,8 @@
|
|
|
1321
883
|
}
|
|
1322
884
|
|
|
1323
885
|
.flowsPopup {
|
|
1324
|
-
background: #fff;
|
|
1325
|
-
border: 1px solid #e5e5e5;
|
|
886
|
+
background: var(--bgColor-default, #fff);
|
|
887
|
+
border: 1px solid var(--borderColor-default, #e5e5e5);
|
|
1326
888
|
border-radius: 8px;
|
|
1327
889
|
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
|
|
1328
890
|
min-width: 180px;
|
|
@@ -1334,7 +896,7 @@
|
|
|
1334
896
|
padding: 6px 12px 4px;
|
|
1335
897
|
font-size: 12px;
|
|
1336
898
|
font-weight: 600;
|
|
1337
|
-
color: #999;
|
|
899
|
+
color: var(--fgColor-muted, #999);
|
|
1338
900
|
text-transform: uppercase;
|
|
1339
901
|
letter-spacing: 0.4px;
|
|
1340
902
|
}
|
|
@@ -1344,7 +906,7 @@
|
|
|
1344
906
|
width: 100%;
|
|
1345
907
|
padding: 6px 12px;
|
|
1346
908
|
font-size: 14px;
|
|
1347
|
-
color: #555;
|
|
909
|
+
color: var(--fgColor-muted, #555);
|
|
1348
910
|
cursor: pointer;
|
|
1349
911
|
border: none;
|
|
1350
912
|
background: none;
|
|
@@ -1355,8 +917,8 @@
|
|
|
1355
917
|
|
|
1356
918
|
.flowsItem:hover,
|
|
1357
919
|
.flowsItem[data-highlighted] {
|
|
1358
|
-
background: #f5f5f5;
|
|
1359
|
-
color: #1a1a1a;
|
|
920
|
+
background: var(--bgColor-muted, #f5f5f5);
|
|
921
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
1360
922
|
}
|
|
1361
923
|
|
|
1362
924
|
/* Avatar stack */
|
|
@@ -1375,7 +937,7 @@
|
|
|
1375
937
|
width: 24px;
|
|
1376
938
|
height: 24px;
|
|
1377
939
|
border-radius: 50%;
|
|
1378
|
-
border: 2px solid #fff;
|
|
940
|
+
border: 2px solid var(--bgColor-default, #fff);
|
|
1379
941
|
object-fit: cover;
|
|
1380
942
|
flex-shrink: 0;
|
|
1381
943
|
}
|
|
@@ -1391,7 +953,7 @@
|
|
|
1391
953
|
|
|
1392
954
|
.cardDescription {
|
|
1393
955
|
font-size: 14px;
|
|
1394
|
-
color: #
|
|
956
|
+
color: var(--fgColor-muted, #999);
|
|
1395
957
|
line-height: 1.5;
|
|
1396
958
|
display: -webkit-box;
|
|
1397
959
|
-webkit-line-clamp: 2;
|
|
@@ -1414,8 +976,8 @@
|
|
|
1414
976
|
}
|
|
1415
977
|
|
|
1416
978
|
.createDropdown {
|
|
1417
|
-
background: #fff;
|
|
1418
|
-
border: 1px solid #e5e5e5;
|
|
979
|
+
background: var(--bgColor-default, #fff);
|
|
980
|
+
border: 1px solid var(--borderColor-default, #e5e5e5);
|
|
1419
981
|
border-radius: 12px;
|
|
1420
982
|
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
|
|
1421
983
|
padding: 16px;
|
|
@@ -1428,7 +990,7 @@
|
|
|
1428
990
|
font-size: 16px;
|
|
1429
991
|
font-weight: 600;
|
|
1430
992
|
margin-bottom: 12px;
|
|
1431
|
-
color: #1a1a1a;
|
|
993
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
1432
994
|
}
|
|
1433
995
|
|
|
1434
996
|
.createDropdownGrid {
|
|
@@ -1449,7 +1011,7 @@
|
|
|
1449
1011
|
gap: 4px;
|
|
1450
1012
|
background: none;
|
|
1451
1013
|
border: none;
|
|
1452
|
-
color:
|
|
1014
|
+
color: var(--fgColor-muted);
|
|
1453
1015
|
font-size: 14px;
|
|
1454
1016
|
font-weight: 500;
|
|
1455
1017
|
cursor: pointer;
|
|
@@ -1459,7 +1021,7 @@
|
|
|
1459
1021
|
}
|
|
1460
1022
|
|
|
1461
1023
|
.moreOptionsBtn:hover {
|
|
1462
|
-
color: #1a1a1a;
|
|
1024
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
1463
1025
|
}
|
|
1464
1026
|
|
|
1465
1027
|
.moreOptionsSection {
|
|
@@ -1468,7 +1030,7 @@
|
|
|
1468
1030
|
flex-direction: column;
|
|
1469
1031
|
gap: 4px;
|
|
1470
1032
|
padding-top: 8px;
|
|
1471
|
-
border-top: 1px solid #eee;
|
|
1033
|
+
border-top: 1px solid var(--borderColor-muted, #eee);
|
|
1472
1034
|
}
|
|
1473
1035
|
|
|
1474
1036
|
.moreOptionItem {
|
|
@@ -1484,18 +1046,18 @@
|
|
|
1484
1046
|
}
|
|
1485
1047
|
|
|
1486
1048
|
.moreOptionItem:hover {
|
|
1487
|
-
background: #f5f5f5;
|
|
1049
|
+
background: var(--bgColor-muted, #f5f5f5);
|
|
1488
1050
|
}
|
|
1489
1051
|
|
|
1490
1052
|
.moreOptionTitle {
|
|
1491
1053
|
font-size: 14px;
|
|
1492
1054
|
font-weight: 600;
|
|
1493
|
-
color: #1a1a1a;
|
|
1055
|
+
color: var(--fgColor-default, #1a1a1a);
|
|
1494
1056
|
}
|
|
1495
1057
|
|
|
1496
1058
|
.moreOptionDesc {
|
|
1497
1059
|
font-size: 12px;
|
|
1498
|
-
color: #999;
|
|
1060
|
+
color: var(--fgColor-muted, #999);
|
|
1499
1061
|
margin-top: 2px;
|
|
1500
1062
|
}
|
|
1501
1063
|
|
|
@@ -1504,22 +1066,22 @@
|
|
|
1504
1066
|
.createTip {
|
|
1505
1067
|
margin-top: 12px;
|
|
1506
1068
|
padding-top: 10px;
|
|
1507
|
-
border-top: 1px solid #eee;
|
|
1069
|
+
border-top: 1px solid var(--borderColor-muted, #eee);
|
|
1508
1070
|
}
|
|
1509
1071
|
|
|
1510
1072
|
.createTipText {
|
|
1511
1073
|
font-size: 12px;
|
|
1512
|
-
color: #999;
|
|
1074
|
+
color: var(--fgColor-muted, #999);
|
|
1513
1075
|
line-height: 1.5;
|
|
1514
1076
|
}
|
|
1515
1077
|
|
|
1516
1078
|
.createTipCode {
|
|
1517
1079
|
font-family: 'SF Mono', SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
|
|
1518
1080
|
font-size: 12px;
|
|
1519
|
-
background: #f0f0f0;
|
|
1081
|
+
background: var(--bgColor-neutral-muted, #f0f0f0);
|
|
1520
1082
|
padding: 1px 5px;
|
|
1521
1083
|
border-radius: 3px;
|
|
1522
|
-
color: #555;
|
|
1084
|
+
color: var(--fgColor-muted, #555);
|
|
1523
1085
|
}
|
|
1524
1086
|
|
|
1525
1087
|
/* Hamburger button — hidden on desktop */
|
|
@@ -1534,12 +1096,12 @@
|
|
|
1534
1096
|
border: none;
|
|
1535
1097
|
background: none;
|
|
1536
1098
|
cursor: pointer;
|
|
1537
|
-
color: #555;
|
|
1099
|
+
color: var(--fgColor-muted, #555);
|
|
1538
1100
|
transition: background 0.15s;
|
|
1539
1101
|
}
|
|
1540
1102
|
|
|
1541
1103
|
.hamburgerBtn:hover {
|
|
1542
|
-
background: #f0f0f0;
|
|
1104
|
+
background: var(--bgColor-neutral-muted, #f0f0f0);
|
|
1543
1105
|
}
|
|
1544
1106
|
|
|
1545
1107
|
/* ─── Responsive: cards wrap on smaller screens ─── */
|
|
@@ -1556,9 +1118,9 @@
|
|
|
1556
1118
|
}
|
|
1557
1119
|
}
|
|
1558
1120
|
|
|
1559
|
-
/* ─── Responsive: sidebar collapses under
|
|
1121
|
+
/* ─── Responsive: sidebar collapses under 1030px ─── */
|
|
1560
1122
|
|
|
1561
|
-
@media (max-width:
|
|
1123
|
+
@media (max-width: 1030px) {
|
|
1562
1124
|
.hamburgerBtn {
|
|
1563
1125
|
display: flex;
|
|
1564
1126
|
}
|