trekoon 0.2.7 → 0.2.8

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,1127 @@
1
+ :root {
2
+ color-scheme: dark;
3
+ --board-bg: #0b0d12;
4
+ --board-bg-alt: #10131b;
5
+ --board-shell: rgba(15, 18, 24, 0.88);
6
+ --board-surface: #141922;
7
+ --board-surface-2: #191f2b;
8
+ --board-surface-3: #202636;
9
+ --board-border: rgba(255, 255, 255, 0.1);
10
+ --board-border-strong: rgba(167, 139, 250, 0.38);
11
+ --board-text: #f5f7fb;
12
+ --board-text-muted: #b6becc;
13
+ --board-text-soft: #8891a1;
14
+ --board-accent: #8b5cf6;
15
+ --board-accent-strong: #9f75ff;
16
+ --board-accent-soft: rgba(139, 92, 246, 0.15);
17
+ --board-success: #22c55e;
18
+ --board-warning: #f59e0b;
19
+ --board-danger: #ef4444;
20
+ --board-info: #38bdf8;
21
+ --board-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
22
+ --board-glow: rgba(139, 92, 246, 0.18);
23
+ }
24
+
25
+ :root[data-theme="light"] {
26
+ color-scheme: light;
27
+ --board-bg: #f4f6fb;
28
+ --board-bg-alt: #edf1f7;
29
+ --board-shell: rgba(255, 255, 255, 0.82);
30
+ --board-surface: #ffffff;
31
+ --board-surface-2: #f8faff;
32
+ --board-surface-3: #eef2ff;
33
+ --board-border: rgba(15, 23, 42, 0.1);
34
+ --board-border-strong: rgba(124, 58, 237, 0.28);
35
+ --board-text: #111827;
36
+ --board-text-muted: #4b5563;
37
+ --board-text-soft: #6b7280;
38
+ --board-accent: #7c3aed;
39
+ --board-accent-strong: #6d28d9;
40
+ --board-accent-soft: rgba(124, 58, 237, 0.12);
41
+ --board-success: #16a34a;
42
+ --board-warning: #d97706;
43
+ --board-danger: #dc2626;
44
+ --board-info: #0284c7;
45
+ --board-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
46
+ --board-glow: rgba(124, 58, 237, 0.1);
47
+ }
48
+
49
+ html,
50
+ body,
51
+ #app {
52
+ height: 100%;
53
+ min-height: 100%;
54
+ }
55
+
56
+ body {
57
+ margin: 0;
58
+ min-height: 100dvh;
59
+ font-family: "Instrument Sans", "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
60
+ background:
61
+ radial-gradient(circle at top left, var(--board-glow), transparent 28%),
62
+ linear-gradient(180deg, var(--board-bg), var(--board-bg-alt));
63
+ color: var(--board-text);
64
+ }
65
+
66
+ .board-shell-v2 {
67
+ display: grid;
68
+ min-height: 100vh;
69
+ min-height: 100dvh;
70
+ padding: 12px;
71
+ }
72
+
73
+ .board-shell-v2__frame {
74
+ display: grid;
75
+ grid-template-rows: auto minmax(0, 1fr);
76
+ gap: 12px;
77
+ width: min(1600px, 100%);
78
+ min-height: calc(100vh - 24px);
79
+ min-height: calc(100dvh - 24px);
80
+ margin: 0 auto;
81
+ }
82
+
83
+ .board-shell-v2__runtime {
84
+ min-height: 0;
85
+ }
86
+
87
+ .board-shell-v2__runtime-shell {
88
+ display: grid;
89
+ min-height: 0;
90
+ }
91
+
92
+ .board-layout--workspace {
93
+ align-content: start;
94
+ min-height: 0;
95
+ }
96
+
97
+ .board-layout [data-scroll-surface] {
98
+ min-height: 0;
99
+ }
100
+
101
+ .board-layout[data-scroll-owner="inspector"] [data-scroll-surface="inspector"],
102
+ .board-layout[data-scroll-owner="task-modal"] [data-scroll-surface="task-modal"],
103
+ .board-layout[data-scroll-owner="subtask-modal"] [data-scroll-surface="subtask-modal"] {
104
+ overflow-y: auto;
105
+ overscroll-behavior: contain;
106
+ -webkit-overflow-scrolling: touch;
107
+ }
108
+
109
+ .board-layout[data-scroll-owner="inspector"] [data-scroll-surface="workspace"],
110
+ .board-layout[data-scroll-owner="task-modal"] [data-scroll-surface="workspace"],
111
+ .board-layout[data-scroll-owner="subtask-modal"] [data-scroll-surface="workspace"] {
112
+ overflow: hidden;
113
+ }
114
+
115
+ .board-layout--workspace .board-root--tasks {
116
+ min-height: 0;
117
+ }
118
+
119
+ .board-layout--workspace .board-root--detail {
120
+ grid-template-columns: minmax(0, 1fr);
121
+ }
122
+
123
+ .board-layout--workspace .board-workspace,
124
+ .board-layout--workspace .board-sidebar,
125
+ .board-layout--workspace .board-drawer {
126
+ min-height: 0;
127
+ }
128
+
129
+ .board-layout--workspace .board-drawer__body,
130
+ .board-layout--workspace .board-modal__body {
131
+ overscroll-behavior: contain;
132
+ }
133
+
134
+ .board-layout .board-sidebar,
135
+ .board-layout .board-workspace,
136
+ .board-layout .board-content,
137
+ .board-layout .board-kanban,
138
+ .board-layout .board-column__tasks,
139
+ .board-layout .board-list__rows,
140
+ .board-layout .board-sidebar__list {
141
+ overflow: visible;
142
+ overscroll-behavior: auto;
143
+ }
144
+
145
+ .board-layout--workspace .board-content {
146
+ display: grid;
147
+ align-content: start;
148
+ margin-top: 14px;
149
+ }
150
+
151
+ .board-layout--workspace .board-kanban {
152
+ grid-template-columns: repeat(2, minmax(0, 1fr));
153
+ }
154
+
155
+ .board-layout--workspace .board-drawer {
156
+ position: static;
157
+ inset: auto;
158
+ width: auto;
159
+ max-height: none;
160
+ }
161
+
162
+ .board-detail-surface-frame {
163
+ min-width: 0;
164
+ }
165
+
166
+ .board-root {
167
+ align-content: start;
168
+ }
169
+
170
+ .board-detail-surface {
171
+ min-height: 0;
172
+ }
173
+
174
+ .board-detail-surface__header {
175
+ position: sticky;
176
+ top: 0;
177
+ z-index: 2;
178
+ background: var(--board-surface);
179
+ }
180
+
181
+ .board-detail-surface__body {
182
+ scrollbar-gutter: stable;
183
+ }
184
+
185
+ .board-detail-surface__stack {
186
+ display: grid;
187
+ align-content: start;
188
+ gap: 16px;
189
+ }
190
+
191
+ .board-detail-card {
192
+ min-width: 0;
193
+ }
194
+
195
+ .board-detail-summary-grid {
196
+ align-items: start;
197
+ }
198
+
199
+ .board-detail-summary-row {
200
+ display: flex;
201
+ align-items: center;
202
+ justify-content: space-between;
203
+ gap: 12px;
204
+ }
205
+
206
+ .board-detail-copy {
207
+ max-width: 78ch;
208
+ }
209
+
210
+ .board-detail-copy--compact {
211
+ max-width: 68ch;
212
+ }
213
+
214
+ .board-detail-copy br {
215
+ content: "";
216
+ }
217
+
218
+ .board-detail-nested {
219
+ gap: 0;
220
+ }
221
+
222
+ .board-related-item {
223
+ min-width: 0;
224
+ }
225
+
226
+ .board-related-item__description {
227
+ display: -webkit-box;
228
+ overflow: hidden;
229
+ -webkit-box-orient: vertical;
230
+ -webkit-line-clamp: 3;
231
+ }
232
+
233
+ .board-task-modal {
234
+ width: min(80vw, 1100px);
235
+ }
236
+
237
+ .board-modal--sheet {
238
+ width: min(80vw, 960px);
239
+ }
240
+
241
+
242
+ .board-layout--overview .board-table {
243
+ min-height: 0;
244
+ }
245
+
246
+ .board-overview--dense {
247
+ display: grid;
248
+ gap: 14px;
249
+ }
250
+
251
+ .board-overview__header {
252
+ display: grid;
253
+ gap: 12px;
254
+ padding-bottom: 12px;
255
+ border-bottom: 1px solid var(--board-border);
256
+ }
257
+
258
+ .board-overview__title {
259
+ margin: 8px 0 0;
260
+ font-size: clamp(1.4rem, 1.8vw, 1.9rem);
261
+ line-height: 1.1;
262
+ }
263
+
264
+ .board-overview__summary {
265
+ margin: 6px 0 0;
266
+ max-width: 64ch;
267
+ font-size: 0.88rem;
268
+ line-height: 1.45;
269
+ color: var(--board-text-muted);
270
+ }
271
+
272
+ .board-overview__legend {
273
+ gap: 8px;
274
+ }
275
+
276
+ .board-table--epics {
277
+ gap: 8px;
278
+ }
279
+
280
+ .board-table__header--epics {
281
+ grid-template-columns: minmax(0, 2.1fr) 120px 190px 110px 88px;
282
+ gap: 10px;
283
+ padding: 0 6px 6px;
284
+ }
285
+
286
+ .board-table__rows--epics {
287
+ display: grid;
288
+ gap: 10px;
289
+ }
290
+
291
+ .board-epic-row {
292
+ display: grid;
293
+ grid-template-columns: minmax(0, 2.1fr) 120px 190px 110px 88px;
294
+ gap: 10px;
295
+ width: 100%;
296
+ padding: 12px 14px;
297
+ border: 1px solid var(--board-border);
298
+ border-radius: 22px;
299
+ background:
300
+ linear-gradient(135deg, color-mix(in srgb, var(--board-accent-soft) 52%, transparent), transparent 52%),
301
+ rgba(255, 255, 255, 0.025);
302
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
303
+ text-align: left;
304
+ color: inherit;
305
+ cursor: pointer;
306
+ transition:
307
+ transform 0.2s ease,
308
+ border-color 0.2s ease,
309
+ background 0.2s ease,
310
+ box-shadow 0.2s ease;
311
+ }
312
+
313
+ .board-epic-row:hover {
314
+ border-color: var(--board-border-strong);
315
+ background:
316
+ linear-gradient(135deg, color-mix(in srgb, var(--board-accent-soft) 72%, transparent), transparent 54%),
317
+ rgba(255, 255, 255, 0.045);
318
+ box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
319
+ transform: translateY(-1px);
320
+ }
321
+
322
+ .board-epic-row--selected {
323
+ border-color: var(--board-border-strong);
324
+ background:
325
+ linear-gradient(135deg, color-mix(in srgb, var(--board-accent) 22%, transparent), transparent 58%),
326
+ var(--board-accent-soft);
327
+ box-shadow:
328
+ inset 0 0 0 1px color-mix(in srgb, var(--board-accent) 18%, transparent),
329
+ 0 18px 40px rgba(0, 0, 0, 0.18);
330
+ }
331
+
332
+ .board-epic-row__summary {
333
+ display: grid;
334
+ gap: 6px;
335
+ min-width: 0;
336
+ }
337
+
338
+ .board-epic-row__title-row {
339
+ display: flex;
340
+ flex-wrap: wrap;
341
+ align-items: center;
342
+ gap: 8px;
343
+ }
344
+
345
+ .board-epic-row__title {
346
+ display: block;
347
+ min-width: 0;
348
+ font-size: 0.98rem;
349
+ line-height: 1.4;
350
+ color: var(--board-text);
351
+ }
352
+
353
+ .board-epic-row:focus-visible,
354
+ .board-clamped-text__summary:focus-visible {
355
+ outline: 2px solid var(--board-border-strong);
356
+ outline-offset: 4px;
357
+ border-radius: 12px;
358
+ }
359
+
360
+ .board-epic-row__description {
361
+ min-width: 0;
362
+ line-height: 1.6;
363
+ overflow-wrap: anywhere;
364
+ }
365
+
366
+ .board-epic-row__status,
367
+ .board-epic-row__action-wrap {
368
+ display: flex;
369
+ align-items: center;
370
+ }
371
+
372
+ .board-epic-row__counts,
373
+ .board-epic-row__updated {
374
+ display: grid;
375
+ align-content: start;
376
+ gap: 6px;
377
+ }
378
+
379
+ .board-epic-row__counts {
380
+ grid-template-columns: repeat(2, minmax(0, max-content));
381
+ }
382
+
383
+ .board-epic-row__updated {
384
+ font-size: 0.84rem;
385
+ color: var(--board-text-muted);
386
+ }
387
+
388
+ .board-epic-row__label {
389
+ font-size: 0.68rem;
390
+ font-weight: 700;
391
+ letter-spacing: 0.12em;
392
+ text-transform: uppercase;
393
+ color: var(--board-text-soft);
394
+ }
395
+
396
+ .board-epic-row__action {
397
+ display: inline-flex;
398
+ align-items: center;
399
+ gap: 6px;
400
+ min-height: 34px;
401
+ padding: 0 12px;
402
+ border: 1px solid color-mix(in srgb, var(--board-accent) 28%, var(--board-border));
403
+ border-radius: 999px;
404
+ background: color-mix(in srgb, var(--board-accent-soft) 88%, transparent);
405
+ font-size: 0.84rem;
406
+ font-weight: 700;
407
+ color: var(--board-accent);
408
+ }
409
+
410
+ .board-clamped-text {
411
+ min-width: 0;
412
+ }
413
+
414
+ .board-clamped-text__summary {
415
+ display: grid;
416
+ gap: 4px;
417
+ list-style: none;
418
+ cursor: pointer;
419
+ }
420
+
421
+ .board-clamped-text__summary::-webkit-details-marker {
422
+ display: none;
423
+ }
424
+
425
+ .board-clamped-text__preview,
426
+ .board-clamped-text__body {
427
+ white-space: pre-wrap;
428
+ word-break: break-word;
429
+ }
430
+
431
+ .board-clamped-text__preview {
432
+ display: -webkit-box;
433
+ overflow: hidden;
434
+ -webkit-box-orient: vertical;
435
+ }
436
+
437
+ .board-clamped-text__preview--2 {
438
+ -webkit-line-clamp: 2;
439
+ }
440
+
441
+ .board-clamped-text__toggle {
442
+ display: inline-flex;
443
+ align-items: center;
444
+ gap: 4px;
445
+ font-size: 0.78rem;
446
+ font-weight: 600;
447
+ color: var(--board-accent);
448
+ }
449
+
450
+ .board-clamped-text__toggle-less,
451
+ .board-clamped-text__body,
452
+ .board-clamped-text[open] .board-clamped-text__toggle-more {
453
+ display: none;
454
+ }
455
+
456
+ .board-clamped-text[open] .board-clamped-text__toggle-less,
457
+ .board-clamped-text[open] .board-clamped-text__body {
458
+ display: block;
459
+ }
460
+
461
+ .board-clamped-text[open] .board-clamped-text__preview {
462
+ display: none;
463
+ }
464
+
465
+ .board-clamped-text__body {
466
+ margin-top: 6px;
467
+ font-size: 0.9rem;
468
+ line-height: 1.6;
469
+ color: var(--board-text-muted);
470
+ }
471
+
472
+ .board-kanban--dense {
473
+ display: grid;
474
+ align-content: start;
475
+ gap: 12px;
476
+ }
477
+
478
+ .board-column--dense {
479
+ box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
480
+ }
481
+
482
+ .board-column__header {
483
+ min-width: 0;
484
+ }
485
+
486
+ .board-column__count {
487
+ white-space: nowrap;
488
+ }
489
+
490
+ .board-task-card {
491
+ min-width: 0;
492
+ }
493
+
494
+ .board-task-card__body,
495
+ .board-task-card__footer,
496
+ .board-list-row__summary,
497
+ .board-list-row__meta {
498
+ min-width: 0;
499
+ }
500
+
501
+ .board-task-card__title,
502
+ .board-list-row__title {
503
+ display: -webkit-box;
504
+ overflow: hidden;
505
+ -webkit-box-orient: vertical;
506
+ -webkit-line-clamp: 2;
507
+ word-break: break-word;
508
+ }
509
+
510
+ .board-task-card__description .board-clamped-text__summary,
511
+ .board-list-row__description .board-clamped-text__summary {
512
+ gap: 3px;
513
+ }
514
+
515
+ .board-task-card__description .board-clamped-text__preview,
516
+ .board-list-row__description .board-clamped-text__preview,
517
+ .board-task-card__description .board-clamped-text__body,
518
+ .board-list-row__description .board-clamped-text__body {
519
+ font-size: inherit;
520
+ line-height: inherit;
521
+ color: inherit;
522
+ }
523
+
524
+ .board-task-card__description .board-clamped-text__toggle,
525
+ .board-list-row__description .board-clamped-text__toggle {
526
+ font-size: 0.72rem;
527
+ }
528
+
529
+ .board-task-card__cue,
530
+ .board-list-row__cue {
531
+ white-space: nowrap;
532
+ }
533
+
534
+ .board-list--dense {
535
+ gap: 12px;
536
+ }
537
+
538
+ .board-list-row {
539
+ min-width: 0;
540
+ }
541
+
542
+ .board-list-row__summary-head {
543
+ min-width: 0;
544
+ }
545
+
546
+ .board-list-row__updated {
547
+ white-space: nowrap;
548
+ }
549
+
550
+ .board-shell-topbar {
551
+ position: sticky;
552
+ top: 12px;
553
+ z-index: 20;
554
+ display: flex;
555
+ flex-wrap: wrap;
556
+ align-items: center;
557
+ gap: 10px;
558
+ padding: 8px 12px;
559
+ border: 1px solid var(--board-border);
560
+ border-radius: 16px;
561
+ background: color-mix(in srgb, var(--board-shell) 94%, transparent);
562
+ box-shadow: var(--board-shadow);
563
+ backdrop-filter: blur(18px);
564
+ }
565
+
566
+ .board-shell-topbar__identity {
567
+ display: flex;
568
+ align-items: center;
569
+ gap: 10px;
570
+ min-width: 0;
571
+ }
572
+
573
+ .board-shell-topbar__brand-mark {
574
+ display: inline-flex;
575
+ align-items: center;
576
+ justify-content: center;
577
+ width: 32px;
578
+ height: 32px;
579
+ flex-shrink: 0;
580
+ border-radius: 10px;
581
+ background: var(--board-accent-soft);
582
+ color: var(--board-accent);
583
+ box-shadow: inset 0 0 0 1px var(--board-border-strong);
584
+ }
585
+
586
+ .board-shell-topbar__title-row {
587
+ display: flex;
588
+ align-items: center;
589
+ gap: 6px;
590
+ }
591
+
592
+ .board-shell-topbar__title-row h1 {
593
+ margin: 0;
594
+ font-size: 0.95rem;
595
+ font-weight: 700;
596
+ line-height: 1.2;
597
+ white-space: nowrap;
598
+ }
599
+
600
+ .board-shell-topbar__context {
601
+ margin: 0;
602
+ font-size: 0.72rem;
603
+ line-height: 1.3;
604
+ color: var(--board-text-soft);
605
+ white-space: nowrap;
606
+ overflow: hidden;
607
+ text-overflow: ellipsis;
608
+ max-width: 28ch;
609
+ }
610
+
611
+ .board-shell-topbar__nav,
612
+ .board-shell-topbar__tools,
613
+ .board-shell-topbar__actions {
614
+ display: flex;
615
+ align-items: center;
616
+ gap: 6px;
617
+ }
618
+
619
+ .board-shell-topbar__nav {
620
+ min-width: 0;
621
+ }
622
+
623
+ .board-shell-topbar__nav-item {
624
+ display: inline-flex;
625
+ align-items: center;
626
+ gap: 5px;
627
+ min-height: 32px;
628
+ padding: 0 10px;
629
+ border: 1px solid var(--board-border);
630
+ border-radius: 999px;
631
+ background: rgba(255, 255, 255, 0.03);
632
+ color: var(--board-text-muted);
633
+ font-size: 0.8rem;
634
+ font-weight: 600;
635
+ cursor: pointer;
636
+ white-space: nowrap;
637
+ }
638
+
639
+ .board-shell-topbar__nav-item.is-active {
640
+ border-color: var(--board-border-strong);
641
+ background: var(--board-accent-soft);
642
+ color: var(--board-text);
643
+ }
644
+
645
+ .board-shell-topbar__nav-item[disabled] {
646
+ display: none;
647
+ }
648
+
649
+ .board-shell-topbar__tools {
650
+ flex: 1;
651
+ justify-content: flex-end;
652
+ min-width: 0;
653
+ }
654
+
655
+ .board-shell-topbar__actions {
656
+ flex-shrink: 0;
657
+ }
658
+
659
+ .board-shell-topbar__search {
660
+ display: flex;
661
+ align-items: center;
662
+ gap: 8px;
663
+ min-height: 32px;
664
+ min-width: 0;
665
+ flex: 1 1 180px;
666
+ max-width: 320px;
667
+ padding: 0 10px;
668
+ border: 1px solid var(--board-border);
669
+ border-radius: 10px;
670
+ background: var(--board-surface-2);
671
+ color: var(--board-text-muted);
672
+ font-size: 0.82rem;
673
+ }
674
+
675
+ .board-shell-topbar__search input {
676
+ width: 100%;
677
+ min-width: 0;
678
+ border: 0;
679
+ background: transparent;
680
+ color: var(--board-text);
681
+ font-size: 0.82rem;
682
+ outline: none;
683
+ }
684
+
685
+ .board-shell-topbar__search-kbd {
686
+ display: inline-flex;
687
+ align-items: center;
688
+ justify-content: center;
689
+ min-width: 20px;
690
+ height: 20px;
691
+ border: 1px solid var(--board-border);
692
+ border-radius: 6px;
693
+ background: rgba(255, 255, 255, 0.04);
694
+ color: var(--board-text-soft);
695
+ font-size: 0.65rem;
696
+ font-weight: 600;
697
+ }
698
+
699
+ .board-shell-topbar__meta {
700
+ position: relative;
701
+ }
702
+
703
+ .board-shell-topbar__meta summary {
704
+ display: inline-flex;
705
+ align-items: center;
706
+ justify-content: center;
707
+ width: 32px;
708
+ height: 32px;
709
+ border: 1px solid var(--board-border);
710
+ border-radius: 999px;
711
+ background: rgba(255, 255, 255, 0.03);
712
+ color: var(--board-text-muted);
713
+ cursor: pointer;
714
+ list-style: none;
715
+ }
716
+
717
+ .board-shell-topbar__meta summary::-webkit-details-marker {
718
+ display: none;
719
+ }
720
+
721
+ .board-shell-topbar__meta[open] > div {
722
+ position: absolute;
723
+ right: 0;
724
+ top: calc(100% + 8px);
725
+ width: min(280px, 80vw);
726
+ padding: 12px;
727
+ border: 1px solid var(--board-border);
728
+ border-radius: 16px;
729
+ background: var(--board-surface);
730
+ box-shadow: var(--board-shadow);
731
+ }
732
+
733
+ .board-shell-topbar__meta p,
734
+ .board-workspace-header__details p {
735
+ margin: 0;
736
+ color: var(--board-text-muted);
737
+ font-size: 0.84rem;
738
+ line-height: 1.5;
739
+ }
740
+
741
+ .board-workspace-header {
742
+ gap: 14px;
743
+ padding-bottom: 14px;
744
+ }
745
+
746
+ .board-workspace-header__intro {
747
+ display: grid;
748
+ grid-template-columns: minmax(0, 1fr) minmax(220px, 360px);
749
+ align-items: start;
750
+ gap: 12px;
751
+ }
752
+
753
+ .board-workspace-header__title-block {
754
+ min-width: 0;
755
+ }
756
+
757
+ .board-workspace-header__title-row {
758
+ display: flex;
759
+ flex-wrap: wrap;
760
+ align-items: center;
761
+ gap: 10px;
762
+ margin-top: 8px;
763
+ }
764
+
765
+ .board-workspace-header__title-row h2 {
766
+ margin: 0;
767
+ font-size: clamp(1.5rem, 2vw, 2rem);
768
+ line-height: 1.1;
769
+ overflow-wrap: anywhere;
770
+ }
771
+
772
+ .board-detail-surface__context {
773
+ max-width: 56ch;
774
+ }
775
+
776
+ .board-workspace-header__details {
777
+ min-width: 0;
778
+ max-width: 360px;
779
+ justify-self: end;
780
+ }
781
+
782
+ .board-workspace-header__details summary {
783
+ display: inline-flex;
784
+ align-items: center;
785
+ gap: 8px;
786
+ min-height: 34px;
787
+ padding: 0 12px;
788
+ border: 1px solid var(--board-border);
789
+ border-radius: 999px;
790
+ background: rgba(255, 255, 255, 0.03);
791
+ color: var(--board-text-muted);
792
+ cursor: pointer;
793
+ list-style: none;
794
+ }
795
+
796
+ .board-workspace-header__details summary::-webkit-details-marker {
797
+ display: none;
798
+ }
799
+
800
+ .board-workspace-header__details[open] p {
801
+ margin-top: 10px;
802
+ }
803
+
804
+ .board-workspace-header__toolbar {
805
+ gap: 12px;
806
+ }
807
+
808
+ .board-workspace-header__controls {
809
+ display: grid;
810
+ gap: 10px;
811
+ justify-items: end;
812
+ min-width: 0;
813
+ }
814
+
815
+ .board-workspace-header__legend {
816
+ flex-wrap: wrap;
817
+ justify-content: flex-end;
818
+ }
819
+
820
+ .board-epic-row__updated,
821
+ .board-task-card__title,
822
+ .board-list-row__title,
823
+ .board-list-row__updated,
824
+ .board-task-card__description,
825
+ .board-list-row__description,
826
+ .board-related-item__description,
827
+ .board-detail-copy,
828
+ .board-shell-topbar__identity,
829
+ .board-shell-topbar__title-row,
830
+ .board-workspace-header__title-block,
831
+ .board-workspace-header__details p {
832
+ overflow-wrap: anywhere;
833
+ }
834
+
835
+ @media (max-width: 1280px) {
836
+ .board-layout--workspace .board-root--tasks {
837
+ grid-template-columns: minmax(0, 1fr);
838
+ }
839
+
840
+ .board-layout--workspace .board-root--detail.board-root--detail-open {
841
+ grid-template-columns: minmax(0, 1.1fr) minmax(300px, 340px);
842
+ }
843
+
844
+ .board-task-modal {
845
+ width: min(88vw, 980px);
846
+ }
847
+
848
+ .board-modal--sheet {
849
+ width: min(88vw, 820px);
850
+ }
851
+
852
+ .board-layout--workspace .board-root--detail.board-root--detail-open .board-sidebar {
853
+ display: none;
854
+ }
855
+
856
+ .board-shell-topbar__context {
857
+ display: none;
858
+ }
859
+
860
+ .board-layout--workspace .board-kanban {
861
+ grid-template-columns: repeat(2, minmax(0, 1fr));
862
+ }
863
+ }
864
+
865
+ @media (max-width: 900px) {
866
+ .board-layout {
867
+ gap: 12px;
868
+ }
869
+
870
+ .board-shell-v2 {
871
+ padding: 10px;
872
+ }
873
+
874
+ .board-shell-topbar__tools,
875
+ .board-workspace-header__intro,
876
+ .board-workspace-header__toolbar {
877
+ display: grid;
878
+ justify-items: stretch;
879
+ }
880
+
881
+ .board-workspace-header__controls,
882
+ .board-workspace-header__legend {
883
+ justify-items: start;
884
+ justify-content: flex-start;
885
+ }
886
+
887
+ .board-workspace {
888
+ padding: 16px;
889
+ }
890
+
891
+ .board-workspace-header {
892
+ gap: 12px;
893
+ padding-bottom: 12px;
894
+ }
895
+
896
+ .board-workspace-header__title-row {
897
+ gap: 8px;
898
+ }
899
+
900
+ .board-workspace-header__title-row h2 {
901
+ font-size: clamp(1.25rem, 4.2vw, 1.6rem);
902
+ }
903
+
904
+ .board-layout--workspace {
905
+ max-height: none;
906
+ }
907
+
908
+ .board-layout--workspace .board-root--tasks,
909
+ .board-layout--workspace .board-root--detail.board-root--detail-open {
910
+ grid-template-columns: minmax(0, 1fr);
911
+ }
912
+
913
+ .board-layout--workspace .board-sidebar,
914
+ .board-layout--workspace .board-drawer {
915
+ display: none;
916
+ }
917
+
918
+ .board-task-modal,
919
+ .board-modal--sheet {
920
+ width: min(100vw - 16px, 920px);
921
+ max-height: calc(100dvh - 16px);
922
+ padding: 0;
923
+ border-radius: 28px;
924
+ }
925
+
926
+ .board-task-modal .board-detail-surface,
927
+ .board-modal--sheet .board-detail-surface {
928
+ background: var(--board-surface);
929
+ }
930
+
931
+ .board-detail-surface__header {
932
+ padding-bottom: 14px;
933
+ }
934
+
935
+ .board-detail-surface__body {
936
+ padding-top: 14px;
937
+ }
938
+
939
+ .board-detail-card {
940
+ border-radius: 20px;
941
+ }
942
+
943
+ .board-task-card,
944
+ .board-list-row {
945
+ border-radius: 20px;
946
+ }
947
+
948
+
949
+ .board-layout--workspace .board-kanban {
950
+ grid-template-columns: minmax(0, 1fr);
951
+ }
952
+
953
+ .board-column__header,
954
+ .board-list-row__summary-head {
955
+ flex-direction: column;
956
+ align-items: flex-start;
957
+ }
958
+
959
+ .board-list-row__updated {
960
+ white-space: normal;
961
+ }
962
+
963
+ .board-table__header--epics,
964
+ .board-epic-row {
965
+ grid-template-columns: minmax(0, 1fr);
966
+ }
967
+
968
+ .board-epic-row {
969
+ gap: 8px;
970
+ padding: 12px;
971
+ }
972
+
973
+ .board-epic-row__status,
974
+ .board-epic-row__action-wrap {
975
+ justify-content: flex-start;
976
+ }
977
+
978
+ .board-epic-row__counts {
979
+ grid-template-columns: repeat(2, minmax(0, max-content));
980
+ }
981
+ }
982
+
983
+ @media (max-width: 1100px) {
984
+ .board-workspace-header__intro,
985
+ .board-workspace-header__toolbar {
986
+ grid-template-columns: minmax(0, 1fr);
987
+ justify-items: stretch;
988
+ }
989
+
990
+ .board-workspace-header__details {
991
+ max-width: none;
992
+ justify-self: stretch;
993
+ }
994
+
995
+ .board-workspace-header__controls,
996
+ .board-workspace-header__legend {
997
+ justify-items: start;
998
+ justify-content: flex-start;
999
+ }
1000
+
1001
+ .board-table__header--epics,
1002
+ .board-list__header {
1003
+ display: none !important;
1004
+ }
1005
+
1006
+ .board-epic-row,
1007
+ .board-list-row {
1008
+ grid-template-columns: minmax(0, 1fr);
1009
+ }
1010
+
1011
+ .board-epic-row__status,
1012
+ .board-epic-row__action-wrap {
1013
+ justify-content: flex-start;
1014
+ }
1015
+
1016
+ .board-column__count,
1017
+ .board-task-card__cue,
1018
+ .board-list-row__cue,
1019
+ .board-list-row__updated {
1020
+ white-space: normal;
1021
+ }
1022
+ }
1023
+
1024
+ @media (max-width: 640px) {
1025
+ .board-shell-topbar {
1026
+ padding: 8px 10px;
1027
+ border-radius: 14px;
1028
+ }
1029
+
1030
+ .board-shell-topbar__identity {
1031
+ flex: 1 1 100%;
1032
+ }
1033
+
1034
+ .board-shell-topbar__search {
1035
+ flex-basis: 100%;
1036
+ max-width: none;
1037
+ }
1038
+
1039
+ .board-detail-surface__title-row,
1040
+ .board-detail-summary-row {
1041
+ flex-direction: column;
1042
+ align-items: flex-start;
1043
+ }
1044
+
1045
+ .board-task-modal,
1046
+ .board-modal--sheet {
1047
+ width: 100%;
1048
+ max-height: 100dvh;
1049
+ border-radius: 24px;
1050
+ }
1051
+
1052
+ .board-task-modal-backdrop,
1053
+ .board-modal-backdrop {
1054
+ padding: 0;
1055
+ align-items: stretch;
1056
+ }
1057
+
1058
+ .board-task-modal,
1059
+ .board-modal--sheet,
1060
+ .board-task-modal .board-detail-surface,
1061
+ .board-modal--sheet .board-detail-surface {
1062
+ min-height: 100dvh;
1063
+ border-radius: 0;
1064
+ }
1065
+
1066
+ .board-workspace {
1067
+ padding: 14px;
1068
+ }
1069
+
1070
+ .board-content {
1071
+ margin-top: 10px;
1072
+ }
1073
+
1074
+
1075
+ .board-workspace-header__details {
1076
+ min-width: 0;
1077
+ }
1078
+
1079
+ .board-layout--workspace {
1080
+ height: 100%;
1081
+ min-height: 0;
1082
+ }
1083
+
1084
+ .board-layout--workspace .board-content {
1085
+ margin-top: 12px;
1086
+ }
1087
+
1088
+ .board-layout--workspace .board-kanban {
1089
+ grid-template-columns: minmax(0, 1fr);
1090
+ }
1091
+
1092
+ .board-task-card__header,
1093
+ .board-task-card__footer,
1094
+ .board-list-row__meta {
1095
+ gap: 8px;
1096
+ }
1097
+
1098
+ .board-task-card,
1099
+ .board-list-row,
1100
+ .board-column {
1101
+ padding: 12px;
1102
+ }
1103
+ }
1104
+
1105
+ @media (min-width: 1440px) {
1106
+ .board-layout--workspace .board-root--tasks {
1107
+ grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
1108
+ }
1109
+
1110
+ .board-layout--workspace .board-root--detail.board-root--detail-open {
1111
+ grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) minmax(320px, 380px);
1112
+ }
1113
+
1114
+ .board-layout--workspace .board-root--detail.board-root--detail-open .board-sidebar {
1115
+ display: grid;
1116
+ }
1117
+
1118
+ .board-layout--workspace .board-kanban {
1119
+ grid-template-columns: repeat(4, minmax(0, 1fr));
1120
+ }
1121
+ }
1122
+
1123
+ @media (min-width: 1100px) and (max-width: 1439px) {
1124
+ .board-layout--workspace .board-kanban {
1125
+ grid-template-columns: repeat(3, minmax(0, 1fr));
1126
+ }
1127
+ }