@redseed/redseed-ui-tailwindcss 7.20.0 → 7.20.2
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.
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
.rsui-form-field-select__options {
|
|
28
|
-
@apply hidden absolute top-0
|
|
28
|
+
@apply hidden absolute top-0 z-50;
|
|
29
29
|
@apply bg-background-primary p-2 mt-2 rounded-lg shadow-full-light;
|
|
30
|
-
@apply
|
|
30
|
+
@apply overflow-y-auto overflow-x-hidden;
|
|
31
31
|
}
|
|
32
32
|
.rsui-form-field-select__options--open {
|
|
33
33
|
@apply block;
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
@apply bg-background-secondary;
|
|
45
45
|
}
|
|
46
46
|
.rsui-form-field-select__option-label {
|
|
47
|
-
@apply text-base
|
|
47
|
+
@apply text-base break-words min-w-0 flex-1;
|
|
48
48
|
}
|
|
49
49
|
.rsui-form-field-select__option-icon {
|
|
50
50
|
@apply size-5;
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
.rsui-form-field-select__trigger,
|
|
68
|
-
.rsui-form-field-select select {
|
|
68
|
+
.rsui-form-field-select--mobile select {
|
|
69
69
|
@apply block w-full border ring-0 bg-none cursor-pointer appearance-none transition;
|
|
70
70
|
@apply py-3 pl-5 pr-14 truncate;
|
|
71
71
|
@apply text-base rounded-lg outline-hidden focus:outline-hidden;
|
|
@@ -78,9 +78,16 @@
|
|
|
78
78
|
@apply text-left;
|
|
79
79
|
@apply focus-visible:ring-offset-2 focus-visible:ring-2 focus-visible:ring-border-primary;
|
|
80
80
|
}
|
|
81
|
+
.rsui-form-field-select__trigger--invalid {
|
|
82
|
+
@apply border-border-error ring-0;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.rsui-form-field-select select {
|
|
86
|
+
@apply sr-only;
|
|
87
|
+
}
|
|
81
88
|
|
|
82
|
-
.rsui-form-field-select
|
|
83
|
-
@apply
|
|
89
|
+
.rsui-form-field-select--mobile select {
|
|
90
|
+
@apply not-sr-only;
|
|
84
91
|
}
|
|
85
92
|
|
|
86
93
|
.rsui-form-field-select--mobile option {
|