@acorex/styles 19.11.0-next.1 → 19.11.0-next.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.
@@ -42,8 +42,28 @@
|
|
42
42
|
color: rgba(var(--ax-comp-editor-text-color));
|
43
43
|
position: relative;
|
44
44
|
gap: var(--ax-comp-editor-gap);
|
45
|
-
padding-inline-start: var(--ax-comp-editor-space-start-size);
|
46
45
|
padding-inline-end: var(--ax-comp-editor-space-end-size);
|
46
|
+
padding-inline-start: var(--ax-comp-editor-space-start-size);
|
47
|
+
|
48
|
+
&:has(ax-prefix) {
|
49
|
+
padding-inline-start: 0;
|
50
|
+
ax-prefix {
|
51
|
+
&:has(ax-button, .ax-editor-container) {
|
52
|
+
--ax-comp-editor-space-start-size: 0px;
|
53
|
+
}
|
54
|
+
padding-inline-start: var(--ax-comp-editor-space-start-size);
|
55
|
+
}
|
56
|
+
}
|
57
|
+
|
58
|
+
&:has(ax-suffix) {
|
59
|
+
padding-inline-end: 0;
|
60
|
+
ax-suffix {
|
61
|
+
&:has(ax-button, .ax-editor-container) {
|
62
|
+
--ax-comp-editor-space-end-size: 0px;
|
63
|
+
}
|
64
|
+
padding-inline-end: var(--ax-comp-editor-space-end-size);
|
65
|
+
}
|
66
|
+
}
|
47
67
|
|
48
68
|
&:focus-within {
|
49
69
|
border-color: rgba(var(--ax-comp-editor-focused-border-color));
|
@@ -165,29 +185,11 @@
|
|
165
185
|
// .ax-clear-button {
|
166
186
|
// padding-inline-end: var(--ax-comp-editor-space-end-size);
|
167
187
|
// }
|
168
|
-
& > ax-prefix,
|
169
|
-
& > ax-suffix {
|
170
|
-
max-width: fit-content;
|
171
|
-
}
|
172
|
-
|
173
|
-
&:has(ax-suffix) {
|
174
|
-
&:not(&:empty) {
|
175
|
-
&:has(ax-button, .ax-editor-container) {
|
176
|
-
--ax-comp-editor-space-end-size: 0px;
|
177
|
-
}
|
178
|
-
}
|
179
|
-
}
|
180
|
-
&:has(ax-prefix) {
|
181
|
-
&:not(&:empty) {
|
182
|
-
&:has(ax-button, .ax-editor-container) {
|
183
|
-
--ax-comp-editor-space-start-size: 0px;
|
184
|
-
}
|
185
|
-
}
|
186
|
-
}
|
187
188
|
|
188
189
|
& > ax-prefix,
|
189
190
|
& > ax-suffix {
|
190
191
|
height: 100%;
|
192
|
+
max-width: fit-content;
|
191
193
|
|
192
194
|
ax-button,
|
193
195
|
ax-text,
|