@neo4j-ndl/base 3.2.1 → 3.2.3
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/lib/cjs/tokens/js/storybook-design-token.js +1 -1
- package/lib/cjs/tokens/js/tokens-esm.js +1 -1
- package/lib/cjs/tokens/js/tokens.js +1 -1
- package/lib/esm/tokens/js/storybook-design-token.js +1 -1
- package/lib/esm/tokens/js/tokens-esm.js +1 -1
- package/lib/esm/tokens/js/tokens.js +1 -1
- package/lib/neo4j-ds-styles.css +110 -190
- package/lib/tokens/css/tokens.css +1 -1
- package/lib/tokens/js/tokens-raw.js +1 -1
- package/lib/tokens/js/tokens.js +1 -1
- package/lib/tokens/scss/tokens.scss +1 -1
- package/lib/types/tokens/js/storybook-design-token.d.ts +1 -1
- package/package.json +1 -1
package/lib/neo4j-ds-styles.css
CHANGED
|
@@ -1306,6 +1306,7 @@ a.ndl-btn {
|
|
|
1306
1306
|
outline-width:0px;
|
|
1307
1307
|
}
|
|
1308
1308
|
.ndl-icon-btn:not(.ndl-clean):focus-visible {
|
|
1309
|
+
outline-width:0px;
|
|
1309
1310
|
--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1310
1311
|
--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1311
1312
|
box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
@@ -1318,6 +1319,7 @@ a.ndl-btn {
|
|
|
1318
1319
|
outline-width:0px;
|
|
1319
1320
|
}
|
|
1320
1321
|
.ndl-icon-btn.ndl-clean:focus-visible {
|
|
1322
|
+
outline-width:0px;
|
|
1321
1323
|
--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
|
|
1322
1324
|
--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
|
|
1323
1325
|
box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
|
|
@@ -3378,68 +3380,35 @@ a.ndl-btn {
|
|
|
3378
3380
|
border-bottom-color:rgb(var(--theme-palette-primary-bg-status));
|
|
3379
3381
|
}
|
|
3380
3382
|
:root{
|
|
3381
|
-
--data-grid-hover-color:rgb(
|
|
3382
|
-
--data-grid-cell-hover-color:rgb(227, 228, 230);
|
|
3383
|
+
--data-grid-hover-color:rgb(240, 241, 242);
|
|
3383
3384
|
}
|
|
3384
3385
|
.ndl-theme-dark{
|
|
3385
3386
|
--data-grid-hover-color:rgba(45, 47, 49);
|
|
3386
|
-
--data-grid-cell-hover-color:rgba(55, 58, 60);
|
|
3387
3387
|
}
|
|
3388
|
-
.ndl-data-grid-focusable-cells .ndl-focusable-cell {
|
|
3388
|
+
.ndl-data-grid-focusable-cells .ndl-focusable-cell:not(.ndl-data-grid-th) {
|
|
3389
3389
|
outline:2px solid transparent;
|
|
3390
3390
|
outline-offset:2px;
|
|
3391
3391
|
}
|
|
3392
|
-
.ndl-data-grid-focusable-cells .ndl-focusable-cell:focus
|
|
3393
|
-
.ndl-data-grid-focusable-cells .ndl-focusable-cell:focus-visible
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3397
|
-
|
|
3398
|
-
bottom:-1px;
|
|
3399
|
-
z-index:1;
|
|
3400
|
-
border-width:2px;
|
|
3401
|
-
border-color:rgb(var(--theme-palette-primary-focus));
|
|
3402
|
-
--tw-content:'';
|
|
3403
|
-
content:var(--tw-content);
|
|
3404
|
-
}
|
|
3405
|
-
.ndl-data-grid-root:not(.ndl-data-grid-focusable-cells) .ndl-header-group {
|
|
3406
|
-
outline:2px solid transparent;
|
|
3407
|
-
outline-offset:2px;
|
|
3392
|
+
.ndl-data-grid-focusable-cells .ndl-focusable-cell:not(.ndl-data-grid-th):focus,
|
|
3393
|
+
.ndl-data-grid-focusable-cells .ndl-focusable-cell:not(.ndl-data-grid-th):focus-visible,
|
|
3394
|
+
.ndl-data-grid-focusable-cells .ndl-focusable-cell:not(.ndl-data-grid-th):focus-within {
|
|
3395
|
+
outline-width:2px;
|
|
3396
|
+
outline-offset:-2px;
|
|
3397
|
+
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
3408
3398
|
}
|
|
3409
|
-
.ndl-data-grid-
|
|
3410
|
-
.ndl-data-grid-
|
|
3399
|
+
.ndl-data-grid-focusable-cells .ndl-data-grid-th:focus::before,
|
|
3400
|
+
.ndl-data-grid-focusable-cells .ndl-data-grid-th:focus-visible::before {
|
|
3411
3401
|
position:absolute;
|
|
3412
3402
|
top:0px;
|
|
3413
|
-
left
|
|
3403
|
+
left:0px;
|
|
3414
3404
|
right:0px;
|
|
3415
|
-
bottom
|
|
3405
|
+
bottom:0px;
|
|
3416
3406
|
z-index:1;
|
|
3417
3407
|
border-width:2px;
|
|
3418
3408
|
border-color:rgb(var(--theme-palette-primary-focus));
|
|
3419
3409
|
--tw-content:'';
|
|
3420
3410
|
content:var(--tw-content);
|
|
3421
3411
|
}
|
|
3422
|
-
.ndl-data-grid-thead > .ndl-data-grid-tr .ndl-focusable-cell::before {
|
|
3423
|
-
top:0px;
|
|
3424
|
-
}
|
|
3425
|
-
.ndl-data-grid-thead
|
|
3426
|
-
> .ndl-data-grid-tr
|
|
3427
|
-
> .ndl-focusable-cell:first-child::before {
|
|
3428
|
-
left:0px;
|
|
3429
|
-
}
|
|
3430
|
-
.ndl-data-grid-tbody
|
|
3431
|
-
> .ndl-data-grid-tr
|
|
3432
|
-
> .ndl-data-grid-td.ndl-focusable-cell:first-child::before {
|
|
3433
|
-
left:0px;
|
|
3434
|
-
}
|
|
3435
|
-
.ndl-data-grid-tbody
|
|
3436
|
-
> .ndl-data-grid-tr:first-child
|
|
3437
|
-
> .ndl-data-grid-td.ndl-focusable-cell::before {
|
|
3438
|
-
top:0px;
|
|
3439
|
-
}
|
|
3440
|
-
.ndl-data-grid-tr > .ndl-data-grid-pinned-cell-left + .ndl-focusable-cell::before {
|
|
3441
|
-
left:0px;
|
|
3442
|
-
}
|
|
3443
3412
|
.ndl-data-grid-root{
|
|
3444
3413
|
--header-background:rgb(var(--theme-palette-neutral-bg-weak));
|
|
3445
3414
|
--cell-background:rgb(var(--theme-palette-neutral-bg-weak));
|
|
@@ -3459,41 +3428,26 @@ a.ndl-btn {
|
|
|
3459
3428
|
.ndl-data-grid-root.ndl-data-grid-zebra-striping .ndl-data-grid-tr:nth-child(even){
|
|
3460
3429
|
--cell-background:rgb(var(--theme-palette-neutral-bg-default));
|
|
3461
3430
|
}
|
|
3462
|
-
.ndl-data-grid-root.ndl-data-grid-
|
|
3463
|
-
|
|
3464
|
-
}
|
|
3465
|
-
.ndl-data-grid-root.ndl-data-grid-border-all-sides
|
|
3466
|
-
.ndl-data-grid-td:not(.ndl-focusable-cell:focus):not(
|
|
3467
|
-
.ndl-data-grid-is-resizing
|
|
3468
|
-
):last-child,
|
|
3469
|
-
.ndl-data-grid-root.ndl-data-grid-border-all-sides .ndl-data-grid-th:not(.ndl-focusable-cell:focus):last-child{
|
|
3431
|
+
.ndl-data-grid-root.ndl-data-grid-border-vertical .ndl-data-grid-td:not(.ndl-data-grid-is-resizing):last-child,
|
|
3432
|
+
.ndl-data-grid-root.ndl-data-grid-border-vertical .ndl-data-grid-th:last-child{
|
|
3470
3433
|
border-left-width:1px;
|
|
3471
3434
|
border-style:solid;
|
|
3472
|
-
border-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
3435
|
+
border-left-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
3473
3436
|
}
|
|
3474
|
-
.ndl-data-grid-root.ndl-data-grid-border-
|
|
3437
|
+
.ndl-data-grid-root.ndl-data-grid-border-vertical
|
|
3475
3438
|
.ndl-data-grid-td:not(.ndl-focusable-cell:focus):not(
|
|
3476
3439
|
.ndl-data-grid-is-resizing
|
|
3477
|
-
):not(:nth-last-child(2)),
|
|
3478
|
-
.ndl-data-grid-root.ndl-data-grid-border-
|
|
3440
|
+
):not(:nth-last-child(2)):not(:last-child),
|
|
3441
|
+
.ndl-data-grid-root.ndl-data-grid-border-vertical .ndl-data-grid-th:not(:nth-last-child(2)):not(:last-child){
|
|
3479
3442
|
border-right-width:1px;
|
|
3480
3443
|
border-style:solid;
|
|
3481
|
-
border-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
3444
|
+
border-right-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
3482
3445
|
}
|
|
3483
|
-
.ndl-data-grid-root.ndl-data-grid-border-
|
|
3446
|
+
.ndl-data-grid-root.ndl-data-grid-border-horizontal .ndl-data-grid-tr:not(:last-child),
|
|
3447
|
+
.ndl-data-grid-root.ndl-data-grid-border-horizontal .ndl-data-grid-thead .ndl-data-grid-tr {
|
|
3484
3448
|
border-bottom-width:1px;
|
|
3485
3449
|
border-style:solid;
|
|
3486
|
-
border-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
3487
|
-
}
|
|
3488
|
-
.ndl-data-grid-root.ndl-data-grid-border-all-sides .ndl-data-grid-thead > .ndl-data-grid-tr > .ndl-data-grid-th {
|
|
3489
|
-
border-bottom-width:1px;
|
|
3490
|
-
border-style:solid;
|
|
3491
|
-
border-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
3492
|
-
}
|
|
3493
|
-
.ndl-data-grid-root.ndl-data-grid-border-horizontal .ndl-data-grid-tr > .ndl-data-grid-td {
|
|
3494
|
-
border-bottom-width:1px;
|
|
3495
|
-
border-style:solid;
|
|
3496
|
-
border-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
3450
|
+
border-bottom-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
3497
3451
|
}
|
|
3498
3452
|
.ndl-data-grid-root.ndl-data-grid-header-filled .ndl-data-grid-thead{
|
|
3499
3453
|
--header-background:rgb(var(--theme-palette-neutral-bg-default));
|
|
@@ -3502,6 +3456,13 @@ a.ndl-btn {
|
|
|
3502
3456
|
overflow-x:auto;
|
|
3503
3457
|
flex-grow:1;
|
|
3504
3458
|
}
|
|
3459
|
+
.ndl-data-grid-root .ndl-data-grid-scrollable:has(+ .ndl-data-grid-navigation)
|
|
3460
|
+
.ndl-data-grid-tbody
|
|
3461
|
+
.ndl-data-grid-tr:last-child {
|
|
3462
|
+
border-bottom-width:1px;
|
|
3463
|
+
border-style:solid;
|
|
3464
|
+
border-bottom-color:rgb(var(--theme-palette-neutral-border-weak));
|
|
3465
|
+
}
|
|
3505
3466
|
.ndl-data-grid-root .ndl-div-table {
|
|
3506
3467
|
width:-moz-max-content;
|
|
3507
3468
|
width:max-content;
|
|
@@ -3518,6 +3479,7 @@ a.ndl-btn {
|
|
|
3518
3479
|
}
|
|
3519
3480
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-tr{
|
|
3520
3481
|
display:flex;
|
|
3482
|
+
flex-direction:row;
|
|
3521
3483
|
min-width:100%;
|
|
3522
3484
|
position:relative;
|
|
3523
3485
|
min-height:40px;
|
|
@@ -3537,29 +3499,20 @@ a.ndl-btn {
|
|
|
3537
3499
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-tbody .ndl-data-grid-tr .ndl-data-grid-row-action{
|
|
3538
3500
|
background-color:var(--cell-background);
|
|
3539
3501
|
}
|
|
3540
|
-
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-tbody .ndl-data-grid-tr .ndl-data-grid-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
border:2px solid rgb(var(--theme-palette-primary-focus));
|
|
3544
|
-
}
|
|
3502
|
+
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-tbody .ndl-data-grid-tr .ndl-data-grid-inline-edit {
|
|
3503
|
+
padding:0px;
|
|
3504
|
+
}
|
|
3545
3505
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-tbody .ndl-data-grid-tr .ndl-data-grid-inline-edit input {
|
|
3546
3506
|
height:100%;
|
|
3547
3507
|
width:100%;
|
|
3548
3508
|
background-color:transparent;
|
|
3509
|
+
padding-left:16px;
|
|
3510
|
+
padding-right:16px;
|
|
3549
3511
|
outline:2px solid transparent;
|
|
3550
3512
|
outline-offset:2px;
|
|
3551
3513
|
}
|
|
3552
|
-
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-tbody .ndl-data-grid-tr .ndl-data-grid-
|
|
3553
|
-
|
|
3554
|
-
border:2px solid rgb(var(--theme-palette-primary-focus));
|
|
3555
|
-
}
|
|
3556
|
-
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-tbody .ndl-data-grid-tr .ndl-data-grid-dropdown-cell {
|
|
3557
|
-
overflow:visible;
|
|
3558
|
-
}
|
|
3559
|
-
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-tbody .ndl-data-grid-tr .ndl-data-grid-dropdown-cell:focus-within{
|
|
3560
|
-
z-index:2;
|
|
3561
|
-
border:2px solid rgb(var(--theme-palette-primary-focus));
|
|
3562
|
-
}
|
|
3514
|
+
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-tbody .ndl-data-grid-tr .ndl-data-grid-dropdown-cell{
|
|
3515
|
+
}
|
|
3563
3516
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-tbody .ndl-data-grid-tr .ndl-data-grid-pinned-cell {
|
|
3564
3517
|
position:sticky;
|
|
3565
3518
|
z-index:calc(var(--z-index-alias-overlay) - 1) !important;
|
|
@@ -3617,28 +3570,26 @@ a.ndl-btn {
|
|
|
3617
3570
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-thead.ndl-data-grid-is-resizing .ndl-data-grid-th:not(.ndl-data-grid-is-resizing) .ndl-data-grid-resizer:not(.ndl-data-grid-is-resizing) {
|
|
3618
3571
|
opacity:0;
|
|
3619
3572
|
}
|
|
3620
|
-
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-td
|
|
3621
|
-
--cell-background:var(--data-grid-cell-hover-color);
|
|
3622
|
-
}
|
|
3623
|
-
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-td {
|
|
3573
|
+
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-td{
|
|
3624
3574
|
background-color:var(--cell-background);
|
|
3625
3575
|
position:relative;
|
|
3626
3576
|
display:flex;
|
|
3627
3577
|
height:auto;
|
|
3628
3578
|
align-items:center;
|
|
3579
|
+
overflow:hidden;
|
|
3629
3580
|
text-overflow:ellipsis;
|
|
3630
3581
|
white-space:pre-line;
|
|
3631
3582
|
padding-top:10px;
|
|
3632
3583
|
padding-bottom:10px;
|
|
3633
|
-
padding-left:
|
|
3634
|
-
padding-right:
|
|
3584
|
+
padding-left:16px;
|
|
3585
|
+
padding-right:16px;
|
|
3635
3586
|
color:rgb(var(--theme-palette-neutral-text-default));
|
|
3636
3587
|
font-family:var(--font-font-family-body-medium), sans-serif;
|
|
3637
3588
|
font-size:var(--font-size-body-medium);
|
|
3638
3589
|
font-weight:var(--font-weight-normal);
|
|
3639
3590
|
letter-spacing:0.016rem;
|
|
3640
3591
|
line-height:1.25rem;
|
|
3641
|
-
}
|
|
3592
|
+
}
|
|
3642
3593
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-td.ndl-data-grid-custom-cell {
|
|
3643
3594
|
padding:0px;
|
|
3644
3595
|
}
|
|
@@ -3658,27 +3609,27 @@ a.ndl-btn {
|
|
|
3658
3609
|
z-index:1000;
|
|
3659
3610
|
}
|
|
3660
3611
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th{
|
|
3612
|
+
background-color:var(--header-background);
|
|
3661
3613
|
container-name:data-grid-header-cell;
|
|
3662
|
-
text-align:left;
|
|
3663
3614
|
position:relative;
|
|
3664
|
-
font-weight:bold;
|
|
3665
|
-
border-collapse:separate;
|
|
3666
3615
|
box-sizing:border-box;
|
|
3616
|
+
display:flex;
|
|
3617
|
+
border-collapse:separate;
|
|
3667
3618
|
-webkit-user-select:none;
|
|
3668
3619
|
-moz-user-select:none;
|
|
3669
3620
|
user-select:none;
|
|
3670
|
-
white-space:nowrap;
|
|
3671
|
-
justify-content:space-between;
|
|
3672
|
-
align-items:center;
|
|
3673
|
-
color:rgb(var(--theme-palette-neutral-text-weak));
|
|
3674
|
-
display:flex;
|
|
3675
3621
|
flex-direction:row;
|
|
3622
|
+
align-items:center;
|
|
3623
|
+
justify-content:space-between;
|
|
3676
3624
|
gap:4px;
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3625
|
+
white-space:nowrap;
|
|
3626
|
+
text-align:left;
|
|
3627
|
+
color:rgb(var(--theme-palette-neutral-text-weaker));
|
|
3628
|
+
font-family:var(--font-font-family-body-label), sans-serif;
|
|
3629
|
+
font-size:var(--font-size-label);
|
|
3630
|
+
font-weight:var(--font-weight-bold);
|
|
3631
|
+
letter-spacing:0;
|
|
3632
|
+
line-height:1.25rem;
|
|
3682
3633
|
}
|
|
3683
3634
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th.ndl-data-grid-row-action{
|
|
3684
3635
|
background-color:var(--header-background);
|
|
@@ -3688,10 +3639,9 @@ a.ndl-btn {
|
|
|
3688
3639
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th.ndl-data-grid-pinned-cell{
|
|
3689
3640
|
position:sticky;
|
|
3690
3641
|
z-index:10 !important;
|
|
3691
|
-
background-color:rgb(var(--theme-palette-neutral-bg-default)) !important;
|
|
3692
3642
|
}
|
|
3693
3643
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th.ndl-data-grid-pinned-cell:hover{
|
|
3694
|
-
background-color:var(--data-grid-
|
|
3644
|
+
background-color:var(--data-grid-hover-color) !important;
|
|
3695
3645
|
}
|
|
3696
3646
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th.ndl-data-grid-pinned-cell-left {
|
|
3697
3647
|
left:0px;
|
|
@@ -3720,6 +3670,11 @@ a.ndl-btn {
|
|
|
3720
3670
|
width:auto;
|
|
3721
3671
|
justify-content:space-between;
|
|
3722
3672
|
}
|
|
3673
|
+
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th .ndl-header-group:focus-visible {
|
|
3674
|
+
outline-width:2px;
|
|
3675
|
+
outline-offset:-2px;
|
|
3676
|
+
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
3677
|
+
}
|
|
3723
3678
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th .ndl-header-cell{
|
|
3724
3679
|
text-overflow:ellipsis;
|
|
3725
3680
|
overflow:hidden;
|
|
@@ -3731,7 +3686,7 @@ a.ndl-btn {
|
|
|
3731
3686
|
padding-top:12px;
|
|
3732
3687
|
padding-bottom:12px;
|
|
3733
3688
|
padding-right:12px;
|
|
3734
|
-
padding-left:
|
|
3689
|
+
padding-left:16px;
|
|
3735
3690
|
}
|
|
3736
3691
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th .ndl-header-cell .ndl-header-icon{
|
|
3737
3692
|
min-width:16px;
|
|
@@ -3753,9 +3708,10 @@ a.ndl-btn {
|
|
|
3753
3708
|
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
3754
3709
|
}
|
|
3755
3710
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th:hover{
|
|
3756
|
-
background-color:
|
|
3711
|
+
background-color:var(--data-grid-hover-color);
|
|
3757
3712
|
}
|
|
3758
3713
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th:hover .ndl-data-grid-resizer {
|
|
3714
|
+
z-index:1;
|
|
3759
3715
|
opacity:1;
|
|
3760
3716
|
}
|
|
3761
3717
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th .ndl-data-grid-resizer{
|
|
@@ -3778,6 +3734,11 @@ a.ndl-btn {
|
|
|
3778
3734
|
background-color:rgb(var(--theme-palette-primary-focus));
|
|
3779
3735
|
opacity:1;
|
|
3780
3736
|
}
|
|
3737
|
+
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th .ndl-data-grid-resizer:hover {
|
|
3738
|
+
z-index:1;
|
|
3739
|
+
cursor:col-resize;
|
|
3740
|
+
opacity:1;
|
|
3741
|
+
}
|
|
3781
3742
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th .ndl-data-grid-resizer:focus-visible {
|
|
3782
3743
|
z-index:1;
|
|
3783
3744
|
background-color:rgb(var(--theme-palette-primary-focus));
|
|
@@ -3795,10 +3756,10 @@ a.ndl-btn {
|
|
|
3795
3756
|
justify-content:space-between;
|
|
3796
3757
|
gap:8px;
|
|
3797
3758
|
background-color:rgb(var(--theme-palette-neutral-bg-weak));
|
|
3798
|
-
padding-left:
|
|
3799
|
-
padding-right:
|
|
3800
|
-
padding-top:
|
|
3801
|
-
padding-bottom:
|
|
3759
|
+
padding-left:16px;
|
|
3760
|
+
padding-right:16px;
|
|
3761
|
+
padding-top:12px;
|
|
3762
|
+
padding-bottom:12px;
|
|
3802
3763
|
}
|
|
3803
3764
|
.ndl-data-grid-root .ndl-data-grid-navigation .ndl-data-grid-navigation-right-items {
|
|
3804
3765
|
display:flex;
|
|
@@ -3842,33 +3803,8 @@ a.ndl-btn {
|
|
|
3842
3803
|
width:20px;
|
|
3843
3804
|
height:20px;
|
|
3844
3805
|
}
|
|
3845
|
-
.ndl-data-grid-root .ndl-data-grid-navigation .ndl-data-grid-pagination-icon-button
|
|
3846
|
-
|
|
3847
|
-
display:inline-flex;
|
|
3848
|
-
align-items:center;
|
|
3849
|
-
border-radius:10px;
|
|
3850
|
-
padding-left:8px;
|
|
3851
|
-
padding-right:8px;
|
|
3852
|
-
padding-top:8px;
|
|
3853
|
-
padding-bottom:8px;
|
|
3854
|
-
color:rgb(var(--theme-palette-neutral-text-weaker));
|
|
3855
|
-
font-family:var(--font-font-family-body-medium), sans-serif;
|
|
3856
|
-
font-size:var(--font-size-body-medium);
|
|
3857
|
-
font-weight:var(--font-weight-normal);
|
|
3858
|
-
letter-spacing:0.016rem;
|
|
3859
|
-
line-height:1.25rem;
|
|
3860
|
-
}
|
|
3861
|
-
.ndl-data-grid-root .ndl-data-grid-navigation .ndl-data-grid-pagination-icon-button:hover {
|
|
3862
|
-
background-color:rgb(var(--theme-palette-primary-bg-strong));
|
|
3863
|
-
--tw-bg-opacity:0.1;
|
|
3864
|
-
color:rgb(var(--theme-palette-neutral-text-inverse));
|
|
3865
|
-
}
|
|
3866
|
-
.ndl-data-grid-root .ndl-data-grid-navigation .ndl-data-grid-pagination-icon-button:focus,
|
|
3867
|
-
.ndl-data-grid-root .ndl-data-grid-navigation .ndl-data-grid-pagination-icon-button:focus-visible {
|
|
3868
|
-
outline-style:solid;
|
|
3869
|
-
outline-width:2px;
|
|
3870
|
-
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
3871
|
-
}
|
|
3806
|
+
.ndl-data-grid-root .ndl-data-grid-navigation .ndl-data-grid-pagination-icon-button{
|
|
3807
|
+
}
|
|
3872
3808
|
.ndl-data-grid-root .ndl-data-grid-navigation .ndl-data-grid-pagination-numeric-button{
|
|
3873
3809
|
min-width:36px;
|
|
3874
3810
|
min-height:36px;
|
|
@@ -3882,6 +3818,7 @@ a.ndl-btn {
|
|
|
3882
3818
|
padding-right:12px;
|
|
3883
3819
|
padding-top:2px;
|
|
3884
3820
|
padding-bottom:2px;
|
|
3821
|
+
color:rgb(var(--theme-palette-neutral-text-weak));
|
|
3885
3822
|
font-family:var(--font-font-family-body-medium), sans-serif;
|
|
3886
3823
|
font-size:var(--font-size-body-medium);
|
|
3887
3824
|
font-weight:var(--font-weight-normal);
|
|
@@ -3895,18 +3832,16 @@ a.ndl-btn {
|
|
|
3895
3832
|
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
3896
3833
|
}
|
|
3897
3834
|
.ndl-data-grid-root .ndl-data-grid-navigation .ndl-data-grid-pagination-numeric-button.ndl-is-selected {
|
|
3898
|
-
background-color:rgb(var(--theme-palette-
|
|
3899
|
-
color:rgb(var(--theme-palette-neutral-text-inverse));
|
|
3835
|
+
background-color:rgb(var(--theme-palette-neutral-bg-strong));
|
|
3900
3836
|
}
|
|
3901
3837
|
.ndl-data-grid-root .ndl-data-grid-navigation .ndl-data-grid-pagination-numeric-button.ndl-not-selected-numeric {
|
|
3902
3838
|
cursor:pointer;
|
|
3903
3839
|
}
|
|
3904
3840
|
.ndl-data-grid-root .ndl-data-grid-navigation .ndl-data-grid-pagination-numeric-button.ndl-not-selected-numeric:hover {
|
|
3905
|
-
background-color:rgb(var(--theme-palette-neutral-
|
|
3906
|
-
}
|
|
3907
|
-
.ndl-data-grid-root .ndl-data-grid-navigation .ndl-data-grid-pagination-numeric-button.ndl-not-selected {
|
|
3908
|
-
color:rgb(var(--theme-palette-neutral-text-weaker));
|
|
3841
|
+
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
3909
3842
|
}
|
|
3843
|
+
.ndl-data-grid-root .ndl-data-grid-navigation .ndl-data-grid-pagination-numeric-button.ndl-not-selected{
|
|
3844
|
+
}
|
|
3910
3845
|
@container data-grid-header-cell (min-width: 300px){
|
|
3911
3846
|
.ndl-header-group{
|
|
3912
3847
|
margin-right:55px !important;
|
|
@@ -4419,7 +4354,7 @@ a.ndl-btn {
|
|
|
4419
4354
|
line-height:1.5rem;
|
|
4420
4355
|
}
|
|
4421
4356
|
.ndl-select-menu-portal {
|
|
4422
|
-
z-index:40
|
|
4357
|
+
z-index:40;
|
|
4423
4358
|
}
|
|
4424
4359
|
.ndl-select-menu {
|
|
4425
4360
|
position:absolute;
|
|
@@ -4895,23 +4830,15 @@ a.ndl-btn {
|
|
|
4895
4830
|
.ndl-wizard.ndl-wizard-small .ndl-wizard-step-complete .ndl-wizard-circle {
|
|
4896
4831
|
background-color:rgb(var(--theme-palette-primary-bg-strong));
|
|
4897
4832
|
}
|
|
4898
|
-
|
|
4899
|
-
--background:var(--theme-light-palette-neutral-bg-default);
|
|
4900
|
-
--border:var(--theme-light-palette-neutral-border-weak);
|
|
4901
|
-
}
|
|
4902
|
-
.ndl-theme-dark{
|
|
4903
|
-
--background:var(--theme-dark-palette-neutral-bg-strong);
|
|
4904
|
-
--border:var(--theme-dark-palette-neutral-border-strong);
|
|
4905
|
-
}
|
|
4906
|
-
.ndl-code-block-container{
|
|
4907
|
-
background:rgb(var(--background));
|
|
4908
|
-
border-color:rgb(var(--border));
|
|
4833
|
+
.ndl-code-block-container {
|
|
4909
4834
|
position:relative;
|
|
4910
4835
|
isolation:isolate;
|
|
4911
4836
|
min-height:90px;
|
|
4912
4837
|
overflow:hidden;
|
|
4913
4838
|
border-radius:8px;
|
|
4914
4839
|
border-width:1px;
|
|
4840
|
+
border-color:rgb(var(--theme-palette-neutral-border-strong));
|
|
4841
|
+
background-color:rgb(var(--theme-palette-neutral-bg-on-bg-weak));
|
|
4915
4842
|
padding-top:12px;
|
|
4916
4843
|
padding-bottom:4px;
|
|
4917
4844
|
}
|
|
@@ -4963,28 +4890,28 @@ a.ndl-btn {
|
|
|
4963
4890
|
.ndl-code-block-container .ndl-code-content-container .ndl-highlight-wrapper:focus {
|
|
4964
4891
|
outline-color:rgb(var(--theme-palette-primary-focus));
|
|
4965
4892
|
}
|
|
4966
|
-
.ndl-code-block-container .ndl-code-block-actions{
|
|
4967
|
-
|
|
4968
|
-
|
|
4969
|
-
|
|
4970
|
-
|
|
4971
|
-
|
|
4972
|
-
|
|
4973
|
-
|
|
4974
|
-
|
|
4975
|
-
|
|
4893
|
+
.ndl-code-block-container .ndl-code-block-actions {
|
|
4894
|
+
position:absolute;
|
|
4895
|
+
top:0px;
|
|
4896
|
+
right:0px;
|
|
4897
|
+
z-index:10;
|
|
4898
|
+
display:flex;
|
|
4899
|
+
border-radius:8px;
|
|
4900
|
+
background-color:rgb(var(--theme-palette-neutral-bg-on-bg-weak));
|
|
4901
|
+
padding:4px;
|
|
4902
|
+
}
|
|
4976
4903
|
.ndl-code-block-container .ndl-code-block-actions.ndl-disabled {
|
|
4977
4904
|
opacity:0.5;
|
|
4978
4905
|
}
|
|
4979
|
-
.ndl-code-block-container .ndl-code-block-expand-button{
|
|
4980
|
-
|
|
4981
|
-
|
|
4982
|
-
|
|
4983
|
-
|
|
4984
|
-
|
|
4985
|
-
|
|
4986
|
-
|
|
4987
|
-
|
|
4906
|
+
.ndl-code-block-container .ndl-code-block-expand-button {
|
|
4907
|
+
position:absolute;
|
|
4908
|
+
bottom:0px;
|
|
4909
|
+
right:0px;
|
|
4910
|
+
z-index:10;
|
|
4911
|
+
border-radius:8px;
|
|
4912
|
+
background-color:rgb(var(--theme-palette-neutral-bg-on-bg-weak));
|
|
4913
|
+
padding:4px;
|
|
4914
|
+
}
|
|
4988
4915
|
.ndl-code-block-container .ndl-linenumber{
|
|
4989
4916
|
min-width:32px !important;
|
|
4990
4917
|
}
|
|
@@ -6659,7 +6586,7 @@ button.ndl-avatar:focus-visible {
|
|
|
6659
6586
|
display:inline;
|
|
6660
6587
|
white-space:nowrap;
|
|
6661
6588
|
border-radius:4px;
|
|
6662
|
-
background-color:rgb(var(--theme-palette-neutral-bg-
|
|
6589
|
+
background-color:rgb(var(--theme-palette-neutral-bg-on-bg-weak));
|
|
6663
6590
|
padding-left:2px;
|
|
6664
6591
|
padding-right:2px;
|
|
6665
6592
|
outline:2px solid transparent;
|
|
@@ -7623,17 +7550,6 @@ button.ndl-avatar:focus-visible {
|
|
|
7623
7550
|
animation-timing-function:ease-out;
|
|
7624
7551
|
}
|
|
7625
7552
|
}
|
|
7626
|
-
.n-sr-only {
|
|
7627
|
-
position:absolute;
|
|
7628
|
-
width:1px;
|
|
7629
|
-
height:1px;
|
|
7630
|
-
padding:0;
|
|
7631
|
-
margin:-1px;
|
|
7632
|
-
overflow:hidden;
|
|
7633
|
-
clip:rect(0, 0, 0, 0);
|
|
7634
|
-
white-space:nowrap;
|
|
7635
|
-
border-width:0;
|
|
7636
|
-
}
|
|
7637
7553
|
.n-absolute {
|
|
7638
7554
|
position:absolute;
|
|
7639
7555
|
}
|
|
@@ -7754,6 +7670,10 @@ button.ndl-avatar:focus-visible {
|
|
|
7754
7670
|
width:100%;
|
|
7755
7671
|
height:100%;
|
|
7756
7672
|
}
|
|
7673
|
+
.n-size-token-10 {
|
|
7674
|
+
width:64px;
|
|
7675
|
+
height:64px;
|
|
7676
|
+
}
|
|
7757
7677
|
.n-size-token-6 {
|
|
7758
7678
|
width:16px;
|
|
7759
7679
|
height:16px;
|
package/lib/tokens/js/tokens.js
CHANGED