@neo4j-ndl/base 0.6.0 → 0.6.1
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/neo4j-ds-styles.css
CHANGED
|
@@ -420,7 +420,7 @@ Ensure the default browser behavior of the `hidden` attribute.
|
|
|
420
420
|
*/
|
|
421
421
|
/**
|
|
422
422
|
* Do not edit directly
|
|
423
|
-
* Generated on
|
|
423
|
+
* Generated on Mon, 18 Jul 2022 13:38:03 GMT
|
|
424
424
|
*/
|
|
425
425
|
:root {
|
|
426
426
|
--border-radius-sm: 4px;
|
|
@@ -1034,6 +1034,8 @@ a.ndl-btn{
|
|
|
1034
1034
|
border-width: 1px;
|
|
1035
1035
|
--tw-border-opacity: 1;
|
|
1036
1036
|
border-color: rgb(196 200 205 / var(--tw-border-opacity));
|
|
1037
|
+
--tw-bg-opacity: 1;
|
|
1038
|
+
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
|
|
1037
1039
|
padding: 0.25rem;
|
|
1038
1040
|
}
|
|
1039
1041
|
.ndl-icon-btn-array.array-floating{
|
|
@@ -2703,6 +2705,24 @@ a.ndl-btn{
|
|
|
2703
2705
|
--tw-bg-opacity: 1;
|
|
2704
2706
|
background-color: rgb(245 247 250 / var(--tw-bg-opacity));
|
|
2705
2707
|
}
|
|
2708
|
+
.ndl-table .ndl-table-row .ndl-table-row-actions{
|
|
2709
|
+
display: none;
|
|
2710
|
+
}
|
|
2711
|
+
.ndl-table .ndl-table-row:hover .ndl-table-row-actions{
|
|
2712
|
+
position: absolute;
|
|
2713
|
+
top: 50%;
|
|
2714
|
+
right: 2rem;
|
|
2715
|
+
z-index: 10;
|
|
2716
|
+
display: flex;
|
|
2717
|
+
--tw-translate-y: -50%;
|
|
2718
|
+
transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
|
|
2719
|
+
flex-direction: row;
|
|
2720
|
+
align-items: center;
|
|
2721
|
+
-moz-column-gap: 0.5rem;
|
|
2722
|
+
column-gap: 0.5rem;
|
|
2723
|
+
padding-left: 1rem;
|
|
2724
|
+
padding-right: 1rem;
|
|
2725
|
+
}
|
|
2706
2726
|
.ndl-table .ndl-table-cell{
|
|
2707
2727
|
position: relative;
|
|
2708
2728
|
display: table-cell;
|
|
@@ -2719,29 +2739,6 @@ a.ndl-btn{
|
|
|
2719
2739
|
letter-spacing: 0.25px;
|
|
2720
2740
|
line-height: 20px;
|
|
2721
2741
|
}
|
|
2722
|
-
/* & .ndl-table-row-actions {
|
|
2723
|
-
@apply group-hover:n-flex n-hidden n-z-10 n-gap-x-2 n-transform -n-translate-y-1/2 n-top-1/2 n-flex-row n-absolute n-px-4 n-items-center n-right-8;
|
|
2724
|
-
} */
|
|
2725
|
-
.ndl-table .ndl-table-row-actions-icon{
|
|
2726
|
-
display: inline-flex;
|
|
2727
|
-
height: 2rem;
|
|
2728
|
-
width: 2rem;
|
|
2729
|
-
align-items: center;
|
|
2730
|
-
justify-content: center;
|
|
2731
|
-
border-radius: 8px;
|
|
2732
|
-
--tw-text-opacity: 1;
|
|
2733
|
-
color: rgb(83 91 102 / var(--tw-text-opacity));
|
|
2734
|
-
}
|
|
2735
|
-
.ndl-table .ndl-table-row-actions-icon:hover{
|
|
2736
|
-
background-color: rgb(83 91 102 / var(--tw-bg-opacity));
|
|
2737
|
-
--tw-bg-opacity: 0.1;
|
|
2738
|
-
--tw-text-opacity: 1;
|
|
2739
|
-
color: rgb(21 30 41 / var(--tw-text-opacity));
|
|
2740
|
-
}
|
|
2741
|
-
.ndl-table .ndl-table-row-actions-icon > svg {
|
|
2742
|
-
height: 20px;
|
|
2743
|
-
width: 20px;
|
|
2744
|
-
}
|
|
2745
2742
|
.ndl-table tr th.table-column-styling {
|
|
2746
2743
|
border-collapse: separate;
|
|
2747
2744
|
box-sizing: content-box;
|
package/lib/tokens/js/tokens.js
CHANGED