@acorex/styles 6.5.28 → 6.5.31
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/fonts/font-awesome/fa-brands-400.svg +3570 -3570
- package/fonts/font-awesome/fa-duotone-900.svg +15055 -15055
- package/fonts/font-awesome/fa-light-300.svg +12330 -12330
- package/fonts/font-awesome/fa-regular-400.svg +11256 -11256
- package/fonts/font-awesome/fa-solid-900.svg +9588 -9588
- package/fonts/font-awesome/font-awesome.css +16960 -16960
- package/package.json +11 -11
- package/scss/buttons.scss +69 -69
- package/scss/calendar.scss +143 -143
- package/scss/checkbox.scss +46 -46
- package/scss/context-menu.scss +74 -74
- package/scss/data-grid.scss +117 -117
- package/scss/drawer.scss +138 -138
- package/scss/fieldset.scss +22 -22
- package/scss/forms.scss +515 -515
- package/scss/list.scss +47 -47
- package/scss/master.scss +329 -329
- package/scss/menu.scss +130 -130
- package/scss/mixin.scss +11 -11
- package/scss/page.scss +53 -53
- package/scss/progress.scss +10 -10
- package/scss/selection-list.scss +104 -104
- package/scss/style.scss +47 -47
- package/scss/tab-strip.scss +30 -30
- package/scss/tab.scss +36 -36
- package/scss/toast.scss +46 -46
- package/scss/tooltip.scss +54 -54
- package/scss/treeview.scss +151 -151
- package/scss/upload.scss +169 -169
- package/scss/variables.scss +139 -139
package/scss/master.scss
CHANGED
@@ -1,330 +1,330 @@
|
|
1
|
-
@import "./variables.scss";
|
2
|
-
|
3
|
-
:root {
|
4
|
-
--ax-border-color: #
|
5
|
-
--ax-border-dark-color: rgba(34, 36, 38, 0.3);
|
6
|
-
--ax-size:
|
7
|
-
--ax-base-size: var(--ax-size);
|
8
|
-
--ax-base-ratio: 6;
|
9
|
-
--ax-overlay-full-width: 93;
|
10
|
-
|
11
|
-
// Create Sizes
|
12
|
-
@each $name,
|
13
|
-
$size in $sizes {
|
14
|
-
@if type-of($size)=="map" {
|
15
|
-
|
16
|
-
@each $subname,
|
17
|
-
$variant in $size {
|
18
|
-
@if $name=="" {
|
19
|
-
--ax-size-#{$name}#{$subname}: #{$variant};
|
20
|
-
}
|
21
|
-
|
22
|
-
@else {
|
23
|
-
--ax-size-#{$name}-#{$subname}: #{$variant};
|
24
|
-
}
|
25
|
-
}
|
26
|
-
}
|
27
|
-
}
|
28
|
-
|
29
|
-
// Create Colors
|
30
|
-
@each $name,
|
31
|
-
$color in $colors {
|
32
|
-
@if type-of($color)=="map" {
|
33
|
-
|
34
|
-
@each $subname,
|
35
|
-
$variant in $color {
|
36
|
-
@if $subname=="" {
|
37
|
-
--ax-#{$name}-#{$color-suffix}: #{$variant};
|
38
|
-
}
|
39
|
-
|
40
|
-
@else {
|
41
|
-
--ax-#{$name}-#{$subname}-#{$color-suffix}: #{$variant};
|
42
|
-
}
|
43
|
-
}
|
44
|
-
}
|
45
|
-
|
46
|
-
@else {
|
47
|
-
--ax-#{$name}-#{$color-suffix}: #{$color};
|
48
|
-
}
|
49
|
-
}
|
50
|
-
}
|
51
|
-
|
52
|
-
@each $name,
|
53
|
-
$color in $colors {
|
54
|
-
@if type-of($color)=="map" {
|
55
|
-
|
56
|
-
@each $subname,
|
57
|
-
$variant in $color {
|
58
|
-
@if $subname=="" {
|
59
|
-
.ax-text-#{$name} {
|
60
|
-
color: var(--ax-#{$name}-#{$color-suffix});
|
61
|
-
}
|
62
|
-
|
63
|
-
.ax-bg-#{$name} {
|
64
|
-
background: var(--ax-#{$name}-#{$color-suffix});
|
65
|
-
}
|
66
|
-
|
67
|
-
.ax-border-#{$name} {
|
68
|
-
border-color: var(--ax-#{$name}-#{$color-suffix});
|
69
|
-
}
|
70
|
-
}
|
71
|
-
|
72
|
-
@else {
|
73
|
-
.ax-text-#{$name}-#{$subname} {
|
74
|
-
color: var(--ax-#{$name}-#{$subname}-#{$color-suffix});
|
75
|
-
}
|
76
|
-
|
77
|
-
.ax-bg-#{$name}-#{$subname} {
|
78
|
-
background: var(--ax-#{$name}-#{$subname}-#{$color-suffix});
|
79
|
-
}
|
80
|
-
|
81
|
-
.ax-border-#{$name}-#{$subname} {
|
82
|
-
background: var(--ax-#{$name}-#{$subname}-#{$color-suffix});
|
83
|
-
}
|
84
|
-
}
|
85
|
-
}
|
86
|
-
}
|
87
|
-
}
|
88
|
-
|
89
|
-
// Sizes
|
90
|
-
.ax {
|
91
|
-
&.form-control {
|
92
|
-
height: calc(var(--ax-base-size) * var(--ax-base-ratio)) !important;
|
93
|
-
padding: 0 0.5rem;
|
94
|
-
font-size: 1rem;
|
95
|
-
font-weight: 500;
|
96
|
-
|
97
|
-
// &.sm,
|
98
|
-
// &.md,
|
99
|
-
// &.lg {
|
100
|
-
// &.ax-button-icon {
|
101
|
-
// width: calc(var(--ax-base-size) * var(--ax-base-ratio)) !important;
|
102
|
-
// height: calc(var(--ax-base-size) * var(--ax-base-ratio)) !important;
|
103
|
-
// }
|
104
|
-
// }
|
105
|
-
&.sm {
|
106
|
-
--ax-base-size: calc(var(--ax-size) - 2px);
|
107
|
-
font-size: 0.875rem;
|
108
|
-
}
|
109
|
-
|
110
|
-
&.md {
|
111
|
-
height: calc(var(--ax-base-size) * var(--ax-base-ratio)) !important;
|
112
|
-
font-size: 1rem;
|
113
|
-
font-weight: 500;
|
114
|
-
}
|
115
|
-
|
116
|
-
&.lg {
|
117
|
-
--ax-base-size: calc(var(--ax-size) + 2px);
|
118
|
-
font-size: 1.5rem;
|
119
|
-
}
|
120
|
-
}
|
121
|
-
}
|
122
|
-
|
123
|
-
.ax {
|
124
|
-
&.sm {
|
125
|
-
--ax-base-size: calc(var(--ax-size) - 2px);
|
126
|
-
}
|
127
|
-
|
128
|
-
&.lg {
|
129
|
-
--ax-base-size: calc(var(--ax-size) + 2px);
|
130
|
-
}
|
131
|
-
}
|
132
|
-
|
133
|
-
@each $name,
|
134
|
-
$size in $sizes {
|
135
|
-
@if type-of($size)=="map" {
|
136
|
-
|
137
|
-
@each $subname,
|
138
|
-
$variant in $size {
|
139
|
-
@if $name=="" {
|
140
|
-
.ax-mrg-#{$subname} {
|
141
|
-
margin: var(--ax-size-#{$subname}) !important;
|
142
|
-
}
|
143
|
-
|
144
|
-
.ax-pad-#{$subname} {
|
145
|
-
padding: var(--ax-size-#{$subname}) !important;
|
146
|
-
}
|
147
|
-
}
|
148
|
-
}
|
149
|
-
}
|
150
|
-
}
|
151
|
-
|
152
|
-
// Create Classes
|
153
|
-
@each $name,
|
154
|
-
$color in $colors {
|
155
|
-
.ax {
|
156
|
-
@if type-of($color)=="map" {
|
157
|
-
|
158
|
-
@each $subname,
|
159
|
-
$variant in $color {
|
160
|
-
@if $subname=="" {
|
161
|
-
&.bg-#{$name} {
|
162
|
-
background-color: var(--ax-#{$name}-#{$color-suffix});
|
163
|
-
}
|
164
|
-
|
165
|
-
&.bg-light-#{$name} {
|
166
|
-
background-color: var(--ax-#{$name}-light-#{$color-suffix});
|
167
|
-
}
|
168
|
-
|
169
|
-
&.bg-dark-#{$name} {
|
170
|
-
background-color: var(--ax-#{$name}-dark-#{$color-suffix});
|
171
|
-
}
|
172
|
-
|
173
|
-
&.bg-lighten-#{$name} {
|
174
|
-
background-color: var(--ax-#{$name}-trans-light-#{$color-suffix});
|
175
|
-
}
|
176
|
-
|
177
|
-
&.text-#{$name} {
|
178
|
-
color: var(--ax-#{$name}-#{$color-suffix});
|
179
|
-
}
|
180
|
-
|
181
|
-
&.lighten-#{$name} {
|
182
|
-
color: var(--ax-#{$name}-#{$color-suffix});
|
183
|
-
background-color: var(--ax-#{$name}-trans-light-#{$color-suffix});
|
184
|
-
}
|
185
|
-
|
186
|
-
&.#{$name} {
|
187
|
-
background: var(--ax-#{$name}-#{$color-suffix});
|
188
|
-
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
189
|
-
|
190
|
-
&:hover,
|
191
|
-
&:focus {
|
192
|
-
background: var(--ax-#{$name}-dark-#{$color-suffix});
|
193
|
-
}
|
194
|
-
|
195
|
-
&:active {
|
196
|
-
background: var(--ax-#{$name}-light-#{$color-suffix});
|
197
|
-
}
|
198
|
-
|
199
|
-
&.selected {
|
200
|
-
background: var(--ax-#{$name}-dark-#{$color-suffix});
|
201
|
-
}
|
202
|
-
|
203
|
-
&.disabled {
|
204
|
-
cursor: not-allowed;
|
205
|
-
background: var(--ax-gray-light-color) !important;
|
206
|
-
color: var(--ax-gray-fore-color) !important;
|
207
|
-
border-color: var(--ax-gray-light-color) !important;
|
208
|
-
}
|
209
|
-
|
210
|
-
&.twotone {
|
211
|
-
background: var(--ax-#{$name}-trans-light-#{$color-suffix});
|
212
|
-
border-color: transparent;
|
213
|
-
|
214
|
-
@if ($name =="light") {
|
215
|
-
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
216
|
-
}
|
217
|
-
|
218
|
-
@else {
|
219
|
-
color: var(--ax-#{$name}-#{$color-suffix});
|
220
|
-
}
|
221
|
-
|
222
|
-
&:hover:not(.disabled),
|
223
|
-
&:focus:not(.disabled) {
|
224
|
-
background: var(--ax-#{$name}-light-#{$color-suffix});
|
225
|
-
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
226
|
-
}
|
227
|
-
|
228
|
-
&:active {
|
229
|
-
background: var(--ax-#{$name}-dark-#{$color-suffix});
|
230
|
-
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
231
|
-
}
|
232
|
-
|
233
|
-
&.selected {
|
234
|
-
background: var(--ax-#{$name}-dark-#{$color-suffix});
|
235
|
-
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
236
|
-
}
|
237
|
-
}
|
238
|
-
|
239
|
-
&.outline {
|
240
|
-
background: transparent;
|
241
|
-
border: 1px solid;
|
242
|
-
border-color: var(--ax-#{$name}-#{$color-suffix});
|
243
|
-
|
244
|
-
@if ($name =="light") {
|
245
|
-
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
246
|
-
}
|
247
|
-
|
248
|
-
@else {
|
249
|
-
color: var(--ax-#{$name}-#{$color-suffix});
|
250
|
-
}
|
251
|
-
|
252
|
-
&:hover:not(.disabled),
|
253
|
-
&:focus:not(.disabled) {
|
254
|
-
background: var(--ax-#{$name}-#{$color-suffix});
|
255
|
-
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
256
|
-
}
|
257
|
-
|
258
|
-
&:active {
|
259
|
-
background: var(--ax-#{$name}-light-#{$color-suffix});
|
260
|
-
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
261
|
-
border-color: var(--ax-#{$name}-light-#{$color-suffix});
|
262
|
-
}
|
263
|
-
|
264
|
-
&.selected {
|
265
|
-
background: var(--ax-#{$name}-dark-#{$color-suffix});
|
266
|
-
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
267
|
-
border-color: var(--ax-#{$name}-dark-#{$color-suffix});
|
268
|
-
}
|
269
|
-
}
|
270
|
-
|
271
|
-
&.blank {
|
272
|
-
background: transparent;
|
273
|
-
border-color: transparent;
|
274
|
-
|
275
|
-
@if ($name =="light") {
|
276
|
-
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
277
|
-
}
|
278
|
-
|
279
|
-
@else {
|
280
|
-
color: var(--ax-#{$name}-#{$color-suffix});
|
281
|
-
}
|
282
|
-
|
283
|
-
&:hover,
|
284
|
-
&:focus {
|
285
|
-
@if ($name =="light") {
|
286
|
-
background: var(--ax-#{$name}-trans-light-#{$color-suffix});
|
287
|
-
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
288
|
-
}
|
289
|
-
|
290
|
-
@else {
|
291
|
-
background: var(--ax-#{$name}-trans-light-#{$color-suffix});
|
292
|
-
color: var(--ax-#{$name}-#{$color-suffix});
|
293
|
-
}
|
294
|
-
}
|
295
|
-
|
296
|
-
&:active {
|
297
|
-
@if ($name =="light") {
|
298
|
-
background: var(--ax-#{$name}-trans-dark-#{$color-suffix});
|
299
|
-
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
300
|
-
}
|
301
|
-
|
302
|
-
@else {
|
303
|
-
background: var(--ax-#{$name}-trans-dark-#{$color-suffix});
|
304
|
-
color: var(--ax-#{$name}-#{$color-suffix});
|
305
|
-
}
|
306
|
-
}
|
307
|
-
|
308
|
-
&.selected {
|
309
|
-
@if ($name =="light") {
|
310
|
-
background: var(--ax-#{$name}-trans-dark-#{$color-suffix});
|
311
|
-
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
312
|
-
}
|
313
|
-
|
314
|
-
@else {
|
315
|
-
background: var(--ax-#{$name}-trans-dark-#{$color-suffix});
|
316
|
-
color: var(--ax-#{$name}-#{$color-suffix});
|
317
|
-
}
|
318
|
-
}
|
319
|
-
}
|
320
|
-
|
321
|
-
&.panel {
|
322
|
-
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
323
|
-
background-color: var(--ax-#{$name}-#{$color-suffix});
|
324
|
-
}
|
325
|
-
}
|
326
|
-
}
|
327
|
-
}
|
328
|
-
}
|
329
|
-
}
|
1
|
+
@import "./variables.scss";
|
2
|
+
|
3
|
+
:root {
|
4
|
+
--ax-border-color: #e0f4e0;
|
5
|
+
--ax-border-dark-color: rgba(34, 36, 38, 0.3);
|
6
|
+
--ax-size: 7px;
|
7
|
+
--ax-base-size: var(--ax-size);
|
8
|
+
--ax-base-ratio: 6;
|
9
|
+
--ax-overlay-full-width: 93;
|
10
|
+
|
11
|
+
// Create Sizes
|
12
|
+
@each $name,
|
13
|
+
$size in $sizes {
|
14
|
+
@if type-of($size)=="map" {
|
15
|
+
|
16
|
+
@each $subname,
|
17
|
+
$variant in $size {
|
18
|
+
@if $name=="" {
|
19
|
+
--ax-size-#{$name}#{$subname}: #{$variant};
|
20
|
+
}
|
21
|
+
|
22
|
+
@else {
|
23
|
+
--ax-size-#{$name}-#{$subname}: #{$variant};
|
24
|
+
}
|
25
|
+
}
|
26
|
+
}
|
27
|
+
}
|
28
|
+
|
29
|
+
// Create Colors
|
30
|
+
@each $name,
|
31
|
+
$color in $colors {
|
32
|
+
@if type-of($color)=="map" {
|
33
|
+
|
34
|
+
@each $subname,
|
35
|
+
$variant in $color {
|
36
|
+
@if $subname=="" {
|
37
|
+
--ax-#{$name}-#{$color-suffix}: #{$variant};
|
38
|
+
}
|
39
|
+
|
40
|
+
@else {
|
41
|
+
--ax-#{$name}-#{$subname}-#{$color-suffix}: #{$variant};
|
42
|
+
}
|
43
|
+
}
|
44
|
+
}
|
45
|
+
|
46
|
+
@else {
|
47
|
+
--ax-#{$name}-#{$color-suffix}: #{$color};
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
@each $name,
|
53
|
+
$color in $colors {
|
54
|
+
@if type-of($color)=="map" {
|
55
|
+
|
56
|
+
@each $subname,
|
57
|
+
$variant in $color {
|
58
|
+
@if $subname=="" {
|
59
|
+
.ax-text-#{$name} {
|
60
|
+
color: var(--ax-#{$name}-#{$color-suffix});
|
61
|
+
}
|
62
|
+
|
63
|
+
.ax-bg-#{$name} {
|
64
|
+
background: var(--ax-#{$name}-#{$color-suffix});
|
65
|
+
}
|
66
|
+
|
67
|
+
.ax-border-#{$name} {
|
68
|
+
border-color: var(--ax-#{$name}-#{$color-suffix});
|
69
|
+
}
|
70
|
+
}
|
71
|
+
|
72
|
+
@else {
|
73
|
+
.ax-text-#{$name}-#{$subname} {
|
74
|
+
color: var(--ax-#{$name}-#{$subname}-#{$color-suffix});
|
75
|
+
}
|
76
|
+
|
77
|
+
.ax-bg-#{$name}-#{$subname} {
|
78
|
+
background: var(--ax-#{$name}-#{$subname}-#{$color-suffix});
|
79
|
+
}
|
80
|
+
|
81
|
+
.ax-border-#{$name}-#{$subname} {
|
82
|
+
background: var(--ax-#{$name}-#{$subname}-#{$color-suffix});
|
83
|
+
}
|
84
|
+
}
|
85
|
+
}
|
86
|
+
}
|
87
|
+
}
|
88
|
+
|
89
|
+
// Sizes
|
90
|
+
.ax {
|
91
|
+
&.form-control {
|
92
|
+
height: calc(var(--ax-base-size) * var(--ax-base-ratio)) !important;
|
93
|
+
padding: 0 0.5rem;
|
94
|
+
font-size: 1rem;
|
95
|
+
font-weight: 500;
|
96
|
+
|
97
|
+
// &.sm,
|
98
|
+
// &.md,
|
99
|
+
// &.lg {
|
100
|
+
// &.ax-button-icon {
|
101
|
+
// width: calc(var(--ax-base-size) * var(--ax-base-ratio)) !important;
|
102
|
+
// height: calc(var(--ax-base-size) * var(--ax-base-ratio)) !important;
|
103
|
+
// }
|
104
|
+
// }
|
105
|
+
&.sm {
|
106
|
+
--ax-base-size: calc(var(--ax-size) - 2px);
|
107
|
+
font-size: 0.875rem;
|
108
|
+
}
|
109
|
+
|
110
|
+
&.md {
|
111
|
+
height: calc(var(--ax-base-size) * var(--ax-base-ratio)) !important;
|
112
|
+
font-size: 1rem;
|
113
|
+
font-weight: 500;
|
114
|
+
}
|
115
|
+
|
116
|
+
&.lg {
|
117
|
+
--ax-base-size: calc(var(--ax-size) + 2px);
|
118
|
+
font-size: 1.5rem;
|
119
|
+
}
|
120
|
+
}
|
121
|
+
}
|
122
|
+
|
123
|
+
.ax {
|
124
|
+
&.sm {
|
125
|
+
--ax-base-size: calc(var(--ax-size) - 2px);
|
126
|
+
}
|
127
|
+
|
128
|
+
&.lg {
|
129
|
+
--ax-base-size: calc(var(--ax-size) + 2px);
|
130
|
+
}
|
131
|
+
}
|
132
|
+
|
133
|
+
@each $name,
|
134
|
+
$size in $sizes {
|
135
|
+
@if type-of($size)=="map" {
|
136
|
+
|
137
|
+
@each $subname,
|
138
|
+
$variant in $size {
|
139
|
+
@if $name=="" {
|
140
|
+
.ax-mrg-#{$subname} {
|
141
|
+
margin: var(--ax-size-#{$subname}) !important;
|
142
|
+
}
|
143
|
+
|
144
|
+
.ax-pad-#{$subname} {
|
145
|
+
padding: var(--ax-size-#{$subname}) !important;
|
146
|
+
}
|
147
|
+
}
|
148
|
+
}
|
149
|
+
}
|
150
|
+
}
|
151
|
+
|
152
|
+
// Create Classes
|
153
|
+
@each $name,
|
154
|
+
$color in $colors {
|
155
|
+
.ax {
|
156
|
+
@if type-of($color)=="map" {
|
157
|
+
|
158
|
+
@each $subname,
|
159
|
+
$variant in $color {
|
160
|
+
@if $subname=="" {
|
161
|
+
&.bg-#{$name} {
|
162
|
+
background-color: var(--ax-#{$name}-#{$color-suffix});
|
163
|
+
}
|
164
|
+
|
165
|
+
&.bg-light-#{$name} {
|
166
|
+
background-color: var(--ax-#{$name}-light-#{$color-suffix});
|
167
|
+
}
|
168
|
+
|
169
|
+
&.bg-dark-#{$name} {
|
170
|
+
background-color: var(--ax-#{$name}-dark-#{$color-suffix});
|
171
|
+
}
|
172
|
+
|
173
|
+
&.bg-lighten-#{$name} {
|
174
|
+
background-color: var(--ax-#{$name}-trans-light-#{$color-suffix});
|
175
|
+
}
|
176
|
+
|
177
|
+
&.text-#{$name} {
|
178
|
+
color: var(--ax-#{$name}-#{$color-suffix});
|
179
|
+
}
|
180
|
+
|
181
|
+
&.lighten-#{$name} {
|
182
|
+
color: var(--ax-#{$name}-#{$color-suffix});
|
183
|
+
background-color: var(--ax-#{$name}-trans-light-#{$color-suffix});
|
184
|
+
}
|
185
|
+
|
186
|
+
&.#{$name} {
|
187
|
+
background: var(--ax-#{$name}-#{$color-suffix});
|
188
|
+
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
189
|
+
|
190
|
+
&:hover,
|
191
|
+
&:focus {
|
192
|
+
background: var(--ax-#{$name}-dark-#{$color-suffix});
|
193
|
+
}
|
194
|
+
|
195
|
+
&:active {
|
196
|
+
background: var(--ax-#{$name}-light-#{$color-suffix});
|
197
|
+
}
|
198
|
+
|
199
|
+
&.selected {
|
200
|
+
background: var(--ax-#{$name}-dark-#{$color-suffix});
|
201
|
+
}
|
202
|
+
|
203
|
+
&.disabled {
|
204
|
+
cursor: not-allowed;
|
205
|
+
background: var(--ax-gray-light-color) !important;
|
206
|
+
color: var(--ax-gray-fore-color) !important;
|
207
|
+
border-color: var(--ax-gray-light-color) !important;
|
208
|
+
}
|
209
|
+
|
210
|
+
&.twotone {
|
211
|
+
background: var(--ax-#{$name}-trans-light-#{$color-suffix});
|
212
|
+
border-color: transparent;
|
213
|
+
|
214
|
+
@if ($name =="light") {
|
215
|
+
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
216
|
+
}
|
217
|
+
|
218
|
+
@else {
|
219
|
+
color: var(--ax-#{$name}-#{$color-suffix});
|
220
|
+
}
|
221
|
+
|
222
|
+
&:hover:not(.disabled),
|
223
|
+
&:focus:not(.disabled) {
|
224
|
+
background: var(--ax-#{$name}-light-#{$color-suffix});
|
225
|
+
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
226
|
+
}
|
227
|
+
|
228
|
+
&:active {
|
229
|
+
background: var(--ax-#{$name}-dark-#{$color-suffix});
|
230
|
+
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
231
|
+
}
|
232
|
+
|
233
|
+
&.selected {
|
234
|
+
background: var(--ax-#{$name}-dark-#{$color-suffix});
|
235
|
+
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
236
|
+
}
|
237
|
+
}
|
238
|
+
|
239
|
+
&.outline {
|
240
|
+
background: transparent;
|
241
|
+
border: 1px solid;
|
242
|
+
border-color: var(--ax-#{$name}-#{$color-suffix});
|
243
|
+
|
244
|
+
@if ($name =="light") {
|
245
|
+
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
246
|
+
}
|
247
|
+
|
248
|
+
@else {
|
249
|
+
color: var(--ax-#{$name}-#{$color-suffix});
|
250
|
+
}
|
251
|
+
|
252
|
+
&:hover:not(.disabled),
|
253
|
+
&:focus:not(.disabled) {
|
254
|
+
background: var(--ax-#{$name}-#{$color-suffix});
|
255
|
+
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
256
|
+
}
|
257
|
+
|
258
|
+
&:active {
|
259
|
+
background: var(--ax-#{$name}-light-#{$color-suffix});
|
260
|
+
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
261
|
+
border-color: var(--ax-#{$name}-light-#{$color-suffix});
|
262
|
+
}
|
263
|
+
|
264
|
+
&.selected {
|
265
|
+
background: var(--ax-#{$name}-dark-#{$color-suffix});
|
266
|
+
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
267
|
+
border-color: var(--ax-#{$name}-dark-#{$color-suffix});
|
268
|
+
}
|
269
|
+
}
|
270
|
+
|
271
|
+
&.blank {
|
272
|
+
background: transparent;
|
273
|
+
border-color: transparent;
|
274
|
+
|
275
|
+
@if ($name =="light") {
|
276
|
+
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
277
|
+
}
|
278
|
+
|
279
|
+
@else {
|
280
|
+
color: var(--ax-#{$name}-#{$color-suffix});
|
281
|
+
}
|
282
|
+
|
283
|
+
&:hover,
|
284
|
+
&:focus {
|
285
|
+
@if ($name =="light") {
|
286
|
+
background: var(--ax-#{$name}-trans-light-#{$color-suffix});
|
287
|
+
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
288
|
+
}
|
289
|
+
|
290
|
+
@else {
|
291
|
+
background: var(--ax-#{$name}-trans-light-#{$color-suffix});
|
292
|
+
color: var(--ax-#{$name}-#{$color-suffix});
|
293
|
+
}
|
294
|
+
}
|
295
|
+
|
296
|
+
&:active {
|
297
|
+
@if ($name =="light") {
|
298
|
+
background: var(--ax-#{$name}-trans-dark-#{$color-suffix});
|
299
|
+
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
300
|
+
}
|
301
|
+
|
302
|
+
@else {
|
303
|
+
background: var(--ax-#{$name}-trans-dark-#{$color-suffix});
|
304
|
+
color: var(--ax-#{$name}-#{$color-suffix});
|
305
|
+
}
|
306
|
+
}
|
307
|
+
|
308
|
+
&.selected {
|
309
|
+
@if ($name =="light") {
|
310
|
+
background: var(--ax-#{$name}-trans-dark-#{$color-suffix});
|
311
|
+
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
312
|
+
}
|
313
|
+
|
314
|
+
@else {
|
315
|
+
background: var(--ax-#{$name}-trans-dark-#{$color-suffix});
|
316
|
+
color: var(--ax-#{$name}-#{$color-suffix});
|
317
|
+
}
|
318
|
+
}
|
319
|
+
}
|
320
|
+
|
321
|
+
&.panel {
|
322
|
+
color: var(--ax-#{$name}-fore-#{$color-suffix});
|
323
|
+
background-color: var(--ax-#{$name}-#{$color-suffix});
|
324
|
+
}
|
325
|
+
}
|
326
|
+
}
|
327
|
+
}
|
328
|
+
}
|
329
|
+
}
|
330
330
|
}
|