@vector-im/compound-web 8.3.6 → 8.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/Form/Controls/Checkbox/Checkbox.js +1 -1
- package/dist/components/Form/Controls/EditInPlace/EditInPlace.cjs.map +1 -1
- package/dist/components/Form/Controls/EditInPlace/EditInPlace.js.map +1 -1
- package/dist/components/Form/Controls/SettingsToggle/SettingsToggle.js +1 -1
- package/dist/components/Form/index.cjs +14 -14
- package/dist/components/Form/index.js +5 -5
- package/dist/components/Menu/Menu.cjs +10 -1
- package/dist/components/Menu/Menu.cjs.map +1 -1
- package/dist/components/Menu/Menu.d.ts +4 -0
- package/dist/components/Menu/Menu.d.ts.map +1 -1
- package/dist/components/Menu/Menu.js +10 -1
- package/dist/components/Menu/Menu.js.map +1 -1
- package/dist/components/ReleaseAnnouncement/ReleaseAnnouncementContext.d.ts.map +1 -1
- package/dist/components/ReleaseAnnouncement/useReleaseAnnouncement.d.ts.map +1 -1
- package/dist/components/ReleaseAnnouncement/useReleaseAnnouncement.js +1 -1
- package/dist/components/Tooltip/TooltipContext.d.ts.map +1 -1
- package/dist/components/Tooltip/useTooltip.d.ts.map +1 -1
- package/dist/components/Tooltip/useTooltip.js +1 -1
- package/dist/index.cjs +59 -59
- package/dist/index.js +22 -22
- package/dist/style.css +278 -278
- package/package.json +4 -4
- package/src/components/Form/Controls/EditInPlace/EditInPlace.tsx +1 -1
- package/src/components/Menu/Menu.tsx +11 -1
package/dist/style.css
CHANGED
|
@@ -2108,6 +2108,29 @@ Please see LICENSE files in the repository root for full details.
|
|
|
2108
2108
|
font-feature-settings: var(--cpd-font-feature-settings);
|
|
2109
2109
|
}
|
|
2110
2110
|
/*
|
|
2111
|
+
Copyright 2024 New Vector Ltd.
|
|
2112
|
+
|
|
2113
|
+
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2114
|
+
Please see LICENSE files in the repository root for full details.
|
|
2115
|
+
*/
|
|
2116
|
+
|
|
2117
|
+
._controls_17lij_8 {
|
|
2118
|
+
display: flex;
|
|
2119
|
+
gap: 15px;
|
|
2120
|
+
|
|
2121
|
+
& > input {
|
|
2122
|
+
flex: 1;
|
|
2123
|
+
min-inline-size: 0;
|
|
2124
|
+
}
|
|
2125
|
+
}
|
|
2126
|
+
|
|
2127
|
+
._button-group_17lij_18 {
|
|
2128
|
+
display: flex;
|
|
2129
|
+
inset-block-start: var(--cpd-space-1x);
|
|
2130
|
+
align-items: center;
|
|
2131
|
+
gap: var(--cpd-space-2x);
|
|
2132
|
+
}
|
|
2133
|
+
/*
|
|
2111
2134
|
Copyright 2025 New Vector Ltd.
|
|
2112
2135
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
2113
2136
|
Copyright 2023 New Vector Ltd
|
|
@@ -2209,29 +2232,6 @@ Please see LICENSE files in the repository root for full details.
|
|
|
2209
2232
|
background-color: var(--cpd-color-bg-info-subtle);
|
|
2210
2233
|
}
|
|
2211
2234
|
/*
|
|
2212
|
-
Copyright 2024 New Vector Ltd.
|
|
2213
|
-
|
|
2214
|
-
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2215
|
-
Please see LICENSE files in the repository root for full details.
|
|
2216
|
-
*/
|
|
2217
|
-
|
|
2218
|
-
._controls_17lij_8 {
|
|
2219
|
-
display: flex;
|
|
2220
|
-
gap: 15px;
|
|
2221
|
-
|
|
2222
|
-
& > input {
|
|
2223
|
-
flex: 1;
|
|
2224
|
-
min-inline-size: 0;
|
|
2225
|
-
}
|
|
2226
|
-
}
|
|
2227
|
-
|
|
2228
|
-
._button-group_17lij_18 {
|
|
2229
|
-
display: flex;
|
|
2230
|
-
inset-block-start: var(--cpd-space-1x);
|
|
2231
|
-
align-items: center;
|
|
2232
|
-
gap: var(--cpd-space-2x);
|
|
2233
|
-
}
|
|
2234
|
-
/*
|
|
2235
2235
|
Copyright 2025 New Vector Ltd.
|
|
2236
2236
|
Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
2237
2237
|
Copyright 2023 New Vector Ltd
|
|
@@ -2324,164 +2324,94 @@ Please see LICENSE files in the repository root for full details.
|
|
|
2324
2324
|
outline: 1px solid transparent;
|
|
2325
2325
|
}
|
|
2326
2326
|
}
|
|
2327
|
-
/*
|
|
2328
|
-
|
|
2329
|
-
*
|
|
2330
|
-
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2331
|
-
* Please see LICENSE files in the repository root for full details.
|
|
2332
|
-
*/
|
|
2327
|
+
/*
|
|
2328
|
+
Copyright 2024 New Vector Ltd.
|
|
2333
2329
|
|
|
2334
|
-
.
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
padding: 0;
|
|
2338
|
-
}
|
|
2330
|
+
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2331
|
+
Please see LICENSE files in the repository root for full details.
|
|
2332
|
+
*/
|
|
2339
2333
|
|
|
2340
|
-
.
|
|
2334
|
+
._breadcrumb_1xygz_8 {
|
|
2341
2335
|
display: flex;
|
|
2342
|
-
flex-direction: row;
|
|
2343
|
-
justify-content: flex-start;
|
|
2344
2336
|
align-items: center;
|
|
2337
|
+
block-size: 40px;
|
|
2345
2338
|
gap: var(--cpd-space-3x);
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
}
|
|
2339
|
+
padding-block-end: var(--cpd-space-3x);
|
|
2340
|
+
border-block-end: 1px solid var(--cpd-color-alpha-gray-400);
|
|
2341
|
+
box-sizing: border-box;
|
|
2350
2342
|
|
|
2351
|
-
.
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
}
|
|
2343
|
+
._pages_1xygz_17 {
|
|
2344
|
+
display: flex;
|
|
2345
|
+
gap: var(--cpd-space-1x);
|
|
2355
2346
|
|
|
2356
|
-
/*
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
inset-block-end: 0;
|
|
2361
|
-
inset-inline: 0;
|
|
2362
|
-
block-size: 0;
|
|
2363
|
-
border-radius: var(--cpd-radius-pill-effect) var(--cpd-radius-pill-effect) 0 0;
|
|
2364
|
-
background-color: var(--cpd-color-bg-action-primary-rest);
|
|
2365
|
-
transition: height 0.1s ease-in-out;
|
|
2366
|
-
}
|
|
2347
|
+
/* override list styles */
|
|
2348
|
+
list-style: none;
|
|
2349
|
+
margin: 0;
|
|
2350
|
+
padding: 0;
|
|
2367
2351
|
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2352
|
+
a {
|
|
2353
|
+
cursor: pointer;
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
._last-page_1xygz_30 {
|
|
2357
|
+
font: var(--cpd-font-body-sm-regular);
|
|
2358
|
+
color: var(--cpd-color-text-secondary);
|
|
2359
|
+
}
|
|
2360
|
+
|
|
2361
|
+
/*
|
|
2362
|
+
* Breadcrumb separator
|
|
2363
|
+
* We want this separator to be only visual and to not be in the accessibility tree.
|
|
2364
|
+
* The nav html element already provides an accessible way to separate the links.
|
|
2365
|
+
*/
|
|
2366
|
+
li + li::before {
|
|
2367
|
+
display: inline-block;
|
|
2368
|
+
margin: 0 0.3em 0 0.25em;
|
|
2369
|
+
transform: rotate(15deg);
|
|
2370
|
+
border-inline-end: 1px solid var(--cpd-color-text-secondary);
|
|
2371
|
+
block-size: var(--cpd-space-3x);
|
|
2372
|
+
content: "";
|
|
2373
|
+
}
|
|
2374
|
+
|
|
2375
|
+
/* Last page */
|
|
2376
|
+
:last-child {
|
|
2377
|
+
span {
|
|
2378
|
+
padding-inline-start: var(--cpd-space-1x);
|
|
2379
|
+
}
|
|
2380
|
+
}
|
|
2381
|
+
}
|
|
2371
2382
|
}
|
|
2383
|
+
/*
|
|
2384
|
+
* Copyright 2025 New Vector Ltd
|
|
2385
|
+
*
|
|
2386
|
+
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2387
|
+
* Please see LICENSE files in the repository root for full details.
|
|
2388
|
+
*/
|
|
2372
2389
|
|
|
2373
|
-
.
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2390
|
+
._chat-filter_5qdp0_8 {
|
|
2391
|
+
font: var(--cpd-font-body-sm-medium);
|
|
2392
|
+
color: var(--cpd-color-text-primary);
|
|
2393
|
+
background-color: transparent;
|
|
2394
|
+
border: var(--cpd-border-width-1) solid
|
|
2395
|
+
var(--cpd-color-border-interactive-secondary);
|
|
2396
|
+
border-radius: 99px;
|
|
2377
2397
|
cursor: pointer;
|
|
2378
|
-
appearance: none;
|
|
2379
2398
|
display: flex;
|
|
2380
2399
|
align-items: center;
|
|
2381
2400
|
justify-content: center;
|
|
2382
|
-
|
|
2383
|
-
box-sizing: border-box;
|
|
2384
|
-
background: transparent;
|
|
2385
|
-
border: 0;
|
|
2386
|
-
font: var(--cpd-font-body-md-medium);
|
|
2387
|
-
color: var(--cpd-color-text-secondary);
|
|
2388
|
-
text-decoration: none;
|
|
2401
|
+
padding: var(--cpd-space-1x) var(--cpd-space-2x);
|
|
2389
2402
|
}
|
|
2390
2403
|
|
|
2391
2404
|
@media (hover) {
|
|
2392
|
-
.
|
|
2393
|
-
color: var(--cpd-color-
|
|
2394
|
-
background
|
|
2395
|
-
}
|
|
2396
|
-
}
|
|
2397
|
-
|
|
2398
|
-
._nav-item_z70g4_47:focus-visible {
|
|
2399
|
-
outline: var(--cpd-color-border-focused) var(--cpd-border-width-2) solid;
|
|
2400
|
-
}
|
|
2401
|
-
|
|
2402
|
-
._nav-item_z70g4_47:not([disabled]):active {
|
|
2403
|
-
color: var(--cpd-color-text-primary);
|
|
2404
|
-
background-color: var(--cpd-color-bg-subtle-primary);
|
|
2405
|
-
}
|
|
2406
|
-
|
|
2407
|
-
._nav-item_z70g4_47[aria-current],
|
|
2408
|
-
._nav-item_z70g4_47[aria-selected="true"] {
|
|
2409
|
-
color: var(--cpd-color-text-primary);
|
|
2410
|
-
}
|
|
2411
|
-
|
|
2412
|
-
._nav-item_z70g4_47[disabled] {
|
|
2413
|
-
cursor: not-allowed;
|
|
2414
|
-
|
|
2415
|
-
/* Enable pointer events for svgs even with fill=none */
|
|
2416
|
-
pointer-events: all !important;
|
|
2417
|
-
color: var(--cpd-color-text-disabled);
|
|
2418
|
-
}
|
|
2419
|
-
|
|
2420
|
-
@media (forced-colors: active) {
|
|
2421
|
-
._nav-tab_z70g4_25[data-current]::before {
|
|
2422
|
-
outline: 1px solid transparent;
|
|
2405
|
+
._chat-filter_5qdp0_8:hover {
|
|
2406
|
+
border-color: var(--cpd-color-border-interactive-primary);
|
|
2407
|
+
background: var(--cpd-color-bg-subtle-primary);
|
|
2423
2408
|
}
|
|
2424
2409
|
}
|
|
2425
|
-
/*
|
|
2426
|
-
Copyright 2024 New Vector Ltd.
|
|
2427
|
-
|
|
2428
|
-
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2429
|
-
Please see LICENSE files in the repository root for full details.
|
|
2430
|
-
*/
|
|
2431
2410
|
|
|
2432
|
-
.
|
|
2433
|
-
|
|
2434
|
-
max-inline-size: 320px;
|
|
2435
|
-
border-radius: var(--cpd-space-3x);
|
|
2411
|
+
._chat-filter_5qdp0_8[aria-selected="true"] {
|
|
2412
|
+
border-color: var(--cpd-color-bg-action-primary-rest);
|
|
2436
2413
|
background: var(--cpd-color-bg-action-primary-rest);
|
|
2437
|
-
padding: var(--cpd-space-5x) var(--cpd-space-6x);
|
|
2438
|
-
|
|
2439
|
-
/* from figma */
|
|
2440
|
-
box-shadow: 0 4px 24px 0 rgb(0 0 0 / 10%);
|
|
2441
|
-
|
|
2442
|
-
/*
|
|
2443
|
-
* Grid, we want to have the following layout:
|
|
2444
|
-
* ----------------------------------
|
|
2445
|
-
* - --------------- ---------- -
|
|
2446
|
-
* - | heading | | | -
|
|
2447
|
-
* - -------------- | button | -
|
|
2448
|
-
* - --------------- | button | -
|
|
2449
|
-
* - | description | | | -
|
|
2450
|
-
* - --------------- ---------- -
|
|
2451
|
-
* ----------------------------------
|
|
2452
|
-
*/
|
|
2453
|
-
display: grid;
|
|
2454
|
-
grid-template:
|
|
2455
|
-
"header button" auto
|
|
2456
|
-
"description button" auto;
|
|
2457
|
-
align-items: center;
|
|
2458
|
-
column-gap: var(--cpd-space-6x);
|
|
2459
|
-
}
|
|
2460
|
-
|
|
2461
|
-
._header_16f2y_37 {
|
|
2462
|
-
margin: 0;
|
|
2463
2414
|
color: var(--cpd-color-text-on-solid-primary);
|
|
2464
|
-
grid-area: header;
|
|
2465
|
-
}
|
|
2466
|
-
|
|
2467
|
-
._description_16f2y_43 {
|
|
2468
|
-
color: var(--cpd-color-gray-500);
|
|
2469
|
-
grid-area: description;
|
|
2470
|
-
}
|
|
2471
|
-
|
|
2472
|
-
._button_16f2y_48 {
|
|
2473
|
-
color: var(--cpd-color-bg-subtle-secondary);
|
|
2474
|
-
grid-area: button;
|
|
2475
|
-
}
|
|
2476
|
-
|
|
2477
|
-
._arrow_16f2y_53 {
|
|
2478
|
-
fill: var(--cpd-color-bg-action-primary-rest);
|
|
2479
|
-
}
|
|
2480
|
-
|
|
2481
|
-
@media (forced-colors: active) {
|
|
2482
|
-
._content_16f2y_8 {
|
|
2483
|
-
outline: 1px solid transparent;
|
|
2484
|
-
}
|
|
2485
2415
|
}
|
|
2486
2416
|
/*
|
|
2487
2417
|
Copyright 2024 New Vector Ltd.
|
|
@@ -2621,116 +2551,185 @@ Please see LICENSE files in the repository root for full details.
|
|
|
2621
2551
|
}
|
|
2622
2552
|
}
|
|
2623
2553
|
}
|
|
2624
|
-
/*
|
|
2625
|
-
Copyright
|
|
2554
|
+
/* Copyright 2025 New Vector Ltd.
|
|
2555
|
+
* Copyright 2023 The Matrix.org Foundation C.I.C.
|
|
2556
|
+
*
|
|
2557
|
+
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2558
|
+
* Please see LICENSE files in the repository root for full details.
|
|
2559
|
+
*/
|
|
2626
2560
|
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2561
|
+
._nav-bar_z70g4_8 {
|
|
2562
|
+
border-block-end: var(--cpd-border-width-1) solid var(--cpd-color-gray-400);
|
|
2563
|
+
margin: var(--cpd-space-6x) 0;
|
|
2564
|
+
padding: 0;
|
|
2565
|
+
}
|
|
2630
2566
|
|
|
2631
|
-
.
|
|
2567
|
+
._nav-bar-items_z70g4_14 {
|
|
2632
2568
|
display: flex;
|
|
2569
|
+
flex-direction: row;
|
|
2570
|
+
justify-content: flex-start;
|
|
2633
2571
|
align-items: center;
|
|
2634
|
-
block-size: 40px;
|
|
2635
2572
|
gap: var(--cpd-space-3x);
|
|
2636
|
-
|
|
2637
|
-
|
|
2638
|
-
|
|
2639
|
-
|
|
2640
|
-
._pages_1xygz_17 {
|
|
2641
|
-
display: flex;
|
|
2642
|
-
gap: var(--cpd-space-1x);
|
|
2573
|
+
list-style: none;
|
|
2574
|
+
padding: 0;
|
|
2575
|
+
margin: 0;
|
|
2576
|
+
}
|
|
2643
2577
|
|
|
2644
|
-
|
|
2645
|
-
|
|
2646
|
-
|
|
2647
|
-
|
|
2578
|
+
._nav-tab_z70g4_25 {
|
|
2579
|
+
padding: var(--cpd-space-4x) 0;
|
|
2580
|
+
position: relative;
|
|
2581
|
+
}
|
|
2648
2582
|
|
|
2649
|
-
|
|
2650
|
-
|
|
2651
|
-
|
|
2583
|
+
/* Underline effect */
|
|
2584
|
+
._nav-tab_z70g4_25::before {
|
|
2585
|
+
content: "";
|
|
2586
|
+
position: absolute;
|
|
2587
|
+
inset-block-end: 0;
|
|
2588
|
+
inset-inline: 0;
|
|
2589
|
+
block-size: 0;
|
|
2590
|
+
border-radius: var(--cpd-radius-pill-effect) var(--cpd-radius-pill-effect) 0 0;
|
|
2591
|
+
background-color: var(--cpd-color-bg-action-primary-rest);
|
|
2592
|
+
transition: height 0.1s ease-in-out;
|
|
2593
|
+
}
|
|
2652
2594
|
|
|
2653
|
-
|
|
2654
|
-
|
|
2655
|
-
|
|
2656
|
-
|
|
2595
|
+
._nav-tab_z70g4_25[data-current]::before {
|
|
2596
|
+
/* This is not exactly right: designs says 3px, but there are no variables for that */
|
|
2597
|
+
block-size: var(--cpd-border-width-4);
|
|
2598
|
+
}
|
|
2657
2599
|
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
2665
|
-
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
2600
|
+
._nav-item_z70g4_47 {
|
|
2601
|
+
padding-block: var(--cpd-space-1x);
|
|
2602
|
+
padding-inline: var(--cpd-space-2x);
|
|
2603
|
+
border-radius: var(--cpd-radius-pill-effect);
|
|
2604
|
+
cursor: pointer;
|
|
2605
|
+
appearance: none;
|
|
2606
|
+
display: flex;
|
|
2607
|
+
align-items: center;
|
|
2608
|
+
justify-content: center;
|
|
2609
|
+
gap: var(--cpd-space-2x);
|
|
2610
|
+
box-sizing: border-box;
|
|
2611
|
+
background: transparent;
|
|
2612
|
+
border: 0;
|
|
2613
|
+
font: var(--cpd-font-body-md-medium);
|
|
2614
|
+
color: var(--cpd-color-text-secondary);
|
|
2615
|
+
text-decoration: none;
|
|
2616
|
+
}
|
|
2671
2617
|
|
|
2672
|
-
|
|
2673
|
-
|
|
2674
|
-
|
|
2675
|
-
|
|
2676
|
-
}
|
|
2677
|
-
}
|
|
2618
|
+
@media (hover) {
|
|
2619
|
+
._nav-item_z70g4_47:not([disabled]):hover {
|
|
2620
|
+
color: var(--cpd-color-text-primary);
|
|
2621
|
+
background-color: var(--cpd-color-bg-subtle-secondary);
|
|
2678
2622
|
}
|
|
2679
2623
|
}
|
|
2680
|
-
/*
|
|
2681
|
-
Copyright 2024 New Vector Ltd.
|
|
2682
2624
|
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2625
|
+
._nav-item_z70g4_47:focus-visible {
|
|
2626
|
+
outline: var(--cpd-color-border-focused) var(--cpd-border-width-2) solid;
|
|
2627
|
+
}
|
|
2686
2628
|
|
|
2687
|
-
.
|
|
2688
|
-
|
|
2689
|
-
|
|
2690
|
-
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2694
|
-
|
|
2695
|
-
|
|
2629
|
+
._nav-item_z70g4_47:not([disabled]):active {
|
|
2630
|
+
color: var(--cpd-color-text-primary);
|
|
2631
|
+
background-color: var(--cpd-color-bg-subtle-primary);
|
|
2632
|
+
}
|
|
2633
|
+
|
|
2634
|
+
._nav-item_z70g4_47[aria-current],
|
|
2635
|
+
._nav-item_z70g4_47[aria-selected="true"] {
|
|
2636
|
+
color: var(--cpd-color-text-primary);
|
|
2637
|
+
}
|
|
2638
|
+
|
|
2639
|
+
._nav-item_z70g4_47[disabled] {
|
|
2640
|
+
cursor: not-allowed;
|
|
2641
|
+
|
|
2642
|
+
/* Enable pointer events for svgs even with fill=none */
|
|
2643
|
+
pointer-events: all !important;
|
|
2644
|
+
color: var(--cpd-color-text-disabled);
|
|
2696
2645
|
}
|
|
2697
2646
|
|
|
2698
2647
|
@media (forced-colors: active) {
|
|
2699
|
-
.
|
|
2648
|
+
._nav-tab_z70g4_25[data-current]::before {
|
|
2700
2649
|
outline: 1px solid transparent;
|
|
2701
2650
|
}
|
|
2702
2651
|
}
|
|
2703
2652
|
/*
|
|
2704
|
-
* Copyright
|
|
2653
|
+
* Copyright 2025 New Vector Ltd
|
|
2705
2654
|
*
|
|
2706
2655
|
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2707
2656
|
* Please see LICENSE files in the repository root for full details.
|
|
2708
2657
|
*/
|
|
2709
2658
|
|
|
2710
|
-
.
|
|
2711
|
-
|
|
2712
|
-
|
|
2713
|
-
|
|
2714
|
-
background-color: var(--cpd-color-
|
|
2715
|
-
|
|
2659
|
+
._pill_187tn_8 {
|
|
2660
|
+
border-radius: 38px;
|
|
2661
|
+
font: var(--cpd-font-body-xs-semibold);
|
|
2662
|
+
color: var(--cpd-color-text-on-solid-primary);
|
|
2663
|
+
background-color: var(--cpd-color-icon-success-primary);
|
|
2664
|
+
padding: 0 var(--cpd-space-2x);
|
|
2665
|
+
block-size: 20px;
|
|
2666
|
+
display: inline-flex;
|
|
2716
2667
|
align-items: center;
|
|
2717
2668
|
}
|
|
2718
2669
|
|
|
2719
|
-
|
|
2720
|
-
|
|
2721
|
-
|
|
2670
|
+
@media (forced-colors: active) {
|
|
2671
|
+
._pill_187tn_8 {
|
|
2672
|
+
outline: 1px solid transparent;
|
|
2673
|
+
}
|
|
2722
2674
|
}
|
|
2675
|
+
/*
|
|
2676
|
+
Copyright 2024 New Vector Ltd.
|
|
2723
2677
|
|
|
2724
|
-
|
|
2725
|
-
|
|
2678
|
+
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2679
|
+
Please see LICENSE files in the repository root for full details.
|
|
2680
|
+
*/
|
|
2681
|
+
|
|
2682
|
+
._content_16f2y_8 {
|
|
2683
|
+
/* 320px + 20px padding left + 20px padding right */
|
|
2684
|
+
max-inline-size: 320px;
|
|
2685
|
+
border-radius: var(--cpd-space-3x);
|
|
2686
|
+
background: var(--cpd-color-bg-action-primary-rest);
|
|
2687
|
+
padding: var(--cpd-space-5x) var(--cpd-space-6x);
|
|
2688
|
+
|
|
2689
|
+
/* from figma */
|
|
2690
|
+
box-shadow: 0 4px 24px 0 rgb(0 0 0 / 10%);
|
|
2691
|
+
|
|
2692
|
+
/*
|
|
2693
|
+
* Grid, we want to have the following layout:
|
|
2694
|
+
* ----------------------------------
|
|
2695
|
+
* - --------------- ---------- -
|
|
2696
|
+
* - | heading | | | -
|
|
2697
|
+
* - -------------- | button | -
|
|
2698
|
+
* - --------------- | button | -
|
|
2699
|
+
* - | description | | | -
|
|
2700
|
+
* - --------------- ---------- -
|
|
2701
|
+
* ----------------------------------
|
|
2702
|
+
*/
|
|
2703
|
+
display: grid;
|
|
2704
|
+
grid-template:
|
|
2705
|
+
"header button" auto
|
|
2706
|
+
"description button" auto;
|
|
2707
|
+
align-items: center;
|
|
2708
|
+
column-gap: var(--cpd-space-6x);
|
|
2726
2709
|
}
|
|
2727
2710
|
|
|
2728
|
-
.
|
|
2729
|
-
|
|
2711
|
+
._header_16f2y_37 {
|
|
2712
|
+
margin: 0;
|
|
2713
|
+
color: var(--cpd-color-text-on-solid-primary);
|
|
2714
|
+
grid-area: header;
|
|
2715
|
+
}
|
|
2716
|
+
|
|
2717
|
+
._description_16f2y_43 {
|
|
2718
|
+
color: var(--cpd-color-gray-500);
|
|
2719
|
+
grid-area: description;
|
|
2720
|
+
}
|
|
2721
|
+
|
|
2722
|
+
._button_16f2y_48 {
|
|
2723
|
+
color: var(--cpd-color-bg-subtle-secondary);
|
|
2724
|
+
grid-area: button;
|
|
2725
|
+
}
|
|
2726
|
+
|
|
2727
|
+
._arrow_16f2y_53 {
|
|
2728
|
+
fill: var(--cpd-color-bg-action-primary-rest);
|
|
2730
2729
|
}
|
|
2731
2730
|
|
|
2732
2731
|
@media (forced-colors: active) {
|
|
2733
|
-
.
|
|
2732
|
+
._content_16f2y_8 {
|
|
2734
2733
|
outline: 1px solid transparent;
|
|
2735
2734
|
}
|
|
2736
2735
|
}
|
|
@@ -2741,31 +2740,23 @@ Please see LICENSE files in the repository root for full details.
|
|
|
2741
2740
|
* Please see LICENSE files in the repository root for full details.
|
|
2742
2741
|
*/
|
|
2743
2742
|
|
|
2744
|
-
.
|
|
2745
|
-
|
|
2746
|
-
color: var(--cpd-color-text-primary);
|
|
2747
|
-
background-color: transparent;
|
|
2748
|
-
border: var(--cpd-border-width-1) solid
|
|
2749
|
-
var(--cpd-color-border-interactive-secondary);
|
|
2750
|
-
border-radius: 99px;
|
|
2751
|
-
cursor: pointer;
|
|
2743
|
+
._unread_cti0f_8 {
|
|
2744
|
+
inline-size: 20px;
|
|
2752
2745
|
display: flex;
|
|
2753
|
-
align-items: center;
|
|
2754
2746
|
justify-content: center;
|
|
2755
|
-
padding: var(--cpd-space-1x) var(--cpd-space-2x);
|
|
2756
|
-
}
|
|
2757
2747
|
|
|
2758
|
-
|
|
2759
|
-
|
|
2760
|
-
|
|
2761
|
-
background: var(--cpd-color-
|
|
2748
|
+
div {
|
|
2749
|
+
block-size: 8px;
|
|
2750
|
+
inline-size: 8px;
|
|
2751
|
+
background-color: var(--cpd-color-icon-secondary);
|
|
2752
|
+
border-radius: 100%;
|
|
2762
2753
|
}
|
|
2763
2754
|
}
|
|
2764
2755
|
|
|
2765
|
-
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2756
|
+
@media (forced-colors: active) {
|
|
2757
|
+
._unread_cti0f_8 div {
|
|
2758
|
+
outline: 1px solid transparent;
|
|
2759
|
+
}
|
|
2769
2760
|
}
|
|
2770
2761
|
/*
|
|
2771
2762
|
* Copyright 2025 New Vector Ltd
|
|
@@ -2794,50 +2785,59 @@ Please see LICENSE files in the repository root for full details.
|
|
|
2794
2785
|
}
|
|
2795
2786
|
}
|
|
2796
2787
|
/*
|
|
2797
|
-
|
|
2798
|
-
*
|
|
2799
|
-
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2800
|
-
* Please see LICENSE files in the repository root for full details.
|
|
2801
|
-
*/
|
|
2788
|
+
Copyright 2024 New Vector Ltd.
|
|
2802
2789
|
|
|
2803
|
-
.
|
|
2804
|
-
|
|
2805
|
-
|
|
2806
|
-
|
|
2807
|
-
|
|
2808
|
-
|
|
2809
|
-
|
|
2810
|
-
|
|
2811
|
-
|
|
2790
|
+
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2791
|
+
Please see LICENSE files in the repository root for full details.
|
|
2792
|
+
*/
|
|
2793
|
+
|
|
2794
|
+
._visual-list_1mgc1_8 {
|
|
2795
|
+
display: flex;
|
|
2796
|
+
flex-direction: column;
|
|
2797
|
+
gap: var(--cpd-space-1x);
|
|
2798
|
+
margin: 0;
|
|
2799
|
+
padding: 0;
|
|
2800
|
+
list-style-type: none;
|
|
2801
|
+
border-radius: var(--cpd-space-3x);
|
|
2802
|
+
overflow: hidden;
|
|
2812
2803
|
}
|
|
2813
2804
|
|
|
2814
2805
|
@media (forced-colors: active) {
|
|
2815
|
-
.
|
|
2806
|
+
._visual-list_1mgc1_8 {
|
|
2816
2807
|
outline: 1px solid transparent;
|
|
2817
2808
|
}
|
|
2818
2809
|
}
|
|
2819
2810
|
/*
|
|
2820
|
-
* Copyright
|
|
2811
|
+
* Copyright 2024 New Vector Ltd.
|
|
2821
2812
|
*
|
|
2822
2813
|
* SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
2823
2814
|
* Please see LICENSE files in the repository root for full details.
|
|
2824
2815
|
*/
|
|
2825
2816
|
|
|
2826
|
-
.
|
|
2827
|
-
inline-size: 20px;
|
|
2817
|
+
._visual-list-item_1nc1y_8 {
|
|
2828
2818
|
display: flex;
|
|
2829
|
-
|
|
2819
|
+
gap: var(--cpd-space-3x);
|
|
2820
|
+
padding: var(--cpd-space-3x) var(--cpd-space-4x);
|
|
2821
|
+
background-color: var(--cpd-color-bg-subtle-secondary);
|
|
2822
|
+
font: var(--cpd-font-body-md-medium);
|
|
2823
|
+
align-items: center;
|
|
2824
|
+
}
|
|
2830
2825
|
|
|
2831
|
-
|
|
2832
|
-
|
|
2833
|
-
|
|
2834
|
-
|
|
2835
|
-
|
|
2836
|
-
|
|
2826
|
+
._visual-list-item-icon_1nc1y_17 {
|
|
2827
|
+
flex-shrink: 0;
|
|
2828
|
+
color: var(--cpd-color-icon-secondary);
|
|
2829
|
+
}
|
|
2830
|
+
|
|
2831
|
+
._visual-list-item-icon-success_1nc1y_22 {
|
|
2832
|
+
color: var(--cpd-color-icon-success-primary);
|
|
2833
|
+
}
|
|
2834
|
+
|
|
2835
|
+
._visual-list-item-icon-destructive_1nc1y_26 {
|
|
2836
|
+
color: var(--cpd-color-icon-critical-primary);
|
|
2837
2837
|
}
|
|
2838
2838
|
|
|
2839
2839
|
@media (forced-colors: active) {
|
|
2840
|
-
.
|
|
2840
|
+
._visual-list-item_1nc1y_8 {
|
|
2841
2841
|
outline: 1px solid transparent;
|
|
2842
2842
|
}
|
|
2843
2843
|
}
|