@acorex/styles 21.0.0-next.14 → 21.0.0-next.16
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/components/{_action-item.scss → _action-item.css} +12 -37
- package/components/{_actionsheet.scss → _actionsheet.css} +13 -9
- package/components/{_check-box.scss → _check-box.css} +8 -24
- package/components/{_drop-down.scss → _drop-down.css} +18 -17
- package/components/_editor-container.css +306 -0
- package/components/{_general-button.scss → _general-button.css} +3 -7
- package/components/{_list.scss → _list.css} +25 -56
- package/components/_radio.css +33 -0
- package/components/{_ripple.scss → _ripple.css} +8 -8
- package/components/{_table.scss → _table.css} +20 -23
- package/components/{_uploader.scss → _uploader.css} +5 -5
- package/components/index.css +11 -0
- package/icons/fontawesome/_variables.css +229 -0
- package/icons/fontawesome/index.css +555 -0
- package/icons/huge/huge-bulk/_variables.css +211 -0
- package/icons/huge/huge-bulk/index.css +520 -0
- package/icons/huge/huge-duotone/_variables.css +211 -0
- package/icons/huge/huge-duotone/index.css +517 -0
- package/icons/huge/huge-solid-rounded/_variables.css +211 -0
- package/icons/huge/huge-solid-rounded/index.css +504 -0
- package/icons/huge/huge-solid-sharp/_variables.css +213 -0
- package/icons/huge/huge-solid-sharp/index.css +517 -0
- package/icons/huge/huge-solid-standard/_variables.css +211 -0
- package/icons/huge/huge-solid-standard/index.css +516 -0
- package/icons/huge/huge-stroke-rounded/_variables.css +211 -0
- package/icons/huge/huge-stroke-rounded/index.css +515 -0
- package/icons/huge/huge-stroke-sharp/_variables.css +142 -0
- package/icons/huge/huge-stroke-sharp/index.css +515 -0
- package/icons/huge/huge-stroke-standard/_variables.css +141 -0
- package/icons/huge/huge-stroke-standard/index.css +515 -0
- package/icons/huge/huge-twotone/_variables.css +211 -0
- package/icons/huge/huge-twotone/index.css +516 -0
- package/icons/material/_variables.css +229 -0
- package/icons/material/index.css +573 -0
- package/{index.scss → index.css} +3 -3
- package/package.json +5 -4
- package/tailwind-base.js +0 -4
- package/themes/{default.scss → default copy.scss } +6 -9
- package/themes/default.css +1240 -0
- package/base/_preflight.scss +0 -421
- package/base/index.scss +0 -15
- package/components/_editor-container.scss +0 -293
- package/components/_radio.scss +0 -51
- package/components/index.scss +0 -11
- package/generators/index.js +0 -1
- package/generators/tailwind-class-generator.js +0 -68
- package/icons/fontawesome/_variables.scss +0 -228
- package/icons/fontawesome/index.scss +0 -714
- package/icons/huge/huge-bulk/_variables.scss +0 -209
- package/icons/huge/huge-bulk/index.scss +0 -656
- package/icons/huge/huge-duotone/_variables.scss +0 -209
- package/icons/huge/huge-duotone/index.scss +0 -657
- package/icons/huge/huge-solid-rounded/_variables.scss +0 -209
- package/icons/huge/huge-solid-rounded/index.scss +0 -643
- package/icons/huge/huge-solid-sharp/_variables.scss +0 -209
- package/icons/huge/huge-solid-sharp/index.scss +0 -656
- package/icons/huge/huge-solid-standard/_variables.scss +0 -209
- package/icons/huge/huge-solid-standard/index.scss +0 -656
- package/icons/huge/huge-stroke-rounded/_variables.scss +0 -209
- package/icons/huge/huge-stroke-rounded/index.scss +0 -656
- package/icons/huge/huge-stroke-sharp/_variables.scss +0 -209
- package/icons/huge/huge-stroke-sharp/index.scss +0 -656
- package/icons/huge/huge-stroke-standard/_variables.scss +0 -209
- package/icons/huge/huge-stroke-standard/index.scss +0 -656
- package/icons/huge/huge-twotone/_variables.scss +0 -209
- package/icons/huge/huge-twotone/index.scss +0 -656
- package/icons/material/_variables.scss +0 -227
- package/icons/material/index.scss +0 -718
- package/mixins/_editor-looks.scss +0 -32
- package/mixins/_media.scss +0 -73
- package/mixins/_scroll-bar.scss +0 -35
- package/mixins/_util.scss +0 -19
- package/mixins/index.scss +0 -4
- package/utils/_theme-generator.scss +0 -238
- package/utils/_utils.scss +0 -278
- package/utils/index.scss +0 -2
|
@@ -1,27 +1,22 @@
|
|
|
1
|
-
|
|
2
|
-
@include mixins.darkMode() {
|
|
1
|
+
.dark {
|
|
3
2
|
.ax-list-item {
|
|
4
3
|
&.ax-state-selected {
|
|
5
4
|
background-color: rgba(var(--ax-sys-color-primary-800)) !important;
|
|
6
5
|
color: rgba(var(--ax-sys-color-on-primary)) !important;
|
|
7
|
-
|
|
8
|
-
// .ax-selected-icon {
|
|
9
|
-
//
|
|
10
|
-
// color: rgba(var(--ax-sys-color-on-primary));
|
|
11
|
-
// }
|
|
12
6
|
}
|
|
13
7
|
}
|
|
14
8
|
}
|
|
9
|
+
|
|
15
10
|
.ax-list {
|
|
16
11
|
display: flex;
|
|
17
12
|
height: 100%;
|
|
18
13
|
flex-direction: column;
|
|
19
14
|
overflow: hidden;
|
|
20
15
|
background-color: rgba(var(--ax-sys-color-surface));
|
|
21
|
-
font-size: 0.875rem
|
|
22
|
-
line-height: 1.25rem
|
|
23
|
-
|
|
24
|
-
max-height: 20rem
|
|
16
|
+
font-size: 0.875rem;
|
|
17
|
+
line-height: 1.25rem;
|
|
18
|
+
.ax-md {
|
|
19
|
+
max-height: 20rem;
|
|
25
20
|
}
|
|
26
21
|
ax-header,
|
|
27
22
|
ax-footer {
|
|
@@ -34,13 +29,13 @@
|
|
|
34
29
|
ax-header {
|
|
35
30
|
border-bottom-width: 1px;
|
|
36
31
|
border-color: rgba(var(--ax-sys-color-border-lightest-surface), var(--tw-border-opacity));
|
|
37
|
-
padding: 1rem
|
|
38
|
-
font-size: 1rem
|
|
39
|
-
line-height: 1.5rem
|
|
32
|
+
padding: 1rem;
|
|
33
|
+
font-size: 1rem;
|
|
34
|
+
line-height: 1.5rem;
|
|
40
35
|
font-weight: 500;
|
|
41
|
-
|
|
42
|
-
font-size: 1.125rem
|
|
43
|
-
line-height: 1.75rem
|
|
36
|
+
.ax-md {
|
|
37
|
+
font-size: 1.125rem;
|
|
38
|
+
line-height: 1.75rem;
|
|
44
39
|
}
|
|
45
40
|
ax-prefix,
|
|
46
41
|
ax-suffix {
|
|
@@ -55,53 +50,44 @@
|
|
|
55
50
|
align-items: flex-end;
|
|
56
51
|
}
|
|
57
52
|
}
|
|
58
|
-
|
|
59
53
|
ax-footer {
|
|
60
54
|
border-top-width: 1px;
|
|
61
55
|
}
|
|
62
|
-
|
|
63
56
|
.ax-content {
|
|
64
57
|
flex: 1 1 0%;
|
|
65
58
|
overflow-y: auto;
|
|
66
59
|
overflow-x: hidden;
|
|
67
|
-
|
|
68
60
|
&.ax-list-items-container {
|
|
69
61
|
height: 100%;
|
|
70
62
|
overflow-y: auto;
|
|
71
|
-
padding-top: 0.5rem
|
|
72
|
-
padding-bottom: 0.5rem
|
|
73
|
-
|
|
63
|
+
padding-top: 0.5rem;
|
|
64
|
+
padding-bottom: 0.5rem;
|
|
74
65
|
&.ax-vertical {
|
|
75
66
|
display: grid;
|
|
76
67
|
grid-template-columns: repeat(1, minmax(0, 1fr));
|
|
77
|
-
|
|
78
68
|
&.ax-divide {
|
|
79
69
|
border-top-width: 1px;
|
|
80
70
|
border-bottom-width: 1px;
|
|
81
71
|
}
|
|
82
72
|
}
|
|
83
|
-
|
|
84
73
|
&.ax-default {
|
|
85
74
|
cursor: pointer;
|
|
86
|
-
|
|
87
75
|
.ax-list-item-group {
|
|
88
76
|
& > span {
|
|
89
77
|
display: flex;
|
|
90
78
|
align-items: center;
|
|
91
|
-
padding: 0.75rem
|
|
79
|
+
padding: 0.75rem;
|
|
92
80
|
font-weight: 500;
|
|
93
81
|
}
|
|
94
|
-
|
|
95
82
|
& > ul {
|
|
96
|
-
padding-left: 0.75rem
|
|
97
|
-
padding-right: 0.75rem
|
|
83
|
+
padding-left: 0.75rem;
|
|
84
|
+
padding-right: 0.75rem;
|
|
98
85
|
}
|
|
99
86
|
.ax-list-item {
|
|
100
|
-
margin-bottom: 0.25rem
|
|
87
|
+
margin-bottom: 0.25rem;
|
|
101
88
|
border-radius: var(--ax-sys-border-radius);
|
|
102
89
|
}
|
|
103
90
|
}
|
|
104
|
-
|
|
105
91
|
.ax-list-item {
|
|
106
92
|
position: relative;
|
|
107
93
|
display: flex;
|
|
@@ -109,10 +95,10 @@
|
|
|
109
95
|
user-select: none;
|
|
110
96
|
align-items: center;
|
|
111
97
|
justify-content: space-between;
|
|
112
|
-
padding-inline-end: 1rem
|
|
113
|
-
padding-inline-start: 0.75rem
|
|
114
|
-
font-size: 1rem
|
|
115
|
-
line-height: 1.5rem
|
|
98
|
+
padding-inline-end: 1rem;
|
|
99
|
+
padding-inline-start: 0.75rem;
|
|
100
|
+
font-size: 1rem;
|
|
101
|
+
line-height: 1.5rem;
|
|
116
102
|
&:focus,
|
|
117
103
|
&:focus-visible {
|
|
118
104
|
outline-width: 2px;
|
|
@@ -120,31 +106,17 @@
|
|
|
120
106
|
}
|
|
121
107
|
&.ax-state-checkbox {
|
|
122
108
|
.ax-checkbox-label {
|
|
123
|
-
margin-inline-start: 0.5rem
|
|
109
|
+
margin-inline-start: 0.5rem;
|
|
124
110
|
}
|
|
125
111
|
}
|
|
126
112
|
&.ax-state-selected {
|
|
127
113
|
background-color: rgba(var(--ax-sys-color-primary-500), var(--tw-bg-opacity)) !important;
|
|
128
114
|
color: rgba(var(--ax-sys-color-on-primary), var(--tw-text-opacity)) !important;
|
|
129
|
-
|
|
130
|
-
// .ax-selected-icon {
|
|
131
|
-
//
|
|
132
|
-
// font-size: 1.5rem /* 24px */;
|
|
133
|
-
// line-height: 2rem /* 32px */;
|
|
134
|
-
// color: rgba(var(--ax-sys-color-primary-500));
|
|
135
|
-
// }
|
|
136
115
|
}
|
|
137
|
-
|
|
138
|
-
// &:not(.ax-check-box) {
|
|
139
|
-
// &.ax-state-selected {
|
|
140
|
-
// }
|
|
141
|
-
// }
|
|
142
|
-
|
|
143
116
|
&.ax-state-disabled {
|
|
144
117
|
cursor: not-allowed;
|
|
145
118
|
opacity: 0.5;
|
|
146
119
|
}
|
|
147
|
-
|
|
148
120
|
&:focus-visible,
|
|
149
121
|
&:hover {
|
|
150
122
|
background-color: rgba(var(--ax-sys-color-surface));
|
|
@@ -154,18 +126,15 @@
|
|
|
154
126
|
}
|
|
155
127
|
}
|
|
156
128
|
}
|
|
157
|
-
|
|
158
129
|
.ax-list-loading-container {
|
|
159
130
|
display: flex;
|
|
160
131
|
justify-content: center;
|
|
161
|
-
padding: 0.5rem
|
|
132
|
+
padding: 0.5rem;
|
|
162
133
|
}
|
|
163
134
|
}
|
|
164
135
|
}
|
|
165
|
-
|
|
166
136
|
.ax-search-box-container {
|
|
167
|
-
padding: 0.5rem
|
|
168
|
-
|
|
137
|
+
padding: 0.5rem;
|
|
169
138
|
&.ax-state-hidden {
|
|
170
139
|
display: none;
|
|
171
140
|
}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
.ax-radio {
|
|
2
|
+
margin: 0px;
|
|
3
|
+
height: 1rem;
|
|
4
|
+
min-height: 1rem;
|
|
5
|
+
min-width: 1rem;
|
|
6
|
+
width: 1rem;
|
|
7
|
+
cursor: pointer;
|
|
8
|
+
appearance: none;
|
|
9
|
+
border-radius: 9999px;
|
|
10
|
+
border-width: 1px;
|
|
11
|
+
border-color: rgba(var(--ax-sys-color-border-surface));
|
|
12
|
+
background-color: rgba(var(--ax-sys-color-input-surface));
|
|
13
|
+
vertical-align: middle;
|
|
14
|
+
outline: 2px solid transparent;
|
|
15
|
+
outline-offset: 2px;
|
|
16
|
+
&:checked {
|
|
17
|
+
border-color: rgba(var(--ax-sys-color-primary-500)) !important;
|
|
18
|
+
background-color: rgba(var(--ax-sys-color-primary-500)) !important;
|
|
19
|
+
background-size: contain;
|
|
20
|
+
background-repeat: no-repeat;
|
|
21
|
+
}
|
|
22
|
+
&:checked {
|
|
23
|
+
background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
|
|
24
|
+
}
|
|
25
|
+
&:focus-visible,
|
|
26
|
+
&:focus {
|
|
27
|
+
box-shadow: 0px 0px 0px 2px rgba(var(--ax-sys-color-surface)), 0px 0px 0px 4px rgba(var(--ax-sys-color-primary-500));
|
|
28
|
+
}
|
|
29
|
+
&:disabled {
|
|
30
|
+
cursor: not-allowed;
|
|
31
|
+
opacity: 0.5;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
+
@keyframes ripple {
|
|
2
|
+
to {
|
|
3
|
+
transform: scale(4);
|
|
4
|
+
opacity: 0;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
|
|
1
8
|
.ax-ripple {
|
|
9
|
+
position: absolute;
|
|
2
10
|
transform: scale(0);
|
|
3
11
|
animation: ripple 500ms linear;
|
|
4
|
-
position: absolute;
|
|
5
12
|
border-radius: 9999rem !important;
|
|
6
|
-
|
|
7
|
-
@keyframes ripple {
|
|
8
|
-
to {
|
|
9
|
-
transform: scale(4);
|
|
10
|
-
opacity: 0;
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
13
|
}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
@include mixins.darkMode() {
|
|
1
|
+
.dark {
|
|
3
2
|
.ax-table {
|
|
4
3
|
thead {
|
|
5
4
|
background-color: rgba(var(--ax-sys-color-surface));
|
|
6
5
|
}
|
|
7
6
|
}
|
|
8
7
|
}
|
|
8
|
+
|
|
9
9
|
.ax-table {
|
|
10
10
|
width: 100%;
|
|
11
11
|
border-collapse: collapse;
|
|
@@ -14,26 +14,25 @@
|
|
|
14
14
|
border-radius: var(--ax-sys-border-radius);
|
|
15
15
|
border-width: 1px;
|
|
16
16
|
border-color: rgba(var(--ax-sys-color-border-lightest-surface));
|
|
17
|
-
font-size: 0.875rem
|
|
18
|
-
line-height: 1.25rem
|
|
17
|
+
font-size: 0.875rem;
|
|
18
|
+
line-height: 1.25rem;
|
|
19
19
|
td {
|
|
20
20
|
border-bottom-width: 1px;
|
|
21
21
|
border-color: rgba(var(--ax-sys-color-border-lightest-surface));
|
|
22
|
-
padding-left: 1rem
|
|
23
|
-
padding-right: 1rem
|
|
24
|
-
padding-top: 0.75rem
|
|
25
|
-
padding-bottom: 0.75rem
|
|
22
|
+
padding-left: 1rem;
|
|
23
|
+
padding-right: 1rem;
|
|
24
|
+
padding-top: 0.75rem;
|
|
25
|
+
padding-bottom: 0.75rem;
|
|
26
26
|
}
|
|
27
27
|
thead {
|
|
28
28
|
border-bottom-width: 1px;
|
|
29
29
|
border-color: rgba(var(--ax-sys-color-border-lightest-surface));
|
|
30
30
|
background-color: rgba(var(--ax-sys-color-surface));
|
|
31
|
-
|
|
32
31
|
th {
|
|
33
|
-
padding-left: 1rem
|
|
34
|
-
padding-right: 1rem
|
|
35
|
-
padding-top: 0.875rem
|
|
36
|
-
padding-bottom: 0.875rem
|
|
32
|
+
padding-left: 1rem;
|
|
33
|
+
padding-right: 1rem;
|
|
34
|
+
padding-top: 0.875rem;
|
|
35
|
+
padding-bottom: 0.875rem;
|
|
37
36
|
text-align: start;
|
|
38
37
|
font-weight: 500;
|
|
39
38
|
text-transform: uppercase;
|
|
@@ -68,12 +67,10 @@
|
|
|
68
67
|
}
|
|
69
68
|
}
|
|
70
69
|
}
|
|
71
|
-
|
|
72
70
|
td,
|
|
73
71
|
th {
|
|
74
72
|
border-width: 1px;
|
|
75
73
|
border-color: rgba(var(--ax-sys-color-border-lightest-surface));
|
|
76
|
-
|
|
77
74
|
&:first-child {
|
|
78
75
|
border-inline-start-width: 0px;
|
|
79
76
|
}
|
|
@@ -82,28 +79,28 @@
|
|
|
82
79
|
}
|
|
83
80
|
}
|
|
84
81
|
}
|
|
85
|
-
|
|
82
|
+
}
|
|
83
|
+
@media screen and (max-width: 640px) {
|
|
84
|
+
.ax-table {
|
|
86
85
|
&.ax-table-responsive {
|
|
87
86
|
display: block;
|
|
88
87
|
overflow-wrap: break-word;
|
|
89
88
|
border-width: 0px;
|
|
90
|
-
|
|
91
89
|
thead {
|
|
92
90
|
position: absolute;
|
|
93
91
|
inset-inline-start: -100%;
|
|
94
92
|
top: -100%;
|
|
95
93
|
}
|
|
96
|
-
|
|
97
94
|
td {
|
|
98
95
|
float: inline-start;
|
|
99
96
|
clear: both;
|
|
100
97
|
box-sizing: border-box;
|
|
101
98
|
display: block;
|
|
102
99
|
width: 100%;
|
|
103
|
-
padding-left: 0.625rem
|
|
104
|
-
padding-right: 0.625rem
|
|
105
|
-
padding-top: 0.375rem
|
|
106
|
-
padding-bottom: 0.375rem
|
|
100
|
+
padding-left: 0.625rem;
|
|
101
|
+
padding-right: 0.625rem;
|
|
102
|
+
padding-top: 0.375rem;
|
|
103
|
+
padding-bottom: 0.375rem;
|
|
107
104
|
&:last-child {
|
|
108
105
|
border-width: 0px;
|
|
109
106
|
}
|
|
@@ -120,7 +117,7 @@
|
|
|
120
117
|
tr,
|
|
121
118
|
tbody {
|
|
122
119
|
float: inline-start;
|
|
123
|
-
margin-bottom: 0.625rem
|
|
120
|
+
margin-bottom: 0.625rem;
|
|
124
121
|
width: 100%;
|
|
125
122
|
}
|
|
126
123
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use
|
|
1
|
+
@use "../mixins/index.scss" as mixin;
|
|
2
2
|
.ax-uploader-overlay-state {
|
|
3
3
|
border-radius: inherit;
|
|
4
4
|
pointer-events: none;
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
flex-direction: column;
|
|
14
14
|
align-items: center;
|
|
15
15
|
justify-content: center;
|
|
16
|
-
gap: 0.5rem
|
|
16
|
+
gap: 0.5rem;
|
|
17
17
|
background-color: rgba(var(--ax-sys-color-primary-200), 0.75);
|
|
18
|
-
font-size: 0.875rem
|
|
19
|
-
line-height: 1.25rem
|
|
18
|
+
font-size: 0.875rem;
|
|
19
|
+
line-height: 1.25rem;
|
|
20
20
|
color: rgba(var(--ax-sys-color-on-primary-tint));
|
|
21
21
|
outline-style: dashed;
|
|
22
22
|
outline-offset: -4px;
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
}
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
.dark {
|
|
39
39
|
.ax-uploader-overlay-state {
|
|
40
40
|
background-color: rgba(var(--ax-sys-color-primary-800), 0.75);
|
|
41
41
|
color: rgba(var(--ax-sys-color-on-primary));
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
@import './_action-item.css';
|
|
2
|
+
@import './_actionsheet.css';
|
|
3
|
+
@import './_check-box.css';
|
|
4
|
+
@import './_drop-down.css';
|
|
5
|
+
@import './_editor-container.css';
|
|
6
|
+
@import './_general-button.css';
|
|
7
|
+
@import './_list.css';
|
|
8
|
+
@import './_radio.css';
|
|
9
|
+
@import './_ripple.css';
|
|
10
|
+
@import './_table.css';
|
|
11
|
+
@import './_uploader.css';
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--ax-icon-more-horizontal: '\f141';
|
|
3
|
+
--ax-icon-more-horizontal-after: '';
|
|
4
|
+
|
|
5
|
+
--ax-icon-more-vertical: '\f142';
|
|
6
|
+
--ax-icon-more-vertical-after: '';
|
|
7
|
+
|
|
8
|
+
--ax-icon-arrow-long-up: '\f176';
|
|
9
|
+
--ax-icon-arrow-long-up-after: '';
|
|
10
|
+
|
|
11
|
+
--ax-icon-arrow-long-down: '\f175';
|
|
12
|
+
--ax-icon-arrow-long-down-after: '';
|
|
13
|
+
|
|
14
|
+
--ax-icon-color-palette: '\f53f';
|
|
15
|
+
--ax-icon-color-palette-after: '';
|
|
16
|
+
|
|
17
|
+
--ax-icon-arrow-left: '\f0d9';
|
|
18
|
+
--ax-icon-arrow-left-after: '';
|
|
19
|
+
|
|
20
|
+
--ax-icon-arrow-down: '\f0d7';
|
|
21
|
+
--ax-icon-arrow-down-after: '';
|
|
22
|
+
|
|
23
|
+
--ax-icon-arrow-up: '\f0d8';
|
|
24
|
+
--ax-icon-arrow-up-after: '';
|
|
25
|
+
|
|
26
|
+
--ax-icon-arrow-right: '\f0da';
|
|
27
|
+
--ax-icon-arrow-right-after: '';
|
|
28
|
+
|
|
29
|
+
--ax-icon-chevron-left: '\f053';
|
|
30
|
+
--ax-icon-chevron-left-after: '';
|
|
31
|
+
|
|
32
|
+
--ax-icon-chevron-down: '\f078';
|
|
33
|
+
--ax-icon-chevron-down-after: '';
|
|
34
|
+
|
|
35
|
+
--ax-icon-chevron-up: '\f077';
|
|
36
|
+
--ax-icon-chevron-up-after: '';
|
|
37
|
+
|
|
38
|
+
--ax-icon-chevron-right: '\f054';
|
|
39
|
+
--ax-icon-chevron-right-after: '';
|
|
40
|
+
|
|
41
|
+
--ax-icon-chevron-double-right: '\f324';
|
|
42
|
+
--ax-icon-chevron-double-right-after: '';
|
|
43
|
+
|
|
44
|
+
--ax-icon-chevron-double-left: '\f323';
|
|
45
|
+
--ax-icon-chevron-double-left-after: '';
|
|
46
|
+
|
|
47
|
+
--ax-icon-first-page: '\f33e';
|
|
48
|
+
--ax-icon-first-page-after: '';
|
|
49
|
+
|
|
50
|
+
--ax-icon-last-page: '\f340';
|
|
51
|
+
--ax-icon-last-page-after: '';
|
|
52
|
+
|
|
53
|
+
--ax-icon-calendar: '\f133';
|
|
54
|
+
--ax-icon-calendar-after: '';
|
|
55
|
+
|
|
56
|
+
--ax-icon-info: '\f05a';
|
|
57
|
+
--ax-icon-info-after: '';
|
|
58
|
+
|
|
59
|
+
--ax-icon-error: '\f06a';
|
|
60
|
+
--ax-icon-error-after: '';
|
|
61
|
+
|
|
62
|
+
--ax-icon-warning: '\f071';
|
|
63
|
+
--ax-icon-warning-after: '';
|
|
64
|
+
|
|
65
|
+
--ax-icon-check: '\f00c';
|
|
66
|
+
--ax-icon-check-after: '';
|
|
67
|
+
|
|
68
|
+
--ax-icon-check-circle: '\f058';
|
|
69
|
+
--ax-icon-check-circle-after: '';
|
|
70
|
+
|
|
71
|
+
--ax-icon-dobble-check: '\f560';
|
|
72
|
+
--ax-icon-dobble-check-after: '';
|
|
73
|
+
|
|
74
|
+
--ax-icon-close: '\f00d';
|
|
75
|
+
--ax-icon-close-after: '';
|
|
76
|
+
|
|
77
|
+
--ax-icon-clear: '\f057';
|
|
78
|
+
--ax-icon-clear-after: '';
|
|
79
|
+
|
|
80
|
+
--ax-icon-visibility-off: '\f070';
|
|
81
|
+
--ax-icon-visibility-off-after: '';
|
|
82
|
+
|
|
83
|
+
--ax-icon-visibility: '\f06e';
|
|
84
|
+
--ax-icon-visibility-after: '';
|
|
85
|
+
|
|
86
|
+
--ax-icon-unfold-more: '\f0dc';
|
|
87
|
+
--ax-icon-unfold-more-after: '';
|
|
88
|
+
|
|
89
|
+
--ax-icon-download: '\f019';
|
|
90
|
+
--ax-icon-download-after: '';
|
|
91
|
+
|
|
92
|
+
--ax-icon-upload: '\e09a';
|
|
93
|
+
--ax-icon-upload-after: '';
|
|
94
|
+
|
|
95
|
+
--ax-icon-search: '\f002';
|
|
96
|
+
--ax-icon-search-after: '';
|
|
97
|
+
|
|
98
|
+
--ax-icon-copy: '\f0c5';
|
|
99
|
+
--ax-icon-copy-after: '';
|
|
100
|
+
|
|
101
|
+
--ax-icon-refresh: '\f021';
|
|
102
|
+
--ax-icon-refresh-after: '';
|
|
103
|
+
|
|
104
|
+
--ax-icon-inbox: '\f01c';
|
|
105
|
+
--ax-icon-inbox-after: '';
|
|
106
|
+
|
|
107
|
+
--ax-icon-emoji: '\f118';
|
|
108
|
+
--ax-icon-emoji-after: '';
|
|
109
|
+
|
|
110
|
+
--ax-icon-attach: '\f0c6';
|
|
111
|
+
--ax-icon-attach-after: '';
|
|
112
|
+
|
|
113
|
+
--ax-icon-mic: '\f130';
|
|
114
|
+
--ax-icon-mic-after: '';
|
|
115
|
+
|
|
116
|
+
--ax-icon-send: '\f1d8';
|
|
117
|
+
--ax-icon-send-after: '';
|
|
118
|
+
|
|
119
|
+
--ax-icon-play: '\f04b';
|
|
120
|
+
--ax-icon-play-after: '';
|
|
121
|
+
|
|
122
|
+
--ax-icon-pause: '\f04c';
|
|
123
|
+
--ax-icon-pause-after: '';
|
|
124
|
+
|
|
125
|
+
--ax-icon-reload: '\f2f9';
|
|
126
|
+
--ax-icon-reload-after: '';
|
|
127
|
+
|
|
128
|
+
--ax-icon-heart: '\f004';
|
|
129
|
+
--ax-icon-heart-after: '';
|
|
130
|
+
|
|
131
|
+
--ax-icon-comment: '\f075';
|
|
132
|
+
--ax-icon-comment-after: '';
|
|
133
|
+
|
|
134
|
+
--ax-icon-bold: '\f032';
|
|
135
|
+
--ax-icon-bold-after: '';
|
|
136
|
+
|
|
137
|
+
--ax-icon-italic: '\f033';
|
|
138
|
+
--ax-icon-italic-after: '';
|
|
139
|
+
|
|
140
|
+
--ax-icon-strike: '\f0cc';
|
|
141
|
+
--ax-icon-strike-after: '';
|
|
142
|
+
|
|
143
|
+
--ax-icon-under-line: '\f0cd';
|
|
144
|
+
--ax-icon-under-line-after: '';
|
|
145
|
+
|
|
146
|
+
--ax-icon-order-list: '\f0cb';
|
|
147
|
+
--ax-icon-order-list-after: '';
|
|
148
|
+
|
|
149
|
+
--ax-icon-un-order-list: '\f0ca';
|
|
150
|
+
--ax-icon-un-order-list-after: '';
|
|
151
|
+
|
|
152
|
+
--ax-icon-align-left: '\f036';
|
|
153
|
+
--ax-icon-align-left-after: '';
|
|
154
|
+
|
|
155
|
+
--ax-icon-align-right: '\f038';
|
|
156
|
+
--ax-icon-align-right-after: '';
|
|
157
|
+
|
|
158
|
+
--ax-icon-align-center: '\f037';
|
|
159
|
+
--ax-icon-align-center-after: '';
|
|
160
|
+
|
|
161
|
+
--ax-icon-align-justify: '\f039';
|
|
162
|
+
--ax-icon-align-justify-after: '';
|
|
163
|
+
|
|
164
|
+
--ax-icon-undo: '\f0e2';
|
|
165
|
+
--ax-icon-undo-after: '';
|
|
166
|
+
|
|
167
|
+
--ax-icon-redo: '\f01e';
|
|
168
|
+
--ax-icon-redo-after: '';
|
|
169
|
+
|
|
170
|
+
--ax-icon-highlight: '\f591';
|
|
171
|
+
--ax-icon-highlight-after: '';
|
|
172
|
+
|
|
173
|
+
--ax-icon-link: '\f0c1';
|
|
174
|
+
--ax-icon-link-after: '';
|
|
175
|
+
|
|
176
|
+
--ax-icon-image: '\f03e';
|
|
177
|
+
--ax-icon-image-after: '';
|
|
178
|
+
|
|
179
|
+
--ax-icon-pen: '\f304';
|
|
180
|
+
--ax-icon-pen-after: '';
|
|
181
|
+
|
|
182
|
+
--ax-icon-eraser: '\f12d';
|
|
183
|
+
--ax-icon-eraser-after: '';
|
|
184
|
+
|
|
185
|
+
--ax-icon-pen-ruler: '\f5ae';
|
|
186
|
+
--ax-icon-pen-ruler-after: '';
|
|
187
|
+
|
|
188
|
+
--ax-icon-crop: '\f125';
|
|
189
|
+
--ax-icon-crop-after: '';
|
|
190
|
+
|
|
191
|
+
--ax-icon-full-screen: '\f065';
|
|
192
|
+
--ax-icon-full-screen-after: '';
|
|
193
|
+
|
|
194
|
+
--ax-icon-up-folder: '\e632';
|
|
195
|
+
--ax-icon-up-folder-after: '';
|
|
196
|
+
|
|
197
|
+
--ax-icon-sort: '\e0ae';
|
|
198
|
+
--ax-icon-sort-after: '';
|
|
199
|
+
|
|
200
|
+
--ax-icon-menu: '\f0c9';
|
|
201
|
+
--ax-icon-menu-after: '';
|
|
202
|
+
|
|
203
|
+
--ax-icon-plus: '\2b';
|
|
204
|
+
--ax-icon-plus-after: '';
|
|
205
|
+
|
|
206
|
+
--ax-icon-trash: '\f1f8';
|
|
207
|
+
--ax-icon-trash-after: '';
|
|
208
|
+
|
|
209
|
+
--ax-icon-arrow-turn-right: '\e635';
|
|
210
|
+
--ax-icon-arrow-turn-right-after: '';
|
|
211
|
+
|
|
212
|
+
--ax-icon-arrow-turn-left: '\e632';
|
|
213
|
+
--ax-icon-arrow-turn-left-after: '';
|
|
214
|
+
|
|
215
|
+
--ax-icon-save: '\f0c7';
|
|
216
|
+
--ax-icon-save-after: '';
|
|
217
|
+
|
|
218
|
+
--ax-icon-minimize: '\f068';
|
|
219
|
+
--ax-icon-minimize-after: '';
|
|
220
|
+
|
|
221
|
+
--ax-icon-maximize: '\f31d';
|
|
222
|
+
--ax-icon-maximize-after: '';
|
|
223
|
+
|
|
224
|
+
--ax-icon-code: '\f121';
|
|
225
|
+
--ax-icon-code-after: '';
|
|
226
|
+
|
|
227
|
+
--ax-icon-paragraph: '\f1dd';
|
|
228
|
+
--ax-icon-paragraph-after: '';
|
|
229
|
+
}
|