@acorex/styles 19.10.9 → 19.10.11
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,
|
@@ -204,3 +204,12 @@ $ax-icon-plus-after: '';
|
|
204
204
|
|
205
205
|
$ax-icon-trash: '\f1f8';
|
206
206
|
$ax-icon-trash-after: '';
|
207
|
+
|
208
|
+
$ax-icon-arrow-turn-right: '\e635';
|
209
|
+
$ax-icon-arrow-turn-right-after: '';
|
210
|
+
|
211
|
+
$ax-icon-arrow-turn-left: '\e632';
|
212
|
+
$ax-icon-arrow-turn-left-after: '';
|
213
|
+
|
214
|
+
$ax-icon-save: '\f0c7';
|
215
|
+
$ax-icon-save-after: '';
|
@@ -649,3 +649,30 @@
|
|
649
649
|
content: variables.$ax-icon-trash-after;
|
650
650
|
}
|
651
651
|
}
|
652
|
+
|
653
|
+
.ax-icon-arrow-turn-right {
|
654
|
+
&:before {
|
655
|
+
content: variables.$ax-icon-arrow-turn-right;
|
656
|
+
}
|
657
|
+
&:after {
|
658
|
+
content: variables.$ax-icon-arrow-turn-right-after;
|
659
|
+
}
|
660
|
+
}
|
661
|
+
|
662
|
+
.ax-icon-arrow-turn-left {
|
663
|
+
&:before {
|
664
|
+
content: variables.$ax-icon-arrow-turn-left;
|
665
|
+
}
|
666
|
+
&:after {
|
667
|
+
content: variables.$ax-icon-arrow-turn-left-after;
|
668
|
+
}
|
669
|
+
}
|
670
|
+
|
671
|
+
.ax-icon-save {
|
672
|
+
&:before {
|
673
|
+
content: variables.$ax-icon-save;
|
674
|
+
}
|
675
|
+
&:after {
|
676
|
+
content: variables.$ax-icon-save-after;
|
677
|
+
}
|
678
|
+
}
|
@@ -204,3 +204,12 @@ $ax-icon-plus-after: '';
|
|
204
204
|
|
205
205
|
$ax-icon-trash: '\e872';
|
206
206
|
$ax-icon-trash-after: '';
|
207
|
+
|
208
|
+
$ax-icon-arrow-turn-right: '\ebab';
|
209
|
+
$ax-icon-arrow-turn-right-after: '';
|
210
|
+
|
211
|
+
$ax-icon-arrow-turn-left: '\eba6';
|
212
|
+
$ax-icon-arrow-turn-left-after: '';
|
213
|
+
|
214
|
+
$ax-icon-save: '\e161';
|
215
|
+
$ax-icon-save-after: '';
|
@@ -653,3 +653,30 @@
|
|
653
653
|
content: variables.$ax-icon-trash-after;
|
654
654
|
}
|
655
655
|
}
|
656
|
+
|
657
|
+
.ax-icon-arrow-turn-right {
|
658
|
+
&:before {
|
659
|
+
content: variables.$ax-icon-arrow-turn-right;
|
660
|
+
}
|
661
|
+
&:after {
|
662
|
+
content: variables.$ax-icon-arrow-turn-right-after;
|
663
|
+
}
|
664
|
+
}
|
665
|
+
|
666
|
+
.ax-icon-arrow-turn-left {
|
667
|
+
&:before {
|
668
|
+
content: variables.$ax-icon-arrow-turn-left;
|
669
|
+
}
|
670
|
+
&:after {
|
671
|
+
content: variables.$ax-icon-arrow-turn-left-after;
|
672
|
+
}
|
673
|
+
}
|
674
|
+
|
675
|
+
.ax-icon-save {
|
676
|
+
&:before {
|
677
|
+
content: variables.$ax-icon-save;
|
678
|
+
}
|
679
|
+
&:after {
|
680
|
+
content: variables.$ax-icon-save-after;
|
681
|
+
}
|
682
|
+
}
|