@box/blueprint-web 10.0.0 → 10.1.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/lib-esm/index.css +229 -222
- package/dist/lib-esm/list-item/cell/cell.js +1 -1
- package/dist/lib-esm/list-item/index.d.ts +5 -2
- package/dist/lib-esm/list-item/index.js +15 -0
- package/dist/lib-esm/list-item/list-item.d.ts +5 -2
- package/dist/lib-esm/list-item/main.module.js +1 -1
- package/dist/lib-esm/list-item/table-column.js +1 -1
- package/dist/lib-esm/list-item/table-header-default.d.ts +9 -0
- package/dist/lib-esm/list-item/table-header-default.js +23 -0
- package/dist/lib-esm/list-item/table-header-dropdown.d.ts +9 -0
- package/dist/lib-esm/list-item/table-header-dropdown.js +66 -0
- package/dist/lib-esm/list-item/table-header.js +8 -4
- package/dist/lib-esm/list-item/table.d.ts +26 -2
- package/dist/lib-esm/list-item/table.js +60 -20
- package/dist/lib-esm/list-item/utils/{column-metadata.d.ts → column-visibility-context/column-metadata.d.ts} +1 -0
- package/dist/lib-esm/list-item/utils/{columnVisibilityContext.d.ts → column-visibility-context/columnVisibilityContext.d.ts} +2 -1
- package/dist/lib-esm/list-item/utils/{columnVisibilityContext.js → column-visibility-context/columnVisibilityContext.js} +4 -2
- package/dist/lib-esm/list-item/utils/{useColumnVisibilityManager.d.ts → column-visibility-context/useColumnVisibilityManager.d.ts} +2 -1
- package/dist/lib-esm/list-item/utils/{useColumnVisibilityManager.js → column-visibility-context/useColumnVisibilityManager.js} +13 -4
- package/dist/lib-esm/list-item/utils/table-sorting-context/tableSortingContext.d.ts +17 -0
- package/dist/lib-esm/list-item/utils/table-sorting-context/tableSortingContext.js +42 -0
- package/dist/lib-esm/list-item/utils/table-sorting-context/useSortingTableManager.d.ts +9 -0
- package/dist/lib-esm/list-item/utils/table-sorting-context/useSortingTableManager.js +36 -0
- package/package.json +1 -1
- /package/dist/lib-esm/list-item/utils/{useThrottledContainerResize.d.ts → column-visibility-context/useThrottledContainerResize.d.ts} +0 -0
- /package/dist/lib-esm/list-item/utils/{useThrottledContainerResize.js → column-visibility-context/useThrottledContainerResize.js} +0 -0
package/dist/lib-esm/index.css
CHANGED
|
@@ -2420,10 +2420,17 @@
|
|
|
2420
2420
|
opacity:.4;
|
|
2421
2421
|
}
|
|
2422
2422
|
|
|
2423
|
-
.
|
|
2423
|
+
.bp_main_module_tableSortingContainer--1316e{
|
|
2424
|
+
display:flex;
|
|
2425
|
+
flex-direction:column;
|
|
2426
|
+
gap:var(--space-4);
|
|
2427
|
+
min-width:100%;
|
|
2428
|
+
}
|
|
2429
|
+
|
|
2430
|
+
.bp_main_module_resizableTableContainer--1316e{
|
|
2424
2431
|
min-width:100%;
|
|
2425
2432
|
}
|
|
2426
|
-
.bp_main_module_resizableTableContainer--
|
|
2433
|
+
.bp_main_module_resizableTableContainer--1316e table{
|
|
2427
2434
|
--item-background:var(--background-background);
|
|
2428
2435
|
--outline-offset-focus-row:-.25rem;
|
|
2429
2436
|
--outline-offset-focus-cell:-.1875rem;
|
|
@@ -2437,11 +2444,11 @@
|
|
|
2437
2444
|
border-spacing:0;
|
|
2438
2445
|
width:100% !important;
|
|
2439
2446
|
}
|
|
2440
|
-
.bp_main_module_resizableTableContainer--
|
|
2447
|
+
.bp_main_module_resizableTableContainer--1316e .bp_main_module_resizableTable--1316e{
|
|
2441
2448
|
table-layout:auto !important;
|
|
2442
2449
|
}
|
|
2443
2450
|
|
|
2444
|
-
.bp_main_module_tableHeader--
|
|
2451
|
+
.bp_main_module_tableHeader--1316e tr > th{
|
|
2445
2452
|
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
2446
2453
|
font-size:.75rem;
|
|
2447
2454
|
font-weight:400;
|
|
@@ -2454,59 +2461,59 @@
|
|
|
2454
2461
|
text-transform:none;
|
|
2455
2462
|
white-space:nowrap;
|
|
2456
2463
|
}
|
|
2457
|
-
.bp_main_module_tableHeader--
|
|
2464
|
+
.bp_main_module_tableHeader--1316e tr > th:first-child{
|
|
2458
2465
|
border-radius:var(--border-radius) 0 0 var(--border-radius);
|
|
2459
2466
|
}
|
|
2460
|
-
.bp_main_module_tableHeader--
|
|
2467
|
+
.bp_main_module_tableHeader--1316e tr > th:last-child{
|
|
2461
2468
|
border-radius:0 var(--border-radius) var(--border-radius) 0;
|
|
2462
2469
|
}
|
|
2463
|
-
.bp_main_module_tableHeader--
|
|
2470
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e{
|
|
2464
2471
|
color:var(--text-text-on-light-secondary);
|
|
2465
2472
|
outline:none;
|
|
2466
2473
|
overflow:visible;
|
|
2467
2474
|
text-align:left;
|
|
2468
2475
|
}
|
|
2469
|
-
.bp_main_module_tableHeader--
|
|
2476
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e .bp_main_module_columnNameWrapper--1316e{
|
|
2470
2477
|
align-items:center;
|
|
2471
2478
|
display:flex;
|
|
2472
2479
|
flex:1 0 0;
|
|
2473
2480
|
gap:var(--space-2);
|
|
2474
2481
|
overflow:hidden;
|
|
2475
2482
|
}
|
|
2476
|
-
.bp_main_module_tableHeader--
|
|
2483
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e .bp_main_module_columnNameWrapper--1316e .bp_main_module_columnName--1316e{
|
|
2477
2484
|
min-width:0;
|
|
2478
2485
|
overflow:hidden;
|
|
2479
2486
|
text-overflow:ellipsis;
|
|
2480
2487
|
white-space:nowrap;
|
|
2481
2488
|
}
|
|
2482
|
-
.bp_main_module_tableHeader--
|
|
2489
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e .bp_main_module_columnNameWrapper--1316e:focus-visible{
|
|
2483
2490
|
outline:none;
|
|
2484
2491
|
}
|
|
2485
|
-
.bp_main_module_tableHeader--
|
|
2492
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e .bp_main_module_columnNameWrapper--1316e.bp_main_module_focusVisible--1316e{
|
|
2486
2493
|
outline:var(--border-2) solid var(--outline-focus-color);
|
|
2487
2494
|
outline-offset:var(--outline-offset-focus-header);
|
|
2488
2495
|
}
|
|
2489
|
-
.bp_main_module_tableHeader--
|
|
2496
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e[colspan]{
|
|
2490
2497
|
text-align:center;
|
|
2491
2498
|
}
|
|
2492
|
-
.bp_main_module_tableHeader--
|
|
2499
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e .bp_main_module_rotateArrow--1316e{
|
|
2493
2500
|
transform:rotateX(180deg);
|
|
2494
2501
|
}
|
|
2495
|
-
.bp_main_module_tableHeader--
|
|
2502
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e .bp_main_module_sorted--1316e{
|
|
2496
2503
|
color:var(--text-text-on-light);
|
|
2497
2504
|
font-weight:bold;
|
|
2498
2505
|
}
|
|
2499
|
-
.bp_main_module_tableHeader--
|
|
2506
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e .bp_main_module_sortingFlexWrapper--1316e{
|
|
2500
2507
|
align-items:center;
|
|
2501
2508
|
display:flex;
|
|
2502
2509
|
gap:var(--space-2);
|
|
2503
2510
|
padding:var(--space-2) var(--space-3);
|
|
2504
2511
|
position:relative;
|
|
2505
2512
|
}
|
|
2506
|
-
.bp_main_module_tableHeader--
|
|
2513
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e .bp_main_module_sortingFlexWrapper--1316e svg{
|
|
2507
2514
|
flex-shrink:0;
|
|
2508
2515
|
}
|
|
2509
|
-
.bp_main_module_tableHeader--
|
|
2516
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e .bp_main_module_columnResizer--1316e{
|
|
2510
2517
|
background-color:var(--border-tab-border-hover);
|
|
2511
2518
|
flex:0 0 auto;
|
|
2512
2519
|
height:var(--size-6);
|
|
@@ -2515,47 +2522,47 @@
|
|
|
2515
2522
|
touch-action:none;
|
|
2516
2523
|
width:var(--border-2);
|
|
2517
2524
|
}
|
|
2518
|
-
.bp_main_module_tableHeader--
|
|
2525
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e .bp_main_module_columnResizer--1316e[data-resizable-direction=both]{
|
|
2519
2526
|
cursor:ew-resize;
|
|
2520
2527
|
}
|
|
2521
|
-
.bp_main_module_tableHeader--
|
|
2528
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e .bp_main_module_columnResizer--1316e[data-resizable-direction=left]{
|
|
2522
2529
|
cursor:e-resize;
|
|
2523
2530
|
}
|
|
2524
|
-
.bp_main_module_tableHeader--
|
|
2531
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e .bp_main_module_columnResizer--1316e[data-resizable-direction=right]{
|
|
2525
2532
|
cursor:w-resize;
|
|
2526
2533
|
}
|
|
2527
|
-
.bp_main_module_tableHeader--
|
|
2534
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e .bp_main_module_columnResizer--1316e[data-focus-visible]{
|
|
2528
2535
|
outline:var(--border-2) solid var(--outline-focus-color);
|
|
2529
2536
|
outline-offset:var(--outline-offset-focus-resizer);
|
|
2530
2537
|
}
|
|
2531
|
-
.bp_main_module_tableHeader--
|
|
2538
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e:last-of-type .bp_main_module_columnResizer--1316e{
|
|
2532
2539
|
display:none;
|
|
2533
2540
|
}
|
|
2534
|
-
.bp_main_module_tableHeader--
|
|
2541
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e:hover:not([data-sort-direction])[data-allows-sorting],.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e[data-focus-visible]:not([data-sort-direction])[data-allows-sorting]{
|
|
2535
2542
|
color:var(--text-text-on-light);
|
|
2536
2543
|
font-weight:bold;
|
|
2537
2544
|
}
|
|
2538
|
-
.bp_main_module_tableHeader--
|
|
2545
|
+
.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e:hover:not([data-sort-direction]) svg,.bp_main_module_tableHeader--1316e .bp_main_module_column--1316e[data-focus-visible]:not([data-sort-direction]) svg{
|
|
2539
2546
|
transform:rotateX(180deg);
|
|
2540
2547
|
visibility:visible;
|
|
2541
2548
|
}
|
|
2542
2549
|
|
|
2543
|
-
.bp_main_module_column--
|
|
2550
|
+
.bp_main_module_column--1316e.bp_main_module_droppableColumn--1316e{
|
|
2544
2551
|
min-width:160px;
|
|
2545
2552
|
}
|
|
2546
2553
|
|
|
2547
|
-
.bp_main_module_column--
|
|
2554
|
+
.bp_main_module_column--1316e.bp_main_module_actionColumn--1316e{
|
|
2548
2555
|
min-width:1px;
|
|
2549
2556
|
}
|
|
2550
2557
|
|
|
2551
|
-
.bp_main_module_column--
|
|
2558
|
+
.bp_main_module_column--1316e.bp_main_module_hiddenColumn--1316e{
|
|
2552
2559
|
display:none;
|
|
2553
2560
|
}
|
|
2554
2561
|
|
|
2555
|
-
.bp_main_module_tableBody--
|
|
2562
|
+
.bp_main_module_tableBody--1316e[data-empty]{
|
|
2556
2563
|
text-align:center;
|
|
2557
2564
|
}
|
|
2558
|
-
.bp_main_module_tableBody--
|
|
2565
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e{
|
|
2559
2566
|
background:var(--item-background);
|
|
2560
2567
|
border-radius:var(--border-radius);
|
|
2561
2568
|
color:var(--text-text-on-light);
|
|
@@ -2566,7 +2573,7 @@
|
|
|
2566
2573
|
position:relative;
|
|
2567
2574
|
transform:translateZ(0);
|
|
2568
2575
|
}
|
|
2569
|
-
.bp_main_module_tableBody--
|
|
2576
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e::after{
|
|
2570
2577
|
background:#0000;
|
|
2571
2578
|
border-top:var(--border-1) solid var(--gray-10);
|
|
2572
2579
|
box-sizing:border-box;
|
|
@@ -2579,20 +2586,20 @@
|
|
|
2579
2586
|
width:100%;
|
|
2580
2587
|
z-index:999;
|
|
2581
2588
|
}
|
|
2582
|
-
.bp_main_module_tableBody--
|
|
2589
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[aria-selected=true]{
|
|
2583
2590
|
--item-background:var(--box-blue-05);
|
|
2584
2591
|
}
|
|
2585
|
-
.bp_main_module_tableBody--
|
|
2592
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[aria-selected=true]::after{
|
|
2586
2593
|
border:var(--border-2) solid var(--outline-select-color);
|
|
2587
2594
|
border-radius:var(--border-radius);
|
|
2588
2595
|
}
|
|
2589
|
-
.bp_main_module_tableBody--
|
|
2596
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[aria-selected=true] .bp_main_module_cell--1316e .bp_main_module_actionsWrapper--1316e{
|
|
2590
2597
|
opacity:1;
|
|
2591
2598
|
}
|
|
2592
|
-
.bp_main_module_tableBody--
|
|
2599
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[aria-selected=true] .bp_main_module_cell--1316e .bp_main_module_actionsWrapper--1316e .bp_main_module_actionChildren--1316e{
|
|
2593
2600
|
display:none;
|
|
2594
2601
|
}
|
|
2595
|
-
.bp_main_module_tableBody--
|
|
2602
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e .bp_main_module_cell--1316e{
|
|
2596
2603
|
max-width:0;
|
|
2597
2604
|
outline:none;
|
|
2598
2605
|
overflow:hidden;
|
|
@@ -2602,25 +2609,25 @@
|
|
|
2602
2609
|
transform:translateZ(0);
|
|
2603
2610
|
white-space:nowrap;
|
|
2604
2611
|
}
|
|
2605
|
-
.bp_main_module_tableBody--
|
|
2612
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e .bp_main_module_cell--1316e[data-focus-visible]{
|
|
2606
2613
|
outline:var(--border-2) solid var(--outline-focus-color);
|
|
2607
2614
|
outline-offset:var(--outline-offset-focus-cell);
|
|
2608
2615
|
position:relative;
|
|
2609
2616
|
}
|
|
2610
|
-
.bp_main_module_tableBody--
|
|
2617
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e .bp_main_module_cell--1316e:first-child{
|
|
2611
2618
|
border-radius:var(--border-radius) 0 0 var(--border-radius);
|
|
2612
2619
|
}
|
|
2613
|
-
.bp_main_module_tableBody--
|
|
2620
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e .bp_main_module_cell--1316e:last-child{
|
|
2614
2621
|
border-radius:0 var(--border-radius) var(--border-radius) 0;
|
|
2615
2622
|
}
|
|
2616
|
-
.bp_main_module_tableBody--
|
|
2623
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e .bp_main_module_cell--1316e.bp_main_module_actions--1316e{
|
|
2617
2624
|
overflow:unset;
|
|
2618
2625
|
padding:0;
|
|
2619
2626
|
position:sticky;
|
|
2620
2627
|
right:0;
|
|
2621
2628
|
width:var(--size-6);
|
|
2622
2629
|
}
|
|
2623
|
-
.bp_main_module_tableBody--
|
|
2630
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e .bp_main_module_cell--1316e .bp_main_module_actionsWrapper--1316e{
|
|
2624
2631
|
align-items:center;
|
|
2625
2632
|
background:var(--item-background);
|
|
2626
2633
|
bottom:0;
|
|
@@ -2634,7 +2641,7 @@
|
|
|
2634
2641
|
right:var(--size-4);
|
|
2635
2642
|
top:0;
|
|
2636
2643
|
}
|
|
2637
|
-
.bp_main_module_tableBody--
|
|
2644
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e .bp_main_module_cell--1316e .bp_main_module_actionsWrapper--1316e::before{
|
|
2638
2645
|
box-shadow:-.25rem 0 .625rem .625rem var(--item-background);
|
|
2639
2646
|
content:"";
|
|
2640
2647
|
display:block;
|
|
@@ -2644,68 +2651,68 @@
|
|
|
2644
2651
|
width:0;
|
|
2645
2652
|
z-index:0;
|
|
2646
2653
|
}
|
|
2647
|
-
.bp_main_module_tableBody--
|
|
2654
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e .bp_main_module_cell--1316e .bp_main_module_actionsWrapper--1316e[data-state=open]{
|
|
2648
2655
|
opacity:1;
|
|
2649
2656
|
}
|
|
2650
|
-
.bp_main_module_tableBody--
|
|
2657
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e .bp_main_module_cell--1316e .bp_main_module_actionsWrapper--1316e[data-state=open] .bp_main_module_actionChildren--1316e{
|
|
2651
2658
|
display:block;
|
|
2652
2659
|
}
|
|
2653
|
-
.bp_main_module_tableBody--
|
|
2660
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e .bp_main_module_cell--1316e.bp_main_module_isCellHidden--1316e{
|
|
2654
2661
|
display:none;
|
|
2655
2662
|
}
|
|
2656
|
-
.bp_main_module_tableBody--
|
|
2663
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-dragging]{
|
|
2657
2664
|
opacity:.5;
|
|
2658
2665
|
transform:translateZ(0);
|
|
2659
2666
|
}
|
|
2660
|
-
.bp_main_module_tableBody--
|
|
2667
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-focus-visible]{
|
|
2661
2668
|
outline:var(--border-2) solid var(--outline-focus-color);
|
|
2662
2669
|
outline-offset:var(--outline-offset-focus-row);
|
|
2663
2670
|
}
|
|
2664
|
-
.bp_main_module_tableBody--
|
|
2671
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-focus-visible][aria-selected=true]{
|
|
2665
2672
|
background:var(--item-background);
|
|
2666
2673
|
outline-offset:var(--outline-offset-focus-and-selected-row);
|
|
2667
2674
|
}
|
|
2668
|
-
.bp_main_module_tableBody--
|
|
2675
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e:last-child::after{
|
|
2669
2676
|
border-bottom:var(--border-1) solid var(--gray-10);
|
|
2670
2677
|
}
|
|
2671
|
-
.bp_main_module_tableBody--
|
|
2678
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e:last-child[aria-selected=true]::after{
|
|
2672
2679
|
border-bottom:var(--border-2) solid var(--outline-select-color);
|
|
2673
2680
|
}
|
|
2674
|
-
.bp_main_module_tableBody--
|
|
2681
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e:focus-within,.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-focus-visible],.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-hovered]{
|
|
2675
2682
|
z-index:1;
|
|
2676
2683
|
}
|
|
2677
|
-
.bp_main_module_tableBody--
|
|
2684
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e:focus-within:not([aria-selected=true])::after,.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-focus-visible]:not([aria-selected=true])::after,.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-hovered]:not([aria-selected=true])::after{
|
|
2678
2685
|
border-bottom:var(--border-1) solid #0000;
|
|
2679
2686
|
border-radius:var(--border-radius);
|
|
2680
2687
|
border-top:var(--border-1) solid #0000;
|
|
2681
2688
|
box-shadow:var(--dropshadow-2);
|
|
2682
2689
|
}
|
|
2683
|
-
.bp_main_module_tableBody--
|
|
2690
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e:focus-within:last-child:not([aria-selected=true])::after,.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-focus-visible]:last-child:not([aria-selected=true])::after,.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-hovered]:last-child:not([aria-selected=true])::after{
|
|
2684
2691
|
border-bottom:var(--border-1) solid #0000;
|
|
2685
2692
|
}
|
|
2686
|
-
.bp_main_module_tableBody--
|
|
2693
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e:focus-within + :not([data-hovered], [data-focus-visible], [aria-selected=true])::after, .bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-focus-visible] + :not([data-hovered], [data-focus-visible], [aria-selected=true])::after, .bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-hovered] + :not([data-hovered], [data-focus-visible], [aria-selected=true])::after{
|
|
2687
2694
|
border-top:var(--border-1) solid #0000;
|
|
2688
2695
|
}
|
|
2689
|
-
.bp_main_module_tableBody--
|
|
2696
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e:focus-within[data-dragging] .bp_main_module_actionsWrapper--1316e,.bp_main_module_tableBody--1316e .bp_main_module_row--1316e:focus-within[data-pressed] .bp_main_module_actionsWrapper--1316e,.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-focus-visible][data-dragging] .bp_main_module_actionsWrapper--1316e,.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-focus-visible][data-pressed] .bp_main_module_actionsWrapper--1316e,.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-hovered][data-dragging] .bp_main_module_actionsWrapper--1316e,.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-hovered][data-pressed] .bp_main_module_actionsWrapper--1316e{
|
|
2690
2697
|
opacity:1;
|
|
2691
2698
|
}
|
|
2692
|
-
.bp_main_module_tableBody--
|
|
2699
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e:focus-within:not(:is([data-focus-visible], [aria-selected=true]))::after, .bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-focus-visible]:not(:is([data-focus-visible], [aria-selected=true]))::after, .bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-hovered]:not(:is([data-focus-visible], [aria-selected=true]))::after{
|
|
2693
2700
|
border:var(--border-1) solid var(--gray-10);
|
|
2694
2701
|
border-radius:var(--border-radius);
|
|
2695
2702
|
}
|
|
2696
|
-
.bp_main_module_tableBody--
|
|
2703
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e:focus-within .bp_main_module_cell--1316e .bp_main_module_actionsWrapper--1316e,.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-focus-visible] .bp_main_module_cell--1316e .bp_main_module_actionsWrapper--1316e,.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-hovered] .bp_main_module_cell--1316e .bp_main_module_actionsWrapper--1316e{
|
|
2697
2704
|
opacity:1;
|
|
2698
2705
|
}
|
|
2699
|
-
.bp_main_module_tableBody--
|
|
2706
|
+
.bp_main_module_tableBody--1316e .bp_main_module_row--1316e:focus-within .bp_main_module_cell--1316e .bp_main_module_actionsWrapper--1316e .bp_main_module_actionChildren--1316e,.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-focus-visible] .bp_main_module_cell--1316e .bp_main_module_actionsWrapper--1316e .bp_main_module_actionChildren--1316e,.bp_main_module_tableBody--1316e .bp_main_module_row--1316e[data-hovered] .bp_main_module_cell--1316e .bp_main_module_actionsWrapper--1316e .bp_main_module_actionChildren--1316e{
|
|
2700
2707
|
display:block;
|
|
2701
2708
|
}
|
|
2702
2709
|
@supports selector(:has(*)){
|
|
2703
|
-
.bp_main_module_row--
|
|
2710
|
+
.bp_main_module_row--1316e[aria-selected=true] + .bp_main_module_dropIndicator--1316e + [aria-selected=true]::after,.bp_main_module_row--1316e[aria-selected=true] + [aria-selected=true] .bp_main_module_cell--1316e:first-child,.bp_main_module_row--1316e[aria-selected=true] + [aria-selected=true] .bp_main_module_cell--1316e:last-child,.bp_main_module_row--1316e[aria-selected=true] + [aria-selected=true]::after{
|
|
2704
2711
|
border-start-end-radius:0;
|
|
2705
2712
|
border-start-start-radius:0;
|
|
2706
2713
|
border-top-width:var(--border-1);
|
|
2707
2714
|
}
|
|
2708
|
-
.bp_main_module_row--
|
|
2715
|
+
.bp_main_module_row--1316e[aria-selected=true]:has(+ .bp_main_module_dropIndicator--1316e + [aria-selected=true]) .bp_main_module_cell--1316e:last-child,.bp_main_module_row--1316e[aria-selected=true]:has(+ .bp_main_module_dropIndicator--1316e + [aria-selected=true])::after,.bp_main_module_row--1316e[aria-selected=true]:has(+ [aria-selected=true]) .bp_main_module_cell--1316e:first-child,.bp_main_module_row--1316e[aria-selected=true]:has(+ [aria-selected=true])::after{
|
|
2709
2716
|
border-bottom-width:var(--border-1);
|
|
2710
2717
|
border-end-end-radius:0;
|
|
2711
2718
|
border-end-start-radius:0;
|
|
@@ -2716,6 +2723,169 @@
|
|
|
2716
2723
|
transform:translateZ(0);
|
|
2717
2724
|
}
|
|
2718
2725
|
|
|
2726
|
+
.bp_dropdown_menu_module_content--525b5{
|
|
2727
|
+
background-color:var(--surface-menu-surface);
|
|
2728
|
+
border:var(--border-1) solid var(--border-card-border);
|
|
2729
|
+
border-radius:var(--radius-3);
|
|
2730
|
+
box-shadow:var(--dropshadow-3);
|
|
2731
|
+
box-sizing:border-box;
|
|
2732
|
+
color:var(--text-text-on-light);
|
|
2733
|
+
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
2734
|
+
font-size:.875rem;
|
|
2735
|
+
font-weight:400;
|
|
2736
|
+
letter-spacing:.01875rem;
|
|
2737
|
+
line-height:1.25rem;
|
|
2738
|
+
max-height:var(--blueprint-web-dropdown-menu-max-height, var(--radix-dropdown-menu-content-available-height));
|
|
2739
|
+
max-width:min(var(--blueprint-web-dropdown-content-max-width, 50vw), var(--radix-dropdown-menu-content-available-width));
|
|
2740
|
+
min-width:var(--blueprint-web-dropdown-content-min-width);
|
|
2741
|
+
overflow-y:auto;
|
|
2742
|
+
padding:var(--space-3);
|
|
2743
|
+
text-decoration:none;
|
|
2744
|
+
text-transform:none;
|
|
2745
|
+
z-index:2147483647;
|
|
2746
|
+
}
|
|
2747
|
+
.bp_dropdown_menu_module_content--525b5[data-menu-fullscreen=true]{
|
|
2748
|
+
border:unset;
|
|
2749
|
+
border-radius:unset;
|
|
2750
|
+
display:flex;
|
|
2751
|
+
flex-direction:column;
|
|
2752
|
+
height:100vh;
|
|
2753
|
+
max-height:none;
|
|
2754
|
+
max-width:none;
|
|
2755
|
+
overflow:hidden;
|
|
2756
|
+
padding:unset;
|
|
2757
|
+
position:relative;
|
|
2758
|
+
width:100vw;
|
|
2759
|
+
}
|
|
2760
|
+
.bp_dropdown_menu_module_content--525b5[data-menu-fullscreen=true] .bp_dropdown_menu_module_fullScreenContent--525b5{
|
|
2761
|
+
overflow-y:auto;
|
|
2762
|
+
padding:var(--space-3);
|
|
2763
|
+
}
|
|
2764
|
+
|
|
2765
|
+
.bp_dropdown_menu_module_ellipsis--525b5{
|
|
2766
|
+
overflow:hidden;
|
|
2767
|
+
text-overflow:ellipsis;
|
|
2768
|
+
white-space:nowrap;
|
|
2769
|
+
}
|
|
2770
|
+
|
|
2771
|
+
.bp_dropdown_menu_module_checkmark--525b5{
|
|
2772
|
+
align-items:center;
|
|
2773
|
+
display:inline-flex;
|
|
2774
|
+
justify-content:center;
|
|
2775
|
+
left:var(--space-2);
|
|
2776
|
+
position:absolute;
|
|
2777
|
+
}
|
|
2778
|
+
|
|
2779
|
+
.bp_dropdown_menu_module_item--525b5,.bp_dropdown_menu_module_subMenuTrigger--525b5{
|
|
2780
|
+
align-items:center;
|
|
2781
|
+
border:var(--border-2) solid #0000;
|
|
2782
|
+
border-radius:var(--radius-3);
|
|
2783
|
+
cursor:pointer;
|
|
2784
|
+
display:flex;
|
|
2785
|
+
outline:none;
|
|
2786
|
+
padding:calc(var(--border-8) - var(--border-2));
|
|
2787
|
+
position:relative;
|
|
2788
|
+
-webkit-user-select:none;
|
|
2789
|
+
user-select:none;
|
|
2790
|
+
}
|
|
2791
|
+
.bp_dropdown_menu_module_item--525b5[data-disabled],.bp_dropdown_menu_module_subMenuTrigger--525b5[data-disabled]{
|
|
2792
|
+
opacity:60%;
|
|
2793
|
+
pointer-events:none;
|
|
2794
|
+
}
|
|
2795
|
+
.bp_dropdown_menu_module_item--525b5[data-highlighted],.bp_dropdown_menu_module_subMenuTrigger--525b5[data-highlighted]{
|
|
2796
|
+
background-color:var(--surface-menu-surface-hover);
|
|
2797
|
+
border:var(--border-2) solid var(--outline-focus-on-light);
|
|
2798
|
+
}
|
|
2799
|
+
.bp_dropdown_menu_module_item--525b5:active,.bp_dropdown_menu_module_subMenuTrigger--525b5:active{
|
|
2800
|
+
background-color:var(--surface-menu-surface-hover);
|
|
2801
|
+
border:var(--border-2) solid #0000;
|
|
2802
|
+
}
|
|
2803
|
+
.bp_dropdown_menu_module_item--525b5:hover,.bp_dropdown_menu_module_item--525b5[data-state=open],.bp_dropdown_menu_module_subMenuTrigger--525b5:hover,.bp_dropdown_menu_module_subMenuTrigger--525b5[data-state=open]{
|
|
2804
|
+
background-color:var(--surface-menu-surface-hover);
|
|
2805
|
+
}
|
|
2806
|
+
.bp_dropdown_menu_module_item--525b5.bp_dropdown_menu_module_checkboxItem--525b5,.bp_dropdown_menu_module_item--525b5.bp_dropdown_menu_module_radioItem--525b5,.bp_dropdown_menu_module_subMenuTrigger--525b5.bp_dropdown_menu_module_checkboxItem--525b5,.bp_dropdown_menu_module_subMenuTrigger--525b5.bp_dropdown_menu_module_radioItem--525b5{
|
|
2807
|
+
padding:.4375rem .5rem .4375rem calc(var(--space-2) + var(--space-4) + var(--space-4));
|
|
2808
|
+
}
|
|
2809
|
+
|
|
2810
|
+
.bp_dropdown_menu_module_dropdownMenuItemSeparator--525b5{
|
|
2811
|
+
margin-block:var(--space-2);
|
|
2812
|
+
}
|
|
2813
|
+
|
|
2814
|
+
.bp_dropdown_menu_module_menuHeader--525b5{
|
|
2815
|
+
align-items:center;
|
|
2816
|
+
box-shadow:var(--dropshadow-1);
|
|
2817
|
+
display:grid;
|
|
2818
|
+
gap:var(--space-2);
|
|
2819
|
+
grid-template-areas:"submenu-close content close";
|
|
2820
|
+
grid-template-columns:auto minmax(0, 1fr) auto;
|
|
2821
|
+
padding:var(--space-3);
|
|
2822
|
+
}
|
|
2823
|
+
|
|
2824
|
+
.bp_dropdown_menu_module_headerTextContent--525b5{
|
|
2825
|
+
display:grid;
|
|
2826
|
+
}
|
|
2827
|
+
|
|
2828
|
+
.bp_dropdown_menu_module_submenuCloseButton--525b5{
|
|
2829
|
+
grid-area:submenu-close;
|
|
2830
|
+
}
|
|
2831
|
+
|
|
2832
|
+
.bp_dropdown_menu_module_menuCloseButton--525b5{
|
|
2833
|
+
grid-area:close;
|
|
2834
|
+
}
|
|
2835
|
+
|
|
2836
|
+
.bp_divider_module_divider--05757{
|
|
2837
|
+
background-color:var(--border-divider-border);
|
|
2838
|
+
border:none;
|
|
2839
|
+
flex-shrink:0;
|
|
2840
|
+
height:var(--border-1);
|
|
2841
|
+
margin-block:0;
|
|
2842
|
+
}
|
|
2843
|
+
|
|
2844
|
+
.bp_menu_item_sections_module_menuItemMainContent--4e1cf{
|
|
2845
|
+
display:flex;
|
|
2846
|
+
flex:1;
|
|
2847
|
+
flex-direction:column;
|
|
2848
|
+
}
|
|
2849
|
+
.bp_menu_item_sections_module_menuItemMainContent--4e1cf .bp_menu_item_sections_module_label--4e1cf{
|
|
2850
|
+
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
2851
|
+
font-size:.875rem;
|
|
2852
|
+
font-weight:400;
|
|
2853
|
+
letter-spacing:.01875rem;
|
|
2854
|
+
line-height:1.25rem;
|
|
2855
|
+
text-decoration:none;
|
|
2856
|
+
text-transform:none;
|
|
2857
|
+
}
|
|
2858
|
+
.bp_menu_item_sections_module_menuItemMainContent--4e1cf .bp_menu_item_sections_module_label--4e1cf.bp_menu_item_sections_module_bold--4e1cf{
|
|
2859
|
+
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
2860
|
+
font-size:.875rem;
|
|
2861
|
+
font-weight:700;
|
|
2862
|
+
letter-spacing:.01875rem;
|
|
2863
|
+
line-height:1.25rem;
|
|
2864
|
+
text-decoration:none;
|
|
2865
|
+
text-transform:none;
|
|
2866
|
+
}
|
|
2867
|
+
.bp_menu_item_sections_module_menuItemMainContent--4e1cf .bp_menu_item_sections_module_description--4e1cf{
|
|
2868
|
+
color:var(--text-text-on-light-secondary);
|
|
2869
|
+
}
|
|
2870
|
+
|
|
2871
|
+
.bp_menu_item_sections_module_menuItemMainContent--4e1cf .bp_menu_item_sections_module_description--4e1cf,.bp_menu_item_sections_module_menuItemSideContent--4e1cf{
|
|
2872
|
+
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
2873
|
+
font-size:.875rem;
|
|
2874
|
+
font-weight:400;
|
|
2875
|
+
letter-spacing:.01875rem;
|
|
2876
|
+
line-height:1.25rem;
|
|
2877
|
+
text-decoration:none;
|
|
2878
|
+
text-transform:none;
|
|
2879
|
+
}
|
|
2880
|
+
|
|
2881
|
+
.bp_menu_item_sections_module_menuItemSideContent--4e1cf{
|
|
2882
|
+
align-items:center;
|
|
2883
|
+
display:flex;
|
|
2884
|
+
}
|
|
2885
|
+
.bp_menu_item_sections_module_menuItemSideContent--4e1cf.bp_menu_item_sections_module_textOnLightSecondary--4e1cf{
|
|
2886
|
+
color:var(--text-text-on-light-secondary);
|
|
2887
|
+
}
|
|
2888
|
+
|
|
2719
2889
|
.bp_sticky_cell_module_stickyCell--5ae12{
|
|
2720
2890
|
background:inherit;
|
|
2721
2891
|
background-clip:content-box;
|
|
@@ -3064,14 +3234,6 @@
|
|
|
3064
3234
|
z-index:380;
|
|
3065
3235
|
}
|
|
3066
3236
|
|
|
3067
|
-
.bp_divider_module_divider--05757{
|
|
3068
|
-
background-color:var(--border-divider-border);
|
|
3069
|
-
border:none;
|
|
3070
|
-
flex-shrink:0;
|
|
3071
|
-
height:var(--border-1);
|
|
3072
|
-
margin-block:0;
|
|
3073
|
-
}
|
|
3074
|
-
|
|
3075
3237
|
.bp_empty_state_module_emptyState--db773{
|
|
3076
3238
|
align-items:center;
|
|
3077
3239
|
display:flex;
|
|
@@ -4192,161 +4354,6 @@ table.bp_inline_table_module_inlineTable--b023b tr:not(:last-child) td{
|
|
|
4192
4354
|
}
|
|
4193
4355
|
}
|
|
4194
4356
|
|
|
4195
|
-
.bp_dropdown_menu_module_content--525b5{
|
|
4196
|
-
background-color:var(--surface-menu-surface);
|
|
4197
|
-
border:var(--border-1) solid var(--border-card-border);
|
|
4198
|
-
border-radius:var(--radius-3);
|
|
4199
|
-
box-shadow:var(--dropshadow-3);
|
|
4200
|
-
box-sizing:border-box;
|
|
4201
|
-
color:var(--text-text-on-light);
|
|
4202
|
-
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
4203
|
-
font-size:.875rem;
|
|
4204
|
-
font-weight:400;
|
|
4205
|
-
letter-spacing:.01875rem;
|
|
4206
|
-
line-height:1.25rem;
|
|
4207
|
-
max-height:var(--blueprint-web-dropdown-menu-max-height, var(--radix-dropdown-menu-content-available-height));
|
|
4208
|
-
max-width:min(var(--blueprint-web-dropdown-content-max-width, 50vw), var(--radix-dropdown-menu-content-available-width));
|
|
4209
|
-
min-width:var(--blueprint-web-dropdown-content-min-width);
|
|
4210
|
-
overflow-y:auto;
|
|
4211
|
-
padding:var(--space-3);
|
|
4212
|
-
text-decoration:none;
|
|
4213
|
-
text-transform:none;
|
|
4214
|
-
z-index:2147483647;
|
|
4215
|
-
}
|
|
4216
|
-
.bp_dropdown_menu_module_content--525b5[data-menu-fullscreen=true]{
|
|
4217
|
-
border:unset;
|
|
4218
|
-
border-radius:unset;
|
|
4219
|
-
display:flex;
|
|
4220
|
-
flex-direction:column;
|
|
4221
|
-
height:100vh;
|
|
4222
|
-
max-height:none;
|
|
4223
|
-
max-width:none;
|
|
4224
|
-
overflow:hidden;
|
|
4225
|
-
padding:unset;
|
|
4226
|
-
position:relative;
|
|
4227
|
-
width:100vw;
|
|
4228
|
-
}
|
|
4229
|
-
.bp_dropdown_menu_module_content--525b5[data-menu-fullscreen=true] .bp_dropdown_menu_module_fullScreenContent--525b5{
|
|
4230
|
-
overflow-y:auto;
|
|
4231
|
-
padding:var(--space-3);
|
|
4232
|
-
}
|
|
4233
|
-
|
|
4234
|
-
.bp_dropdown_menu_module_ellipsis--525b5{
|
|
4235
|
-
overflow:hidden;
|
|
4236
|
-
text-overflow:ellipsis;
|
|
4237
|
-
white-space:nowrap;
|
|
4238
|
-
}
|
|
4239
|
-
|
|
4240
|
-
.bp_dropdown_menu_module_checkmark--525b5{
|
|
4241
|
-
align-items:center;
|
|
4242
|
-
display:inline-flex;
|
|
4243
|
-
justify-content:center;
|
|
4244
|
-
left:var(--space-2);
|
|
4245
|
-
position:absolute;
|
|
4246
|
-
}
|
|
4247
|
-
|
|
4248
|
-
.bp_dropdown_menu_module_item--525b5,.bp_dropdown_menu_module_subMenuTrigger--525b5{
|
|
4249
|
-
align-items:center;
|
|
4250
|
-
border:var(--border-2) solid #0000;
|
|
4251
|
-
border-radius:var(--radius-3);
|
|
4252
|
-
cursor:pointer;
|
|
4253
|
-
display:flex;
|
|
4254
|
-
outline:none;
|
|
4255
|
-
padding:calc(var(--border-8) - var(--border-2));
|
|
4256
|
-
position:relative;
|
|
4257
|
-
-webkit-user-select:none;
|
|
4258
|
-
user-select:none;
|
|
4259
|
-
}
|
|
4260
|
-
.bp_dropdown_menu_module_item--525b5[data-disabled],.bp_dropdown_menu_module_subMenuTrigger--525b5[data-disabled]{
|
|
4261
|
-
opacity:60%;
|
|
4262
|
-
pointer-events:none;
|
|
4263
|
-
}
|
|
4264
|
-
.bp_dropdown_menu_module_item--525b5[data-highlighted],.bp_dropdown_menu_module_subMenuTrigger--525b5[data-highlighted]{
|
|
4265
|
-
background-color:var(--surface-menu-surface-hover);
|
|
4266
|
-
border:var(--border-2) solid var(--outline-focus-on-light);
|
|
4267
|
-
}
|
|
4268
|
-
.bp_dropdown_menu_module_item--525b5:active,.bp_dropdown_menu_module_subMenuTrigger--525b5:active{
|
|
4269
|
-
background-color:var(--surface-menu-surface-hover);
|
|
4270
|
-
border:var(--border-2) solid #0000;
|
|
4271
|
-
}
|
|
4272
|
-
.bp_dropdown_menu_module_item--525b5:hover,.bp_dropdown_menu_module_item--525b5[data-state=open],.bp_dropdown_menu_module_subMenuTrigger--525b5:hover,.bp_dropdown_menu_module_subMenuTrigger--525b5[data-state=open]{
|
|
4273
|
-
background-color:var(--surface-menu-surface-hover);
|
|
4274
|
-
}
|
|
4275
|
-
.bp_dropdown_menu_module_item--525b5.bp_dropdown_menu_module_checkboxItem--525b5,.bp_dropdown_menu_module_item--525b5.bp_dropdown_menu_module_radioItem--525b5,.bp_dropdown_menu_module_subMenuTrigger--525b5.bp_dropdown_menu_module_checkboxItem--525b5,.bp_dropdown_menu_module_subMenuTrigger--525b5.bp_dropdown_menu_module_radioItem--525b5{
|
|
4276
|
-
padding:.4375rem .5rem .4375rem calc(var(--space-2) + var(--space-4) + var(--space-4));
|
|
4277
|
-
}
|
|
4278
|
-
|
|
4279
|
-
.bp_dropdown_menu_module_dropdownMenuItemSeparator--525b5{
|
|
4280
|
-
margin-block:var(--space-2);
|
|
4281
|
-
}
|
|
4282
|
-
|
|
4283
|
-
.bp_dropdown_menu_module_menuHeader--525b5{
|
|
4284
|
-
align-items:center;
|
|
4285
|
-
box-shadow:var(--dropshadow-1);
|
|
4286
|
-
display:grid;
|
|
4287
|
-
gap:var(--space-2);
|
|
4288
|
-
grid-template-areas:"submenu-close content close";
|
|
4289
|
-
grid-template-columns:auto minmax(0, 1fr) auto;
|
|
4290
|
-
padding:var(--space-3);
|
|
4291
|
-
}
|
|
4292
|
-
|
|
4293
|
-
.bp_dropdown_menu_module_headerTextContent--525b5{
|
|
4294
|
-
display:grid;
|
|
4295
|
-
}
|
|
4296
|
-
|
|
4297
|
-
.bp_dropdown_menu_module_submenuCloseButton--525b5{
|
|
4298
|
-
grid-area:submenu-close;
|
|
4299
|
-
}
|
|
4300
|
-
|
|
4301
|
-
.bp_dropdown_menu_module_menuCloseButton--525b5{
|
|
4302
|
-
grid-area:close;
|
|
4303
|
-
}
|
|
4304
|
-
|
|
4305
|
-
.bp_menu_item_sections_module_menuItemMainContent--4e1cf{
|
|
4306
|
-
display:flex;
|
|
4307
|
-
flex:1;
|
|
4308
|
-
flex-direction:column;
|
|
4309
|
-
}
|
|
4310
|
-
.bp_menu_item_sections_module_menuItemMainContent--4e1cf .bp_menu_item_sections_module_label--4e1cf{
|
|
4311
|
-
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
4312
|
-
font-size:.875rem;
|
|
4313
|
-
font-weight:400;
|
|
4314
|
-
letter-spacing:.01875rem;
|
|
4315
|
-
line-height:1.25rem;
|
|
4316
|
-
text-decoration:none;
|
|
4317
|
-
text-transform:none;
|
|
4318
|
-
}
|
|
4319
|
-
.bp_menu_item_sections_module_menuItemMainContent--4e1cf .bp_menu_item_sections_module_label--4e1cf.bp_menu_item_sections_module_bold--4e1cf{
|
|
4320
|
-
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
4321
|
-
font-size:.875rem;
|
|
4322
|
-
font-weight:700;
|
|
4323
|
-
letter-spacing:.01875rem;
|
|
4324
|
-
line-height:1.25rem;
|
|
4325
|
-
text-decoration:none;
|
|
4326
|
-
text-transform:none;
|
|
4327
|
-
}
|
|
4328
|
-
.bp_menu_item_sections_module_menuItemMainContent--4e1cf .bp_menu_item_sections_module_description--4e1cf{
|
|
4329
|
-
color:var(--text-text-on-light-secondary);
|
|
4330
|
-
}
|
|
4331
|
-
|
|
4332
|
-
.bp_menu_item_sections_module_menuItemMainContent--4e1cf .bp_menu_item_sections_module_description--4e1cf,.bp_menu_item_sections_module_menuItemSideContent--4e1cf{
|
|
4333
|
-
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
4334
|
-
font-size:.875rem;
|
|
4335
|
-
font-weight:400;
|
|
4336
|
-
letter-spacing:.01875rem;
|
|
4337
|
-
line-height:1.25rem;
|
|
4338
|
-
text-decoration:none;
|
|
4339
|
-
text-transform:none;
|
|
4340
|
-
}
|
|
4341
|
-
|
|
4342
|
-
.bp_menu_item_sections_module_menuItemSideContent--4e1cf{
|
|
4343
|
-
align-items:center;
|
|
4344
|
-
display:flex;
|
|
4345
|
-
}
|
|
4346
|
-
.bp_menu_item_sections_module_menuItemSideContent--4e1cf.bp_menu_item_sections_module_textOnLightSecondary--4e1cf{
|
|
4347
|
-
color:var(--text-text-on-light-secondary);
|
|
4348
|
-
}
|
|
4349
|
-
|
|
4350
4357
|
.bp_navigation_menu_module_link--70cc5{
|
|
4351
4358
|
color:var(--text-text-on-light);
|
|
4352
4359
|
font-family:Lato, -apple-system, BlinkMacSystemFont, "San Francisco", "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|