@acorex/styles 7.24.5 → 16.0.0

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.
Files changed (81) hide show
  1. package/fonts/font-awesome/fa-brands-400.eot +0 -0
  2. package/fonts/font-awesome/fa-brands-400.svg +3570 -0
  3. package/fonts/font-awesome/fa-brands-400.ttf +0 -0
  4. package/fonts/font-awesome/fa-brands-400.woff +0 -0
  5. package/fonts/font-awesome/fa-brands-400.woff2 +0 -0
  6. package/fonts/font-awesome/fa-duotone-900.eot +0 -0
  7. package/fonts/font-awesome/fa-duotone-900.svg +15055 -0
  8. package/fonts/font-awesome/fa-duotone-900.ttf +0 -0
  9. package/fonts/font-awesome/fa-duotone-900.woff +0 -0
  10. package/fonts/font-awesome/fa-duotone-900.woff2 +0 -0
  11. package/fonts/font-awesome/fa-light-300.eot +0 -0
  12. package/fonts/font-awesome/fa-light-300.svg +12330 -0
  13. package/fonts/font-awesome/fa-light-300.ttf +0 -0
  14. package/fonts/font-awesome/fa-light-300.woff +0 -0
  15. package/fonts/font-awesome/fa-light-300.woff2 +0 -0
  16. package/fonts/font-awesome/fa-regular-400.eot +0 -0
  17. package/fonts/font-awesome/fa-regular-400.svg +11256 -0
  18. package/fonts/font-awesome/fa-regular-400.ttf +0 -0
  19. package/fonts/font-awesome/fa-regular-400.woff +0 -0
  20. package/fonts/font-awesome/fa-regular-400.woff2 +0 -0
  21. package/fonts/font-awesome/fa-solid-900.eot +0 -0
  22. package/fonts/font-awesome/fa-solid-900.svg +9588 -0
  23. package/fonts/font-awesome/fa-solid-900.ttf +0 -0
  24. package/fonts/font-awesome/fa-solid-900.woff +0 -0
  25. package/fonts/font-awesome/fa-solid-900.woff2 +0 -0
  26. package/fonts/font-awesome/font-awesome.css +16960 -0
  27. package/package.json +11 -11
  28. package/scss/buttons.scss +69 -0
  29. package/scss/calendar.scss +144 -0
  30. package/scss/checkbox.scss +46 -0
  31. package/scss/context-menu.scss +75 -0
  32. package/scss/data-grid.scss +117 -0
  33. package/scss/drawer.scss +138 -0
  34. package/scss/fieldset.scss +23 -0
  35. package/scss/forms.scss +523 -0
  36. package/scss/list.scss +47 -0
  37. package/scss/master.scss +330 -0
  38. package/scss/menu.scss +130 -0
  39. package/scss/mixin.scss +12 -0
  40. package/scss/page.scss +54 -0
  41. package/scss/progress.scss +11 -0
  42. package/scss/selection-list.scss +104 -0
  43. package/scss/style.scss +47 -0
  44. package/scss/tab-strip.scss +31 -0
  45. package/scss/tab.scss +36 -0
  46. package/scss/toast.scss +46 -0
  47. package/scss/tooltip.scss +55 -0
  48. package/scss/treeview.scss +152 -0
  49. package/scss/upload.scss +170 -0
  50. package/scss/variables.scss +139 -0
  51. package/icons/fontawesome/fontawesome.scss +0 -68
  52. package/icons/index.scss +0 -207
  53. package/icons/material/material.scss +0 -73
  54. package/index.css +0 -2623
  55. package/index.min.css +0 -1
  56. package/index.scss +0 -9
  57. package/src/base/_preflight.scss +0 -417
  58. package/src/base/index.scss +0 -13
  59. package/src/mixins/_look.scss +0 -84
  60. package/src/mixins/_media.scss +0 -27
  61. package/src/mixins/_util.scss +0 -19
  62. package/src/mixins/index.scss +0 -3
  63. package/src/shared/_actionsheet.scss +0 -23
  64. package/src/shared/_check-box.scss +0 -59
  65. package/src/shared/_color-look.scss +0 -689
  66. package/src/shared/_drop-down.scss +0 -76
  67. package/src/shared/_editor-container.scss +0 -257
  68. package/src/shared/_general-button.scss +0 -87
  69. package/src/shared/_inputs.scss +0 -16
  70. package/src/shared/_list.scss +0 -211
  71. package/src/shared/_radio.scss +0 -56
  72. package/src/shared/_table.scss +0 -149
  73. package/src/shared/_utils.scss +0 -75
  74. package/src/shared/index.scss +0 -11
  75. package/src/utility/index.scss +0 -24
  76. package/src/variables/_colors.scss +0 -2
  77. package/src/variables/_degrees.scss +0 -1
  78. package/src/variables/index.scss +0 -2
  79. package/tailwind-base.js +0 -235
  80. package/themes/default.css +0 -1
  81. package/themes/default.scss +0 -141
@@ -0,0 +1,330 @@
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
+ }
package/scss/menu.scss ADDED
@@ -0,0 +1,130 @@
1
+ .ax {
2
+ &.nav-menu {
3
+ list-style: none;
4
+ margin: 0;
5
+ padding: 0;
6
+ display: flex;
7
+ &.nav-vertical {
8
+ background-color: var(--ax-white-color);
9
+ flex-direction: column;
10
+ ul {
11
+ top: 0;
12
+ inset-inline-start: -9999px;
13
+ }
14
+
15
+ li {
16
+ width: 100%;
17
+ float: none;
18
+ text-align: right;
19
+ }
20
+ }
21
+ > li {
22
+ text-align: center;
23
+ padding: 0.5rem;
24
+ min-width: 2.375rem;
25
+ margin-inline-end: 0.5rem;
26
+ border-radius: var(--ax-size-border-radius);
27
+ .ax-menu-item,
28
+ .menu-item-start-side,
29
+ .menu-item-end-side {
30
+ display: flex;
31
+ align-items: center;
32
+ justify-content: space-between;
33
+ }
34
+ ul {
35
+ opacity: 0;
36
+ position: absolute;
37
+ top: 100%;
38
+ inset-inline-start: -9999px;
39
+ z-index: 50000;
40
+ -webkit-transition: opacity 0.3s;
41
+ transition: opacity 0.3s;
42
+ min-width: 12em;
43
+ li {
44
+ float: none;
45
+
46
+ &:hover {
47
+ > ul {
48
+ top: 0;
49
+ inset-inline-start: 100%;
50
+ }
51
+ }
52
+ }
53
+ }
54
+ :hover {
55
+ > ul {
56
+ inset-inline-start: 100%;
57
+ }
58
+ }
59
+ }
60
+ li {
61
+ cursor: pointer;
62
+ position: relative;
63
+
64
+ .ax-menu-item {
65
+ height: 100%;
66
+ display: inline-flex;
67
+ align-items: center;
68
+ justify-content: center;
69
+ .menu-item-start-side {
70
+ }
71
+ .ax-menu-item-text {
72
+ margin: 0 0.5rem;
73
+ white-space: nowrap;
74
+ }
75
+
76
+ .menu-item-end-side {
77
+ }
78
+ }
79
+
80
+ ul {
81
+ list-style: none;
82
+ margin: 0;
83
+ padding: 0;
84
+ background: #fff;
85
+ border: 1px solid var(--ax-border-color);
86
+ border-radius: var(--ax-size-border-radius);
87
+ }
88
+ &:hover {
89
+ > ul {
90
+ inset-inline-start: 0;
91
+ opacity: 1;
92
+ z-index: 1000;
93
+ }
94
+ }
95
+ &.tooltip {
96
+ position: relative;
97
+ &:hover {
98
+ &::before {
99
+ display: block;
100
+ }
101
+ }
102
+ &::before {
103
+ content: attr(data-text);
104
+ font-size: 0.875rem;
105
+ position: absolute;
106
+ bottom: -85%;
107
+ inset-inline-start: 0;
108
+ padding: 0.5rem 1rem;
109
+ border-radius: var(--ax-size-border-radius);
110
+ background: var(--ax-dark-color);
111
+ color: var(--ax-dark-fore-color);
112
+ text-align: center;
113
+ display: none;
114
+ z-index: 1;
115
+ }
116
+ }
117
+ }
118
+ .ax-sub-menu {
119
+ display: flex;
120
+ flex-direction: column;
121
+ li {
122
+ padding: 0.5rem;
123
+ .ax-menu-item {
124
+ display: flex;
125
+ justify-content: space-between;
126
+ }
127
+ }
128
+ }
129
+ }
130
+ }
@@ -0,0 +1,12 @@
1
+ @mixin ax-border-radius($size) {
2
+ border-radius: $size;
3
+ -moz-border-radius: $size;
4
+ -webkit-border-radius: $size;
5
+ -o-border-radius: $size;
6
+ }
7
+ @mixin ax-transition-all {
8
+ transition: all 0.3s;
9
+ -moz-transition: all 0.3s;
10
+ -webkit-transition: all 0.3s;
11
+ -o-transition: all 0.3s;
12
+ }
package/scss/page.scss ADDED
@@ -0,0 +1,54 @@
1
+ .ax-page-toolbar {
2
+ position: sticky;
3
+ top: 0;
4
+ z-index: 1600;
5
+ background: white;
6
+ }
7
+
8
+ .page-content-wrap {
9
+ height: 100%;
10
+
11
+ .inner-content {
12
+ height: 100%;
13
+ max-height: 90vh;
14
+ }
15
+ }
16
+
17
+ .ax-overlay-wrapper {
18
+ z-index: 1701;
19
+ position: fixed;
20
+ left: 0px;
21
+ top: 0px;
22
+ transform: translate(0px, 0px);
23
+ width: 100%;
24
+ height: 100%;
25
+ }
26
+
27
+ .ax-overlay-modal {
28
+ width: 100%;
29
+ height: 100%;
30
+ }
31
+
32
+ .ax-loading-host {
33
+ display: block;
34
+ position: relative;
35
+ height: 100%;
36
+ }
37
+
38
+ .ax-loading-overlay {
39
+ position: absolute !important;
40
+ background: rgba(255, 255, 255, 0.5);
41
+ display: flex;
42
+ justify-content: center;
43
+ align-content: center;
44
+ align-items: center;
45
+
46
+ }
47
+
48
+ .ax-tab-page-host {
49
+ height: 100%;
50
+ display: block;
51
+ position: relative;
52
+ overflow-y: auto;
53
+ width: 100%;
54
+ }
@@ -0,0 +1,11 @@
1
+ .ax{
2
+ &.progress {
3
+ background: var(--ax-light-light-color);
4
+ margin: 0.2em 0;
5
+ .progress-bar {
6
+ background: var(--ax-primary-color);
7
+ color: var(--ax-primary-fore-color);
8
+ padding: 0.2em 0;
9
+ }
10
+ }
11
+ }
@@ -0,0 +1,104 @@
1
+ .ax {
2
+ &.selection-list {
3
+ display: flex;
4
+
5
+ &.vertical {
6
+ flex-direction: column;
7
+ margin-block-end: 1rem;
8
+
9
+ label {
10
+ margin-block-end: 1rem;
11
+ }
12
+ }
13
+
14
+ &.horizontal {
15
+ flex-direction: row;
16
+ margin-block-end: 1rem;
17
+
18
+ label {
19
+ margin-inline-end: 1rem;
20
+ }
21
+ }
22
+ }
23
+ }
24
+ .ax {
25
+ &.radio {
26
+ display: block;
27
+ position: relative;
28
+ padding-inline-start: 2em;
29
+ line-height: 1.5em;
30
+ cursor: pointer;
31
+ font-size: inherit;
32
+ -webkit-user-select: none;
33
+ -moz-user-select: none;
34
+ -ms-user-select: none;
35
+ user-select: none;
36
+ &.readonly,
37
+ &.disabled {
38
+ opacity: 0.7;
39
+ }
40
+ &.disabled {
41
+ cursor: not-allowed;
42
+ }
43
+
44
+ }
45
+
46
+ /* Hide the browser's default radio */
47
+ &.radio input {
48
+ position: absolute;
49
+ opacity: 0;
50
+ cursor: pointer;
51
+ height: 0;
52
+ width: 0;
53
+ }
54
+
55
+ /* Create a custom radio */
56
+ &.radio .checkmark {
57
+ position: absolute;
58
+ top: 0;
59
+ inset-inline-start: 0;
60
+ height: 1.5em;
61
+ width: 1.5em;
62
+ background-color: var(--ax-white-color);
63
+ border-style: solid;
64
+ border-width: 1px;
65
+ border-color: var(--ax-border-color);
66
+ -webkit-border-radius: 50%;
67
+ -moz-border-radius: 50%;
68
+ border-radius: 50%;
69
+ }
70
+
71
+ /* On mouse-over, add a grey background color */
72
+ &.radio:hover input ~ .checkmark {
73
+ border-color: var(--ax-border-dark-color);
74
+ }
75
+
76
+ /* When the radio is checked, add a blue background */
77
+ &.radio input:checked ~ .checkmark {
78
+ background-color: var(--ax-white-color);
79
+ border-color: var(--ax-primary-color);
80
+ }
81
+
82
+ /* Create the checkmark/indicator (hidden when not checked) */
83
+ &.radio .checkmark:after {
84
+ content: "";
85
+ position: absolute;
86
+ display: none;
87
+ border-radius: 50%;
88
+ }
89
+
90
+ /* Show the checkmark when checked */
91
+ &.radio input:checked ~ .checkmark:after {
92
+ display: block;
93
+ }
94
+
95
+ /* Style the checkmark/indicator */
96
+ &.radio .checkmark:after {
97
+ left: 31.5%;
98
+ top: 33.3%;
99
+ width: 0.5em;
100
+ height: 0.5em;
101
+ background-color: var(--ax-primary-color);
102
+ border-radius: 50%;
103
+ }
104
+ }
@@ -0,0 +1,47 @@
1
+ @import "./buttons.scss";
2
+ @import "./calendar.scss";
3
+ @import "./checkbox.scss";
4
+ @import "./context-menu.scss";
5
+ @import "./drawer.scss";
6
+ @import "./data-grid.scss";
7
+ @import "./fieldset.scss";
8
+ @import "./list.scss";
9
+ @import "./menu.scss";
10
+ @import "./progress.scss";
11
+ @import "./selection-list.scss";
12
+ @import "./forms.scss";
13
+ @import "./tooltip.scss";
14
+ @import "./tab.scss";
15
+ @import "./tab-strip.scss";
16
+ @import "./toast.scss";
17
+ @import "./treeview.scss";
18
+ @import "./upload.scss";
19
+ @import "./master.scss";
20
+ @import "./page.scss";
21
+ @import "~animate.css/animate.min.css";
22
+ * {
23
+ box-sizing: border-box;
24
+ outline-color: transparent;
25
+ &:focus {
26
+ outline: none;
27
+ }
28
+ }
29
+
30
+ html,
31
+ body {
32
+ -webkit-overflow-scrolling: touch;
33
+ scroll-behavior: smooth;
34
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
35
+ font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
36
+ }
37
+
38
+ .rtl {
39
+ direction: rtl;
40
+ text-align: right;
41
+ }
42
+
43
+ .ltr {
44
+ direction: ltr;
45
+ text-align: left;
46
+ }
47
+