@neo4j-ndl/base 3.1.2 → 3.1.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 +9 -5
- 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
|
@@ -3379,9 +3379,11 @@ a.ndl-btn {
|
|
|
3379
3379
|
}
|
|
3380
3380
|
:root{
|
|
3381
3381
|
--data-grid-hover-color:rgb(241, 241, 242);
|
|
3382
|
+
--data-grid-cell-hover-color:rgb(227, 228, 230);
|
|
3382
3383
|
}
|
|
3383
3384
|
.ndl-theme-dark{
|
|
3384
3385
|
--data-grid-hover-color:rgba(45, 47, 49);
|
|
3386
|
+
--data-grid-cell-hover-color:rgba(55, 58, 60);
|
|
3385
3387
|
}
|
|
3386
3388
|
.ndl-data-grid-focusable-cells .ndl-focusable-cell {
|
|
3387
3389
|
outline:2px solid transparent;
|
|
@@ -3615,13 +3617,15 @@ a.ndl-btn {
|
|
|
3615
3617
|
.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) {
|
|
3616
3618
|
opacity:0;
|
|
3617
3619
|
}
|
|
3618
|
-
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-td{
|
|
3620
|
+
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-td:hover{
|
|
3621
|
+
--cell-background:var(--data-grid-cell-hover-color);
|
|
3622
|
+
}
|
|
3623
|
+
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-td {
|
|
3619
3624
|
background-color:var(--cell-background);
|
|
3620
3625
|
position:relative;
|
|
3621
3626
|
display:flex;
|
|
3622
3627
|
height:auto;
|
|
3623
3628
|
align-items:center;
|
|
3624
|
-
overflow:hidden;
|
|
3625
3629
|
text-overflow:ellipsis;
|
|
3626
3630
|
white-space:pre-line;
|
|
3627
3631
|
padding-top:10px;
|
|
@@ -3634,9 +3638,6 @@ a.ndl-btn {
|
|
|
3634
3638
|
font-weight:var(--font-weight-normal);
|
|
3635
3639
|
letter-spacing:0.016rem;
|
|
3636
3640
|
line-height:1.25rem;
|
|
3637
|
-
}
|
|
3638
|
-
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-td:hover {
|
|
3639
|
-
background-color:rgb(var(--theme-palette-neutral-hover));
|
|
3640
3641
|
}
|
|
3641
3642
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-td.ndl-data-grid-custom-cell {
|
|
3642
3643
|
padding:0px;
|
|
@@ -3689,6 +3690,9 @@ a.ndl-btn {
|
|
|
3689
3690
|
z-index:10 !important;
|
|
3690
3691
|
background-color:rgb(var(--theme-palette-neutral-bg-default)) !important;
|
|
3691
3692
|
}
|
|
3693
|
+
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th.ndl-data-grid-pinned-cell:hover{
|
|
3694
|
+
background-color:var(--data-grid-cell-hover-color) !important;
|
|
3695
|
+
}
|
|
3692
3696
|
.ndl-data-grid-root .ndl-div-table .ndl-data-grid-th.ndl-data-grid-pinned-cell-left {
|
|
3693
3697
|
left:0px;
|
|
3694
3698
|
z-index:1;
|
package/lib/tokens/js/tokens.js
CHANGED