@helpwave/hightide 0.6.4 → 0.6.5
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/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/style/globals.css +11 -4
- package/dist/style/uncompiled/theme/components/expandable.css +3 -3
- package/dist/style/uncompiled/theme/components/table.css +5 -1
- package/package.json +1 -1
package/dist/style/globals.css
CHANGED
|
@@ -567,10 +567,10 @@
|
|
|
567
567
|
min-width: calc(var(--spacing) * 6);
|
|
568
568
|
max-width: calc(var(--spacing) * 6);
|
|
569
569
|
}
|
|
570
|
-
.
|
|
571
|
-
height: calc(var(--spacing) *
|
|
570
|
+
.expandable-content-h-40 {
|
|
571
|
+
height: calc(var(--spacing) * 40);
|
|
572
572
|
&[data-expanded] {
|
|
573
|
-
max-height: calc(var(--spacing) *
|
|
573
|
+
max-height: calc(var(--spacing) * 40);
|
|
574
574
|
}
|
|
575
575
|
}
|
|
576
576
|
.size-4 {
|
|
@@ -3118,7 +3118,14 @@
|
|
|
3118
3118
|
}
|
|
3119
3119
|
}
|
|
3120
3120
|
}
|
|
3121
|
-
[data-name="table-body-
|
|
3121
|
+
[data-name="table-body-filler-row"] {
|
|
3122
|
+
&:hover {
|
|
3123
|
+
@media (hover: hover) {
|
|
3124
|
+
cursor: not-allowed;
|
|
3125
|
+
}
|
|
3126
|
+
}
|
|
3127
|
+
}
|
|
3128
|
+
[data-name="table-body-cell"], [data-name="table-body-filler-cell"] {
|
|
3122
3129
|
padding-inline: calc(var(--spacing) * 3);
|
|
3123
3130
|
padding-block: calc(var(--spacing) * 2.5);
|
|
3124
3131
|
&:first-child {
|
|
@@ -32,16 +32,16 @@
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
&:not([data-expanded]) {
|
|
35
|
-
@apply max-h-0 opacity-0 overflow-hidden py-0 duration-
|
|
35
|
+
@apply max-h-0 opacity-0 overflow-hidden py-0 duration-(--animation-duration-out);
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
&[data-expanded] {
|
|
39
|
-
@apply max-h-24 opacity-100 py-2 duration-
|
|
39
|
+
@apply max-h-24 opacity-100 py-2 duration-(--animation-duration-in);
|
|
40
40
|
}
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
@utility
|
|
44
|
+
@utility expandable-content-h-* {
|
|
45
45
|
height: calc(var(--spacing) * --value(number));
|
|
46
46
|
|
|
47
47
|
&[data-expanded] {
|
|
@@ -35,7 +35,11 @@
|
|
|
35
35
|
@apply hover:bg-table-row-hover-background;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
[data-name="table-body-
|
|
38
|
+
[data-name="table-body-filler-row"] {
|
|
39
|
+
@apply hover:cursor-not-allowed;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
[data-name="table-body-cell"], [data-name="table-body-filler-cell"] {
|
|
39
43
|
@apply px-3 first:pl-6 last:pr-6 py-2.5;
|
|
40
44
|
@apply border-b-1 first:border-l-1 last:border-r-1;
|
|
41
45
|
@apply [nth-last-child(1)]:first:rounded-bl-lg [nth-last-child(1)]:last:rounded-br-lg;
|