@redseed/redseed-ui-tailwindcss 7.16.0 → 7.18.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/components/card.css
CHANGED
|
@@ -95,6 +95,11 @@
|
|
|
95
95
|
|
|
96
96
|
.rsui-card__action-layer {
|
|
97
97
|
@apply absolute inset-0 size-full bg-transparent rounded-xl transition;
|
|
98
|
+
@apply focus-visible:ring-2 focus-visible:ring-offset-2 focus-visible:ring-border-primary outline-hidden;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.rsui-card__action-layer-label {
|
|
102
|
+
@apply sr-only;
|
|
98
103
|
}
|
|
99
104
|
|
|
100
105
|
.rsui-card__image {
|
|
@@ -63,6 +63,13 @@
|
|
|
63
63
|
@apply block;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
+
.rsui-form-field-combobox__group-header {
|
|
67
|
+
@apply px-4 pt-3 pb-1 text-xs font-semibold uppercase tracking-wider text-text-tertiary select-none;
|
|
68
|
+
}
|
|
69
|
+
.rsui-form-field-combobox__group-header:not(:first-child) {
|
|
70
|
+
@apply border-t border-border-secondary mt-1;
|
|
71
|
+
}
|
|
72
|
+
|
|
66
73
|
.rsui-form-field-combobox__option {
|
|
67
74
|
@apply flex flex-nowrap items-center justify-between cursor-pointer px-4 py-3 rounded-lg;
|
|
68
75
|
@apply bg-background-primary hover:bg-background-secondary text-text-primary transition;
|
package/components/link_slot.css
CHANGED
|
@@ -3,6 +3,9 @@
|
|
|
3
3
|
@apply relative w-fit h-fit inline-flex shrink-0 items-center justify-center whitespace-nowrap will-change-transform;
|
|
4
4
|
@apply select-none outline-hidden cursor-pointer transition;
|
|
5
5
|
|
|
6
|
+
/* focus state */
|
|
7
|
+
@apply focus-visible:ring-offset-2 focus-visible:ring-2 focus-visible:ring-border-primary;
|
|
8
|
+
|
|
6
9
|
/* default text styles */
|
|
7
10
|
@apply font-medium text-text-primary gap-2;
|
|
8
11
|
}
|
|
@@ -43,6 +46,10 @@
|
|
|
43
46
|
@apply size-7;
|
|
44
47
|
}
|
|
45
48
|
|
|
49
|
+
.rsui-link-slot__icon {
|
|
50
|
+
@apply inline-flex items-center;
|
|
51
|
+
}
|
|
52
|
+
|
|
46
53
|
.rsui-link-slot__label {
|
|
47
54
|
@apply relative inline-flex shrink-0 items-center justify-center whitespace-nowrap will-change-transform;
|
|
48
55
|
@apply after:content-[''] after:absolute after:inset-x-0 after:bottom-0;
|