@acorex/styles 3.0.27 → 3.0.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/scss/menu.scss CHANGED
@@ -1,471 +1,471 @@
1
- /* nav */
2
- .ax.nav-menu,
3
- .ax.nav-menu ul,
4
- .ax.nav-menu li,
5
- .ax.nav-menu span {
6
- margin: 0;
7
- padding: 0;
8
- line-height: normal;
9
- list-style: none;
10
- display: block;
11
- position: relative;
12
- }
13
- .rtl {
14
- .ax {
15
- &.nav-menu {
16
- li.ax-menu-item {
17
- &:hover {
18
- &::after {
19
- right: 0 !important;
20
- left: initial !important;
21
- }
22
- }
23
- }
24
- }
25
- }
26
- }
27
- .ax {
28
- &.nav-menu {
29
- li.tooltip {
30
- position: relative; /* making the .tooltip span a container for the tooltip text */
31
-
32
- &:hover {
33
- &::before {
34
- display: block;
35
- }
36
- }
37
- &::before {
38
- content: attr(data-text);
39
- position: absolute;
40
- bottom: -85%;
41
- left: 0;
42
- padding: 0.5rem 1rem;
43
- border-radius: var(--ax-size-border-radius);
44
- background: var(--ax-dark-color);
45
- color: var(--ax-dark-fore-color);
46
- text-align: center;
47
- display: none; /* hide by default */
48
- z-index: 1;
49
- }
50
- }
51
- &.rtl {
52
- ul {
53
- right: -9999px !important;
54
- left: initial !important;
55
-
56
- li {
57
- &:hover {
58
- > ul {
59
- right: 100% !important;
60
- left: initial !important;
61
- }
62
- }
63
- .drop-icon {
64
- position: absolute;
65
- left: 10px;
66
- right: initial;
67
- }
68
- }
69
- }
70
-
71
- li {
72
-
73
- &:hover {
74
- > ul {
75
- right: 0 !important;
76
- left: initial !important;
77
- }
78
- }
79
- }
80
- }
81
-
82
- ul {
83
- opacity: 0;
84
- position: absolute;
85
- top: 100%;
86
- left: -9999px;
87
- z-index: 50000;
88
- -webkit-transition: opacity 0.3s;
89
- transition: opacity 0.3s;
90
- min-width: 12em;
91
- box-shadow: 0 1px 7px 0 var(--ax-border-color);
92
- background: #fff;
93
-
94
- li {
95
- float: none;
96
-
97
- .drop-icon {
98
- position: absolute;
99
- right: 10px;
100
- left: initial;
101
- }
102
-
103
- &:hover {
104
- background-color: var(--ax-border-color);
105
-
106
- > ul {
107
- top: 0;
108
- left: 100%;
109
- }
110
- }
111
- }
112
- }
113
-
114
- li {
115
- // cursor: default;
116
- // float: left;
117
- white-space: nowrap;
118
- cursor: pointer;
119
-
120
- &.disabled {
121
- color: var(--ax-gray-color) !important;
122
- background-color: var(--ax-gray-trans-light-color) !important;
123
- cursor: not-allowed !important;
124
-
125
- i {
126
- color: var(--ax-gray-dark-color) !important;
127
- }
128
-
129
- &:hover {
130
- background: var(--ax-light-light-color) !important;
131
- border-color: var(--ax-light-light-color) !important;
132
- color: var(--ax-gray-dark-color) !important;
133
- cursor: not-allowed !important;
134
- }
135
- }
136
-
137
- &:hover {
138
- > ul {
139
- left: 0;
140
- opacity: 1;
141
- z-index: 1000;
142
- }
143
- }
144
- }
145
-
146
- span {
147
- display: flex;
148
- padding: 0 10px;
149
- font-weight: normal;
150
- font-size: 1rem;
151
- line-height: 40px;
152
- text-decoration: none;
153
- align-items: center;
154
-
155
- // i {
156
- // margin-inline-end: 0.5em;
157
- // }
158
-
159
- span {
160
- padding: 0 5px;
161
- }
162
-
163
- .drop-icon {
164
- }
165
- }
166
-
167
- &.nav-center {
168
- > li {
169
- display: inline-flex;
170
- }
171
- }
172
-
173
- &.nav-vertical {
174
- max-width: 220px;
175
-
176
- ul {
177
- top: 0;
178
- left: -9999px;
179
-
180
- [dir="rtl"] & {
181
- right: -9999px !important;
182
- left: initial !important;
183
- }
184
- }
185
-
186
- li {
187
- width: 100%;
188
- float: none;
189
- }
190
- }
191
-
192
- > li {
193
- > .nav-active {
194
- background-color: rgba(0, 0, 0, 0.05);
195
- }
196
-
197
- :hover {
198
- > ul {
199
- left: 100%;
200
-
201
- [dir="rtl"] & {
202
- right: 100% !important;
203
- left: initial !important;
204
- }
205
- }
206
- }
207
- }
208
- }
209
- }
210
-
211
- .ax.nav-menu span:hover,
212
- .ax.nav-menu span:focus,
213
- .ax.nav-menu li:hover span {
214
- }
215
-
216
- /* 2 */
217
- .ax.nav-menu li li span,
218
- .ax.nav-menu li:hover li span {
219
- padding: 5px 10px;
220
- font-size: 12px;
221
- line-height: normal;
222
- }
223
-
224
- /* 2: hover/persistence */
225
- .ax.nav-menu li:hover li span:hover,
226
- .ax.nav-menu li:hover li span:focus,
227
- .ax.nav-menu li:hover li:hover span {
228
- }
229
-
230
- /* 3 */
231
- .ax.nav-menu li:hover li:hover li span {
232
- }
233
-
234
- /* 3: hover/persistence */
235
- .ax.nav-menu li:hover li:hover li span:hover,
236
- .ax.nav-menu li:hover li:hover li span:focus,
237
- .ax.nav-menu li:hover li:hover li:hover span {
238
- }
239
-
240
- /* 4 */
241
- .ax.nav-menu li:hover li:hover li:hover li span {
242
- }
243
-
244
- /* 4: hover */
245
- .ax.nav-menu li:hover li:hover li:hover li span:hover,
246
- .ax.nav-menu li:hover li:hover li:hover li span:focus {
247
- }
248
-
249
- /* vertical */
250
- // .nav-vertical {
251
- // max-width: 220px;
252
- // }
253
-
254
- // .nav-vertical ul {
255
- // top: 0;
256
- // left: -9999px;
257
- // }
258
-
259
- // .nav-vertical li {
260
- // width: 100%;
261
- // float: none;
262
- // }
263
-
264
- // .nav-vertical li:hover>ul {
265
- // left: 100%;
266
- // }
267
- // .nav-menu li:hover>ul {
268
- // left: 0;
269
- // opacity: 1;
270
- // z-index: 1000;
271
- // }
272
-
273
- // .nav-menu ul li:hover>ul {
274
- // top: 0;
275
- // left: 100%;
276
- // }
277
-
278
- // .nav-menu li {
279
- // cursor: default;
280
- // float: left;
281
- // white-space: nowrap;
282
- // }
283
-
284
- // .nav-menu ul li {
285
- // float: none;
286
- // }
287
-
288
- /* sub width */
289
- // .nav-menu ul {
290
- // min-width: 12em;
291
- // -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
292
- // box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
293
- // }
294
-
295
- /* center */
296
- // .nav-center {
297
- // float: right;
298
- // right: 50%;
299
- // }
300
-
301
- // .nav-center>li {
302
- // left: 50%;
303
- // }
304
-
305
- /* root */
306
- // .nav-menu a {
307
- // padding: 0 10px;
308
- // color: #5BC0DE;
309
- // font-weight: normal;
310
- // font-size: 16px;
311
- // line-height: 40px;
312
- // text-decoration: none;
313
- // }
314
-
315
- /* root: active */
316
- // .nav-menu>li>.nav-active {
317
- // background-color: rgba(0, 0, 0, 0.05);
318
- // }
319
-
320
- /* root: hover/persistence */
321
-
322
- // .ax {
323
- // &.menu-container {
324
- // > ul {
325
- // margin: 0;
326
- // padding: 0;
327
- // list-style: none;
328
- // display: flex;
329
-
330
- // li {
331
- // position: relative;
332
- // cursor: pointer;
333
- // height: 25px;
334
-
335
- // &.disabled {
336
- // background: var(--ax-light-light-color) !important;
337
- // border-color: var(--ax-light-light-color) !important;
338
- // color: var(--ax-gray-dark-color) !important;
339
- // cursor: not-allowed;
340
- // }
341
- // .content-side{
342
- // flex: 1;
343
- // text-align: left;
344
- // [dir="rtl"] & {
345
- // text-align: right;
346
- // }
347
- // }
348
- // .sub-icon-side {
349
- // height: 100%;
350
- // display: flex;
351
- // justify-content: center;
352
- // align-items: center;
353
- // padding: 0 0.5em;
354
- // margin: 0.3em -0.5em 0em 0em;
355
- // }
356
-
357
- // i.ax-menu-item-icon {
358
- // position: absolute;
359
- // width: 2em;
360
- // height: 100%;
361
- // background: rgba(0, 0, 0, 0.14);
362
- // bottom: 0;
363
- // padding: 0px 0.5em;
364
- // display: flex;
365
- // align-items: center;
366
- // justify-content: center;
367
- // }
368
-
369
- // &.startIcon {
370
- // padding-inline-start: 2em;
371
-
372
- // i.start-icon {
373
- // left: 0;
374
-
375
- // [dir="rtl"] &{
376
- // right: 0;
377
- // left: initial !important;
378
- // }
379
- // }
380
- // }
381
-
382
- // &.endIcon {
383
- // padding-inline-end: 2em;
384
-
385
- // i.end-icon {
386
- // right: 0;
387
-
388
- // [dir="rtl"] &{
389
- // left: 0;
390
- // right: initial !important;
391
- // }
392
- // }
393
- // }
394
-
395
- // .ax-toolbar-menu-item-text {
396
- // span {
397
- // padding: 0 0.5em;
398
- // }
399
- // }
400
- // }
401
-
402
- // > li {
403
- // //padding: 0.4em 0.2em;
404
- // display: flex;
405
- // position: relative;
406
- // align-items: center;
407
- // overflow: hidden;
408
- // }
409
-
410
- // &.horizontal {
411
- // flex-direction: row;
412
- // align-items: center;
413
-
414
- // > li {
415
- // margin-inline-end: 0.6em;
416
- // -webkit-border-radius: var(--ax-size-border-radius);
417
- // -moz-border-radius: var(--ax-size-border-radius);
418
- // border-radius: var(--ax-size-border-radius);
419
- // }
420
- // }
421
-
422
- // &.vertical {
423
- // flex-direction: column;
424
- // align-items: flex-start;
425
-
426
- // > li {
427
- // margin-block-end: 0.6em;
428
- // width: 100%;
429
- // }
430
- // }
431
-
432
- // .collapsed {
433
- // display: none;
434
- // }
435
-
436
- // .sub-menu {
437
- // background-color: var(--ax-white-color);
438
- // box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
439
- // border: 1px solid -var(--ax-border-color);
440
- // min-width: 120px;
441
- // position: fixed;
442
- // list-style: none;
443
- // padding: 0;
444
- // color: var(--ax-black-color);
445
- // text-align: start;
446
- // z-index: 100;
447
-
448
- // li {
449
- // cursor: pointer;
450
- // padding-top: 0.5em;
451
- // padding-bottom: 0.5em;
452
- // display: flex;
453
- // &.divider {
454
- // border-block-end: 1px solid var(--ax-border-color);
455
- // }
456
- // &.split {
457
- // border-top: 1px solid -var(--ax-border-color);
458
- // }
459
- // }
460
- // }
461
-
462
- // .more {
463
- // padding: 0.6em 0.8em;
464
- // display: flex;
465
- // background-color: var(--ax-light-light-color);
466
- // position: relative;
467
- // align-items: center;
468
- // }
469
- // }
470
- // }
471
- // }
1
+ /* nav */
2
+ .ax.nav-menu,
3
+ .ax.nav-menu ul,
4
+ .ax.nav-menu li,
5
+ .ax.nav-menu span {
6
+ margin: 0;
7
+ padding: 0;
8
+ line-height: normal;
9
+ list-style: none;
10
+ display: block;
11
+ position: relative;
12
+ }
13
+ .rtl {
14
+ .ax {
15
+ &.nav-menu {
16
+ li.ax-menu-item {
17
+ &:hover {
18
+ &::after {
19
+ right: 0 !important;
20
+ left: initial !important;
21
+ }
22
+ }
23
+ }
24
+ }
25
+ }
26
+ }
27
+ .ax {
28
+ &.nav-menu {
29
+ li.tooltip {
30
+ position: relative; /* making the .tooltip span a container for the tooltip text */
31
+
32
+ &:hover {
33
+ &::before {
34
+ display: block;
35
+ }
36
+ }
37
+ &::before {
38
+ content: attr(data-text);
39
+ position: absolute;
40
+ bottom: -85%;
41
+ left: 0;
42
+ padding: 0.5rem 1rem;
43
+ border-radius: var(--ax-size-border-radius);
44
+ background: var(--ax-dark-color);
45
+ color: var(--ax-dark-fore-color);
46
+ text-align: center;
47
+ display: none; /* hide by default */
48
+ z-index: 1;
49
+ }
50
+ }
51
+ &.rtl {
52
+ ul {
53
+ right: -9999px !important;
54
+ left: initial !important;
55
+
56
+ li {
57
+ &:hover {
58
+ > ul {
59
+ right: 100% !important;
60
+ left: initial !important;
61
+ }
62
+ }
63
+ .drop-icon {
64
+ position: absolute;
65
+ left: 10px;
66
+ right: initial;
67
+ }
68
+ }
69
+ }
70
+
71
+ li {
72
+
73
+ &:hover {
74
+ > ul {
75
+ right: 0 !important;
76
+ left: initial !important;
77
+ }
78
+ }
79
+ }
80
+ }
81
+
82
+ ul {
83
+ opacity: 0;
84
+ position: absolute;
85
+ top: 100%;
86
+ left: -9999px;
87
+ z-index: 50000;
88
+ -webkit-transition: opacity 0.3s;
89
+ transition: opacity 0.3s;
90
+ min-width: 12em;
91
+ box-shadow: 0 1px 7px 0 var(--ax-border-color);
92
+ background: #fff;
93
+
94
+ li {
95
+ float: none;
96
+
97
+ .drop-icon {
98
+ position: absolute;
99
+ right: 10px;
100
+ left: initial;
101
+ }
102
+
103
+ &:hover {
104
+ background-color: var(--ax-border-color);
105
+
106
+ > ul {
107
+ top: 0;
108
+ left: 100%;
109
+ }
110
+ }
111
+ }
112
+ }
113
+
114
+ li {
115
+ // cursor: default;
116
+ // float: left;
117
+ white-space: nowrap;
118
+ cursor: pointer;
119
+
120
+ &.disabled {
121
+ color: var(--ax-gray-color) !important;
122
+ background-color: var(--ax-gray-trans-light-color) !important;
123
+ cursor: not-allowed !important;
124
+
125
+ i {
126
+ color: var(--ax-gray-dark-color) !important;
127
+ }
128
+
129
+ &:hover {
130
+ background: var(--ax-light-light-color) !important;
131
+ border-color: var(--ax-light-light-color) !important;
132
+ color: var(--ax-gray-dark-color) !important;
133
+ cursor: not-allowed !important;
134
+ }
135
+ }
136
+
137
+ &:hover {
138
+ > ul {
139
+ left: 0;
140
+ opacity: 1;
141
+ z-index: 1000;
142
+ }
143
+ }
144
+ }
145
+
146
+ span {
147
+ display: flex;
148
+ padding: 0 10px;
149
+ font-weight: normal;
150
+ font-size: 1rem;
151
+ line-height: 40px;
152
+ text-decoration: none;
153
+ align-items: center;
154
+
155
+ // i {
156
+ // margin-inline-end: 0.5em;
157
+ // }
158
+
159
+ span {
160
+ padding: 0 5px;
161
+ }
162
+
163
+ .drop-icon {
164
+ }
165
+ }
166
+
167
+ &.nav-center {
168
+ > li {
169
+ display: inline-flex;
170
+ }
171
+ }
172
+
173
+ &.nav-vertical {
174
+ max-width: 220px;
175
+
176
+ ul {
177
+ top: 0;
178
+ left: -9999px;
179
+
180
+ [dir="rtl"] & {
181
+ right: -9999px !important;
182
+ left: initial !important;
183
+ }
184
+ }
185
+
186
+ li {
187
+ width: 100%;
188
+ float: none;
189
+ }
190
+ }
191
+
192
+ > li {
193
+ > .nav-active {
194
+ background-color: rgba(0, 0, 0, 0.05);
195
+ }
196
+
197
+ :hover {
198
+ > ul {
199
+ left: 100%;
200
+
201
+ [dir="rtl"] & {
202
+ right: 100% !important;
203
+ left: initial !important;
204
+ }
205
+ }
206
+ }
207
+ }
208
+ }
209
+ }
210
+
211
+ .ax.nav-menu span:hover,
212
+ .ax.nav-menu span:focus,
213
+ .ax.nav-menu li:hover span {
214
+ }
215
+
216
+ /* 2 */
217
+ .ax.nav-menu li li span,
218
+ .ax.nav-menu li:hover li span {
219
+ padding: 5px 10px;
220
+ font-size: 12px;
221
+ line-height: normal;
222
+ }
223
+
224
+ /* 2: hover/persistence */
225
+ .ax.nav-menu li:hover li span:hover,
226
+ .ax.nav-menu li:hover li span:focus,
227
+ .ax.nav-menu li:hover li:hover span {
228
+ }
229
+
230
+ /* 3 */
231
+ .ax.nav-menu li:hover li:hover li span {
232
+ }
233
+
234
+ /* 3: hover/persistence */
235
+ .ax.nav-menu li:hover li:hover li span:hover,
236
+ .ax.nav-menu li:hover li:hover li span:focus,
237
+ .ax.nav-menu li:hover li:hover li:hover span {
238
+ }
239
+
240
+ /* 4 */
241
+ .ax.nav-menu li:hover li:hover li:hover li span {
242
+ }
243
+
244
+ /* 4: hover */
245
+ .ax.nav-menu li:hover li:hover li:hover li span:hover,
246
+ .ax.nav-menu li:hover li:hover li:hover li span:focus {
247
+ }
248
+
249
+ /* vertical */
250
+ // .nav-vertical {
251
+ // max-width: 220px;
252
+ // }
253
+
254
+ // .nav-vertical ul {
255
+ // top: 0;
256
+ // left: -9999px;
257
+ // }
258
+
259
+ // .nav-vertical li {
260
+ // width: 100%;
261
+ // float: none;
262
+ // }
263
+
264
+ // .nav-vertical li:hover>ul {
265
+ // left: 100%;
266
+ // }
267
+ // .nav-menu li:hover>ul {
268
+ // left: 0;
269
+ // opacity: 1;
270
+ // z-index: 1000;
271
+ // }
272
+
273
+ // .nav-menu ul li:hover>ul {
274
+ // top: 0;
275
+ // left: 100%;
276
+ // }
277
+
278
+ // .nav-menu li {
279
+ // cursor: default;
280
+ // float: left;
281
+ // white-space: nowrap;
282
+ // }
283
+
284
+ // .nav-menu ul li {
285
+ // float: none;
286
+ // }
287
+
288
+ /* sub width */
289
+ // .nav-menu ul {
290
+ // min-width: 12em;
291
+ // -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
292
+ // box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
293
+ // }
294
+
295
+ /* center */
296
+ // .nav-center {
297
+ // float: right;
298
+ // right: 50%;
299
+ // }
300
+
301
+ // .nav-center>li {
302
+ // left: 50%;
303
+ // }
304
+
305
+ /* root */
306
+ // .nav-menu a {
307
+ // padding: 0 10px;
308
+ // color: #5BC0DE;
309
+ // font-weight: normal;
310
+ // font-size: 16px;
311
+ // line-height: 40px;
312
+ // text-decoration: none;
313
+ // }
314
+
315
+ /* root: active */
316
+ // .nav-menu>li>.nav-active {
317
+ // background-color: rgba(0, 0, 0, 0.05);
318
+ // }
319
+
320
+ /* root: hover/persistence */
321
+
322
+ // .ax {
323
+ // &.menu-container {
324
+ // > ul {
325
+ // margin: 0;
326
+ // padding: 0;
327
+ // list-style: none;
328
+ // display: flex;
329
+
330
+ // li {
331
+ // position: relative;
332
+ // cursor: pointer;
333
+ // height: 25px;
334
+
335
+ // &.disabled {
336
+ // background: var(--ax-light-light-color) !important;
337
+ // border-color: var(--ax-light-light-color) !important;
338
+ // color: var(--ax-gray-dark-color) !important;
339
+ // cursor: not-allowed;
340
+ // }
341
+ // .content-side{
342
+ // flex: 1;
343
+ // text-align: left;
344
+ // [dir="rtl"] & {
345
+ // text-align: right;
346
+ // }
347
+ // }
348
+ // .sub-icon-side {
349
+ // height: 100%;
350
+ // display: flex;
351
+ // justify-content: center;
352
+ // align-items: center;
353
+ // padding: 0 0.5em;
354
+ // margin: 0.3em -0.5em 0em 0em;
355
+ // }
356
+
357
+ // i.ax-menu-item-icon {
358
+ // position: absolute;
359
+ // width: 2em;
360
+ // height: 100%;
361
+ // background: rgba(0, 0, 0, 0.14);
362
+ // bottom: 0;
363
+ // padding: 0px 0.5em;
364
+ // display: flex;
365
+ // align-items: center;
366
+ // justify-content: center;
367
+ // }
368
+
369
+ // &.startIcon {
370
+ // padding-inline-start: 2em;
371
+
372
+ // i.start-icon {
373
+ // left: 0;
374
+
375
+ // [dir="rtl"] &{
376
+ // right: 0;
377
+ // left: initial !important;
378
+ // }
379
+ // }
380
+ // }
381
+
382
+ // &.endIcon {
383
+ // padding-inline-end: 2em;
384
+
385
+ // i.end-icon {
386
+ // right: 0;
387
+
388
+ // [dir="rtl"] &{
389
+ // left: 0;
390
+ // right: initial !important;
391
+ // }
392
+ // }
393
+ // }
394
+
395
+ // .ax-toolbar-menu-item-text {
396
+ // span {
397
+ // padding: 0 0.5em;
398
+ // }
399
+ // }
400
+ // }
401
+
402
+ // > li {
403
+ // //padding: 0.4em 0.2em;
404
+ // display: flex;
405
+ // position: relative;
406
+ // align-items: center;
407
+ // overflow: hidden;
408
+ // }
409
+
410
+ // &.horizontal {
411
+ // flex-direction: row;
412
+ // align-items: center;
413
+
414
+ // > li {
415
+ // margin-inline-end: 0.6em;
416
+ // -webkit-border-radius: var(--ax-size-border-radius);
417
+ // -moz-border-radius: var(--ax-size-border-radius);
418
+ // border-radius: var(--ax-size-border-radius);
419
+ // }
420
+ // }
421
+
422
+ // &.vertical {
423
+ // flex-direction: column;
424
+ // align-items: flex-start;
425
+
426
+ // > li {
427
+ // margin-block-end: 0.6em;
428
+ // width: 100%;
429
+ // }
430
+ // }
431
+
432
+ // .collapsed {
433
+ // display: none;
434
+ // }
435
+
436
+ // .sub-menu {
437
+ // background-color: var(--ax-white-color);
438
+ // box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
439
+ // border: 1px solid -var(--ax-border-color);
440
+ // min-width: 120px;
441
+ // position: fixed;
442
+ // list-style: none;
443
+ // padding: 0;
444
+ // color: var(--ax-black-color);
445
+ // text-align: start;
446
+ // z-index: 100;
447
+
448
+ // li {
449
+ // cursor: pointer;
450
+ // padding-top: 0.5em;
451
+ // padding-bottom: 0.5em;
452
+ // display: flex;
453
+ // &.divider {
454
+ // border-block-end: 1px solid var(--ax-border-color);
455
+ // }
456
+ // &.split {
457
+ // border-top: 1px solid -var(--ax-border-color);
458
+ // }
459
+ // }
460
+ // }
461
+
462
+ // .more {
463
+ // padding: 0.6em 0.8em;
464
+ // display: flex;
465
+ // background-color: var(--ax-light-light-color);
466
+ // position: relative;
467
+ // align-items: center;
468
+ // }
469
+ // }
470
+ // }
471
+ // }