@acorex/styles 19.10.0-next.1 → 19.10.0-next.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.
- package/base/index.scss +15 -0
- package/{src/shared → components}/_action-item.scss +3 -3
- package/{src/shared → components}/_actionsheet.scss +7 -6
- package/{src/shared → components}/_check-box.scss +8 -14
- package/{src/shared → components}/_drop-down.scss +15 -17
- package/components/_editor-container.scss +260 -0
- package/{src/shared → components}/_general-button.scss +11 -12
- package/{src/shared → components}/_list.scss +15 -41
- package/{src/shared → components}/_radio.scss +8 -14
- package/components/_ripple.scss +13 -0
- package/{src/shared → components}/_table.scss +9 -30
- package/components/_uploader.scss +44 -0
- package/{src/shared → components}/index.scss +2 -3
- package/icons/fontawesome/index.scss +10 -11
- package/icons/huge/huge-bulk/index.scss +4 -4
- package/icons/huge/huge-duotone/index.scss +4 -4
- package/icons/huge/huge-solid-sharp/index.scss +4 -4
- package/icons/huge/huge-solid-standard/index.scss +4 -4
- package/icons/huge/huge-stroke-rounded/index.scss +4 -4
- package/icons/huge/huge-stroke-sharp/index.scss +4 -4
- package/icons/huge/huge-stroke-standard/index.scss +4 -4
- package/icons/huge/huge-twotone/index.scss +4 -4
- package/icons/material/index.scss +4 -5
- package/index.scss +5 -7
- package/mixins/_editor-looks.scss +23 -0
- package/mixins/_scroll-bar.scss +23 -0
- package/mixins/index.scss +4 -0
- package/package.json +1 -1
- package/tailwind-base.js +231 -158
- package/themes/default.scss +37 -141
- package/utils/_theme-generator.scss +230 -0
- package/utils/_utils.scss +276 -0
- package/utils/index.scss +2 -0
- package/variables/_colors.scss +7 -0
- package/variables/_looks.scss +1 -0
- package/variables/index.scss +2 -0
- package/index.css +0 -2843
- package/index.min.css +0 -1
- package/src/base/index.scss +0 -13
- package/src/mixins/_look.scss +0 -83
- package/src/mixins/index.scss +0 -3
- package/src/shared/_color-look.scss +0 -822
- package/src/shared/_editor-container.scss +0 -291
- package/src/shared/_inputs.scss +0 -16
- package/src/shared/_utils.scss +0 -85
- package/src/utility/index.scss +0 -24
- package/src/variables/_colors.scss +0 -2
- package/src/variables/_degrees.scss +0 -1
- package/src/variables/index.scss +0 -2
- package/themes/default.css +0 -1
- /package/{src/base → base}/_preflight.scss +0 -0
- /package/{src/mixins → mixins}/_media.scss +0 -0
- /package/{src/mixins → mixins}/_util.scss +0 -0
package/base/index.scss
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
@use './preflight' as *;
|
2
|
+
:root {
|
3
|
+
--ax-overlay-full-width: 93;
|
4
|
+
--ax-sys-transition-duration: 150ms;
|
5
|
+
--ax-sys-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
|
6
|
+
}
|
7
|
+
html {
|
8
|
+
background-color: rgba(var(--ax-sys-color-lightest-surface));
|
9
|
+
color: rgba(var(--ax-sys-color-on-lightest-surface));
|
10
|
+
}
|
11
|
+
|
12
|
+
html.ax-dark {
|
13
|
+
background-color: rgba(var(--ax-sys-color-darkest-surface));
|
14
|
+
color: rgba(var(--ax-sys-color-on-darkest-surface));
|
15
|
+
}
|
@@ -43,7 +43,7 @@
|
|
43
43
|
|
44
44
|
ax-divider {
|
45
45
|
display: block;
|
46
|
-
background-color: rgba(var(--ax-color-border-
|
46
|
+
background-color: rgba(var(--ax-sys-color-border-lightest-surface));
|
47
47
|
}
|
48
48
|
|
49
49
|
.ax-action-item {
|
@@ -63,7 +63,7 @@
|
|
63
63
|
|
64
64
|
&:hover {
|
65
65
|
&:not(&.ax-state-disabled, &.ax-state-selected) {
|
66
|
-
|
66
|
+
background-color: rgba(var(--ax-sys-color-surface));
|
67
67
|
ax-prefix,
|
68
68
|
ax-suffix {
|
69
69
|
opacity: 1;
|
@@ -99,7 +99,7 @@
|
|
99
99
|
|
100
100
|
ax-suffix {
|
101
101
|
ax-text {
|
102
|
-
color: rgba(var(--ax-
|
102
|
+
color: rgba(var(--ax-sys-body-text-color));
|
103
103
|
opacity: 0.5;
|
104
104
|
font-weight: lighter;
|
105
105
|
padding-inline: 0.5rem;
|
@@ -1,15 +1,16 @@
|
|
1
|
-
.ax-
|
2
|
-
|
1
|
+
.ax-action-sheet-panel {
|
2
|
+
--ax-comp-action-sheet-border-radius-size: var(--ax-sys-border-radius);
|
3
|
+
|
3
4
|
overflow: hidden;
|
4
|
-
border-top-left-radius: var(--ax-
|
5
|
-
border-top-right-radius: var(--ax-
|
6
|
-
background-color: rgba(var(--ax-color-surface));
|
5
|
+
border-top-left-radius: var(--ax-comp-action-sheet-border-radius-size);
|
6
|
+
border-top-right-radius: var(--ax-comp-action-sheet-border-radius-size);
|
7
|
+
background-color: rgba(var(--ax-sys-color-surface-lowest));
|
7
8
|
--ax-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
|
8
9
|
--ax-shadow-colored: 0 10px 15px -3px var(--ax-shadow-color), 0 4px 6px -4px var(--ax-shadow-color);
|
9
10
|
box-shadow: var(--ax-ring-offset-shadow, 0 0 #0000), var(--ax-ring-shadow, 0 0 #0000), var(--ax-shadow);
|
10
11
|
|
11
12
|
animation: 1s both ax-fadeInUp;
|
12
|
-
animation-duration:
|
13
|
+
animation-duration: var(--ax-sys-transition-duration);
|
13
14
|
|
14
15
|
@keyframes ax-fadeInUp {
|
15
16
|
from {
|
@@ -1,7 +1,6 @@
|
|
1
1
|
@use '../mixins/index.scss';
|
2
2
|
|
3
3
|
.ax-checkbox {
|
4
|
-
// @apply ax-m-0 ax-h-4 ax-w-4 ax-cursor-pointer ax-appearance-none ax-rounded ax-border ax-border-default ax-bg-input-surface ax-align-middle ax-outline-none;
|
5
4
|
margin: 0px;
|
6
5
|
height: 1rem /* 16px */;
|
7
6
|
min-width: 1rem /* 16px */;
|
@@ -9,21 +8,18 @@
|
|
9
8
|
appearance: none;
|
10
9
|
border-radius: 0.25rem /* 4px */;
|
11
10
|
border-width: 1px;
|
12
|
-
border-color: rgba(var(--ax-color-
|
13
|
-
background-color: rgba(var(--ax-color-input-surface));
|
11
|
+
border-color: rgba(var(--ax-sys-color-border-surface));
|
12
|
+
background-color: rgba(var(--ax-sys-color-input-surface));
|
14
13
|
vertical-align: middle;
|
15
14
|
outline: 2px solid transparent;
|
16
15
|
outline-offset: 2px;
|
17
16
|
|
18
17
|
&:checked,
|
19
18
|
&:indeterminate {
|
20
|
-
|
21
|
-
|
22
|
-
background-color: rgba(var(--ax-color-primary-500)) !important;
|
19
|
+
border-color: rgba(var(--ax-sys-color-primary-500)) !important;
|
20
|
+
background-color: rgba(var(--ax-sys-color-primary-500)) !important;
|
23
21
|
background-size: contain;
|
24
22
|
background-repeat: no-repeat;
|
25
|
-
|
26
|
-
// @apply ax-bg-contain ax-bg-no-repeat;
|
27
23
|
}
|
28
24
|
|
29
25
|
&:checked {
|
@@ -36,14 +32,12 @@
|
|
36
32
|
|
37
33
|
&:focus-visible,
|
38
34
|
&:focus {
|
39
|
-
// @apply ax-ring-2 ax-ring-primary-500 ax-ring-offset-2 ax-ring-offset-surface;
|
40
35
|
box-shadow:
|
41
|
-
0px 0px 0px 2px rgba(var(--ax-color-surface)),
|
42
|
-
0px 0px 0px 4px rgba(var(--ax-color-primary-500));
|
36
|
+
0px 0px 0px 2px rgba(var(--ax-sys-color-surface)),
|
37
|
+
0px 0px 0px 4px rgba(var(--ax-sys-color-primary-500));
|
43
38
|
}
|
44
39
|
|
45
40
|
&:disabled {
|
46
|
-
// @apply ax-cursor-not-allowed ax-opacity-50;
|
47
41
|
cursor: not-allowed;
|
48
42
|
opacity: 0.5;
|
49
43
|
}
|
@@ -52,8 +46,8 @@
|
|
52
46
|
// @include darkMode() {
|
53
47
|
// .ax-checkbox {
|
54
48
|
// &:checked {
|
55
|
-
// border-color: rgba(var(--ax-color-primary-200)) !important;
|
56
|
-
// background-color: rgba(var(--ax-color-primary-200)) !important;
|
49
|
+
// border-color: rgba(var(--ax-sys-color-primary-200)) !important;
|
50
|
+
// background-color: rgba(var(--ax-sys-color-primary-200)) !important;
|
57
51
|
// background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='black' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
|
58
52
|
// }
|
59
53
|
// }
|
@@ -1,11 +1,9 @@
|
|
1
1
|
@use '../variables/index.scss';
|
2
|
-
@use '../mixins/
|
2
|
+
@use '../mixins/' as mixins;
|
3
3
|
.ax-drop-down {
|
4
|
-
// @apply ax-contents;
|
5
4
|
display: contents;
|
6
5
|
|
7
6
|
.ax-dropdown-content {
|
8
|
-
// @apply ax-flex ax-flex-1 ax-items-center ax-overflow-x-auto ax-overflow-y-hidden ax-text-sm ax-capitalize;
|
9
7
|
display: flex;
|
10
8
|
flex: 1 1 0%;
|
11
9
|
align-items: center;
|
@@ -16,7 +14,6 @@
|
|
16
14
|
text-transform: capitalize;
|
17
15
|
|
18
16
|
&.ax-state-disabled {
|
19
|
-
// @apply ax-cursor-not-allowed ax-opacity-50;
|
20
17
|
cursor: not-allowed;
|
21
18
|
opacity: 0.5;
|
22
19
|
}
|
@@ -24,46 +21,41 @@
|
|
24
21
|
}
|
25
22
|
|
26
23
|
.ax-overlay-pane {
|
27
|
-
// @apply ax-mt-1 ax-h-fit ax-overflow-hidden ax-rounded-none ax-border ax-border-default ax-bg-surface ax-shadow-md md:ax-rounded-default;
|
28
24
|
margin: 0.25rem 0;
|
29
25
|
min-width: 10rem;
|
30
26
|
height: fit-content;
|
31
27
|
overflow: hidden;
|
32
28
|
border-width: 1px;
|
33
|
-
border-color: rgba(var(--ax-color-border-
|
34
|
-
background-color: rgba(var(--ax-color-surface));
|
29
|
+
border-color: rgba(var(--ax-sys-color-border-lightest-surface));
|
30
|
+
background-color: rgba(var(--ax-sys-color-lightest-surface));
|
35
31
|
--ax-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
36
32
|
--ax-shadow-colored: 0 4px 6px -1px var(--ax-shadow-color), 0 2px 4px -2px var(--ax-shadow-color);
|
37
33
|
box-shadow: var(--ax-ring-offset-shadow, 0 0 #0000), var(--ax-ring-shadow, 0 0 #0000), var(--ax-shadow);
|
38
|
-
border-radius: var(--ax-
|
34
|
+
border-radius: var(--ax-sys-border-radius);
|
39
35
|
|
40
36
|
@include mixins.media('xs') {
|
41
37
|
margin: 0;
|
42
38
|
}
|
43
39
|
ax-header,
|
44
40
|
ax-footer {
|
45
|
-
|
46
|
-
background-color: rgba(var(--ax-color-surface));
|
41
|
+
background-color: rgba(var(--ax-sys-color-surface));
|
47
42
|
padding: 0.75rem /* 12px */;
|
48
43
|
}
|
49
44
|
|
50
45
|
&.ax-overlay-center {
|
51
|
-
// @apply ax-h-fit ax-w-[80vw] ax-max-w-[90vh];
|
52
46
|
height: fit-content;
|
53
47
|
width: 80vw;
|
54
48
|
max-width: 90vh;
|
55
49
|
}
|
56
50
|
|
57
51
|
&.ax-overlay-actionsheet {
|
58
|
-
// @apply ax-h-auto ax-max-h-[85vh] ax-w-full ax-bg-surface;
|
59
52
|
height: auto;
|
60
53
|
max-height: 85vh;
|
61
54
|
width: 100%;
|
62
|
-
background-color: rgba(var(--ax-color-surface));
|
63
|
-
border-top-left-radius: var(--ax-
|
64
|
-
border-top-right-radius: var(--ax-
|
55
|
+
background-color: rgba(var(--ax-sys-color-surface));
|
56
|
+
border-top-left-radius: var(--ax-sys-border-radius);
|
57
|
+
border-top-right-radius: var(--ax-sys-border-radius);
|
65
58
|
&.ax-full {
|
66
|
-
// @apply ax-h-[95vh] ax-max-h-[95vh];
|
67
59
|
height: 95vh;
|
68
60
|
max-height: 95vh;
|
69
61
|
}
|
@@ -72,6 +64,12 @@
|
|
72
64
|
&.ax-overlay-full {
|
73
65
|
width: 100vw;
|
74
66
|
height: 100vh;
|
75
|
-
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
@include mixins.darkMode() {
|
71
|
+
.ax-overlay-pane {
|
72
|
+
background-color: rgba(var(--ax-sys-color-darker-surface));
|
73
|
+
border-color: rgba(var(--ax-sys-color-border-darker-surface));
|
76
74
|
}
|
77
75
|
}
|
@@ -0,0 +1,260 @@
|
|
1
|
+
@use '../mixins/index.scss' as mixin;
|
2
|
+
|
3
|
+
:root,
|
4
|
+
.ax-editor-container {
|
5
|
+
--ax-comp-editor-font-size: 0.875rem;
|
6
|
+
--ax-comp-editor-space-start-size: 0.75rem;
|
7
|
+
--ax-comp-editor-space-end-size: 0.75rem;
|
8
|
+
--ax-comp-editor-height: var(--ax-sys-size-base);
|
9
|
+
|
10
|
+
--ax-comp-editor-error-bg-color: var(--ax-sys-color-danger-light-surface);
|
11
|
+
--ax-comp-editor-error-text-color: var(--ax-sys-color-danger-surface);
|
12
|
+
--ax-comp-editor-error-border-color: var(--ax-sys-color-border-danger-surface);
|
13
|
+
--ax-comp-editor-error-box-shadow-color: var(--ax-sys-color-danger-surface);
|
14
|
+
|
15
|
+
--ax-comp-editor-text-color: var(--ax-sys-color-on-lighter-surface);
|
16
|
+
--ax-comp-editor-border-color: var(--ax-sys-color-border-lighter-surface);
|
17
|
+
--ax-comp-editor-border-radius: var(--ax-sys-border-radius);
|
18
|
+
--ax-comp-editor-box-outline-width: 1px;
|
19
|
+
--ax-comp-editor-box-outline-color: var(--ax-sys-color-primary-surface);
|
20
|
+
--ax-comp-editor-placeholder-opacity: 0.5;
|
21
|
+
|
22
|
+
--ax-comp-editor-focused-border-color: var(--ax-sys-color-border-primary-surface);
|
23
|
+
--ax-comp-editor-focused-box-shadow-color: var(--ax-sys-color-primary-surface);
|
24
|
+
|
25
|
+
--ax-comp-editor-border-width: 0px;
|
26
|
+
}
|
27
|
+
|
28
|
+
.ax-editor-container {
|
29
|
+
display: flex;
|
30
|
+
align-items: center;
|
31
|
+
overflow: hidden;
|
32
|
+
width: 100%;
|
33
|
+
height: var(--ax-comp-editor-height);
|
34
|
+
font-size: var(--ax-comp-editor-font-size);
|
35
|
+
border-radius: var(--ax-comp-editor-border-radius);
|
36
|
+
border-width: var(--ax-comp-editor-border-width);
|
37
|
+
border-color: rgba(var(--ax-comp-editor-border-color));
|
38
|
+
background-color: rgba(var(--ax-comp-editor-bg-color));
|
39
|
+
color: rgba(var(--ax-comp-editor-text-color));
|
40
|
+
|
41
|
+
&:focus-within {
|
42
|
+
border-color: rgba(var(--ax-comp-editor-focused-border-color));
|
43
|
+
outline-width: var(--ax-comp-editor-box-outline-width);
|
44
|
+
outline-style: solid;
|
45
|
+
outline-color: rgba(var(--ax-comp-editor-focused-border-color));
|
46
|
+
}
|
47
|
+
|
48
|
+
&.ax-state-error {
|
49
|
+
border-color: rgba(var(--ax-comp-editor-error-border-color));
|
50
|
+
outline-width: var(--ax-comp-editor-box-outline-width);
|
51
|
+
outline-color: rgba(var(--ax-comp-editor-error-border-color));
|
52
|
+
outline-style: solid;
|
53
|
+
&:focus-within {
|
54
|
+
border-color: rgba(var(--ax-comp-editor-error-border-color));
|
55
|
+
}
|
56
|
+
.ax-input {
|
57
|
+
.ax-placeholder,
|
58
|
+
&::placeholder {
|
59
|
+
color: rgba(var(--ax-comp-editor-error-text-color), var(--ax-comp-editor-placeholder-opacity));
|
60
|
+
}
|
61
|
+
}
|
62
|
+
}
|
63
|
+
|
64
|
+
&.ax-solid {
|
65
|
+
@include mixin.solid-look();
|
66
|
+
}
|
67
|
+
&.ax-outline {
|
68
|
+
@include mixin.outline-look();
|
69
|
+
}
|
70
|
+
|
71
|
+
&.ax-flat {
|
72
|
+
@include mixin.flat-look();
|
73
|
+
}
|
74
|
+
|
75
|
+
&.ax-fill {
|
76
|
+
@include mixin.fill-look();
|
77
|
+
}
|
78
|
+
|
79
|
+
.ax-editor-input {
|
80
|
+
height: 100%;
|
81
|
+
flex: 1 1 0%;
|
82
|
+
|
83
|
+
.ax-input {
|
84
|
+
height: 100%;
|
85
|
+
}
|
86
|
+
}
|
87
|
+
|
88
|
+
.ax-editor,
|
89
|
+
.ax-input {
|
90
|
+
padding-inline-start: var(--ax-comp-editor-space-start-size);
|
91
|
+
padding-inline-end: var(--ax-comp-editor-space-end-size);
|
92
|
+
}
|
93
|
+
.ax-input {
|
94
|
+
// padding: 0 calc(var(--ax-comp-editor-font-size) - 4px);
|
95
|
+
font-size: var(--ax-comp-editor-font-size);
|
96
|
+
line-height: var(--ax-comp-editor-font-size);
|
97
|
+
color: rgba(var(--ax-comp-editor-text-color));
|
98
|
+
cursor: inherit;
|
99
|
+
.ax-placeholder,
|
100
|
+
&::placeholder {
|
101
|
+
font-size: inherit;
|
102
|
+
font-weight: 400;
|
103
|
+
color: rgb(var(--ax-comp-editor-text-color), var(--ax-comp-editor-placeholder-opacity));
|
104
|
+
}
|
105
|
+
&:focus,
|
106
|
+
&:focus-visible,
|
107
|
+
&:focus-within {
|
108
|
+
outline: none;
|
109
|
+
}
|
110
|
+
}
|
111
|
+
|
112
|
+
.ax-editor-container {
|
113
|
+
border-radius: 0 !important;
|
114
|
+
border: 0px !important;
|
115
|
+
// height: 100% !important;
|
116
|
+
|
117
|
+
&:focus-within {
|
118
|
+
box-shadow: none !important;
|
119
|
+
}
|
120
|
+
&:focus {
|
121
|
+
box-shadow: 0px 0px 0 1px rgba(var(--ax-sys-color-primary-500));
|
122
|
+
}
|
123
|
+
}
|
124
|
+
|
125
|
+
&.ax-state-disabled {
|
126
|
+
opacity: 0.5;
|
127
|
+
cursor: not-allowed;
|
128
|
+
}
|
129
|
+
|
130
|
+
.ax-editor-control {
|
131
|
+
display: flex;
|
132
|
+
height: 100%;
|
133
|
+
align-items: center;
|
134
|
+
justify-content: center;
|
135
|
+
padding-inline-start: 0.5rem;
|
136
|
+
font-size: 1.125rem;
|
137
|
+
line-height: 1.75rem;
|
138
|
+
color: rgba(var(--ax-comp-editor-text-color));
|
139
|
+
}
|
140
|
+
|
141
|
+
&.ax-button-icon {
|
142
|
+
padding: 0 0.5rem;
|
143
|
+
}
|
144
|
+
|
145
|
+
.ax-input,
|
146
|
+
.ax-text-area {
|
147
|
+
text-align: inherit;
|
148
|
+
font-family: inherit;
|
149
|
+
font-size: inherit;
|
150
|
+
line-height: inherit;
|
151
|
+
height: 100%;
|
152
|
+
width: 100%;
|
153
|
+
flex: 1 1 0%;
|
154
|
+
background-color: transparent;
|
155
|
+
font-weight: inherit;
|
156
|
+
|
157
|
+
&:focus {
|
158
|
+
box-shadow: none;
|
159
|
+
}
|
160
|
+
}
|
161
|
+
|
162
|
+
.ax-editor-button {
|
163
|
+
font-size: var(--ax-comp-editor-button-font-size, var(--ax-comp-editor-font-size));
|
164
|
+
height: var(--ax-comp-editor-button-height, 100%);
|
165
|
+
}
|
166
|
+
|
167
|
+
> ax-prefix {
|
168
|
+
padding-inline-start: var(--ax-comp-editor-space-end-size);
|
169
|
+
}
|
170
|
+
|
171
|
+
> ax-suffix,
|
172
|
+
.ax-editor-button,
|
173
|
+
.ax-clear-button {
|
174
|
+
padding-inline-end: var(--ax-comp-editor-space-end-size);
|
175
|
+
}
|
176
|
+
& > ax-prefix,
|
177
|
+
& > ax-suffix {
|
178
|
+
max-width: fit-content;
|
179
|
+
}
|
180
|
+
& > ax-prefix {
|
181
|
+
ax-icon {
|
182
|
+
}
|
183
|
+
}
|
184
|
+
& > ax-suffix {
|
185
|
+
ax-icon {
|
186
|
+
}
|
187
|
+
}
|
188
|
+
|
189
|
+
& > ax-prefix,
|
190
|
+
& > ax-suffix {
|
191
|
+
height: 100%;
|
192
|
+
|
193
|
+
// + .ax-input {
|
194
|
+
// padding-left: 0.375rem !important;
|
195
|
+
// padding-right: 0.375rem !important;
|
196
|
+
// }
|
197
|
+
* {
|
198
|
+
display: flex;
|
199
|
+
height: 100%;
|
200
|
+
align-items: center;
|
201
|
+
justify-content: center;
|
202
|
+
border-radius: 0px;
|
203
|
+
}
|
204
|
+
|
205
|
+
ax-title {
|
206
|
+
padding-left: 1rem;
|
207
|
+
padding-right: 1rem;
|
208
|
+
}
|
209
|
+
|
210
|
+
& > ax-text {
|
211
|
+
display: flex;
|
212
|
+
align-items: center;
|
213
|
+
justify-content: center;
|
214
|
+
}
|
215
|
+
}
|
216
|
+
|
217
|
+
.ax-button {
|
218
|
+
height: 100% !important;
|
219
|
+
border-radius: 0px !important;
|
220
|
+
|
221
|
+
&.ax-button-icon {
|
222
|
+
height: 100%;
|
223
|
+
width: var(--ax-comp-editor-height);
|
224
|
+
}
|
225
|
+
}
|
226
|
+
}
|
227
|
+
|
228
|
+
.ax-xs .ax-editor-container,
|
229
|
+
.ax-editor-container.ax-xs {
|
230
|
+
--ax-comp-editor-font-size: 0.75rem;
|
231
|
+
--ax-comp-editor-space-start-size: 0.375rem;
|
232
|
+
--ax-comp-editor-space-end-size: 0.375rem;
|
233
|
+
}
|
234
|
+
.ax-sm .ax-editor-container,
|
235
|
+
.ax-editor-container.ax-sm {
|
236
|
+
--ax-comp-editor-font-size: 0.875rem;
|
237
|
+
--ax-comp-editor-space-start-size: 0.5rem;
|
238
|
+
--ax-comp-editor-space-end-size: 0.5rem;
|
239
|
+
}
|
240
|
+
|
241
|
+
.ax-md .ax-editor-container,
|
242
|
+
.ax-editor-container,
|
243
|
+
.ax-editor-container.ax-md {
|
244
|
+
--ax-comp-editor-space-start-size: 0.75rem;
|
245
|
+
--ax-comp-editor-space-end-size: 0.75rem;
|
246
|
+
}
|
247
|
+
|
248
|
+
.ax-lg .ax-editor-container,
|
249
|
+
.ax-editor-container.ax-lg {
|
250
|
+
--ax-comp-editor-font-size: 1.125rem;
|
251
|
+
--ax-comp-editor-space-start-size: 0.75rem;
|
252
|
+
--ax-comp-editor-space-end-size: 0.75rem;
|
253
|
+
}
|
254
|
+
|
255
|
+
.ax-xl .ax-editor-container,
|
256
|
+
.ax-editor-container.ax-xl {
|
257
|
+
--ax-comp-editor-font-size: 1.5rem;
|
258
|
+
--ax-comp-editor-space-start-size: 0.75rem;
|
259
|
+
--ax-comp-editor-space-end-size: 0.75rem;
|
260
|
+
}
|
@@ -1,32 +1,32 @@
|
|
1
1
|
.ax-general-button {
|
2
2
|
display: inline-flex;
|
3
|
-
height: var(--ax-size-
|
3
|
+
height: var(--ax-sys-size-base);
|
4
4
|
cursor: pointer;
|
5
5
|
align-items: center;
|
6
6
|
justify-content: center;
|
7
|
-
border-radius: var(--ax-
|
7
|
+
border-radius: var(--ax-sys-border-radius);
|
8
8
|
padding-left: 1rem;
|
9
9
|
padding-right: 1rem;
|
10
10
|
font-size: 0.875rem;
|
11
11
|
line-height: 1.25rem;
|
12
|
-
color: rgb(var(--ax-color-
|
12
|
+
color: rgb(var(--ax-sys-color-on-surface), 0.75);
|
13
13
|
|
14
14
|
&:hover {
|
15
15
|
&:not(&:disabled, .ax-state-disabled) {
|
16
|
-
color: rgba(var(--ax-color-primary-500), var(--tw-text-opacity));
|
16
|
+
color: rgba(var(--ax-sys-color-primary-500), var(--tw-text-opacity));
|
17
17
|
}
|
18
18
|
}
|
19
19
|
|
20
20
|
&:focus,
|
21
21
|
&:focus-visible {
|
22
22
|
&:not(&:disabled, .ax-state-disabled) {
|
23
|
-
color: rgba(var(--ax-color-primary-700), var(--tw-text-opacity));
|
23
|
+
color: rgba(var(--ax-sys-color-primary-700), var(--tw-text-opacity));
|
24
24
|
}
|
25
25
|
}
|
26
26
|
|
27
27
|
&:active {
|
28
28
|
&:not(&:disabled, .ax-state-disabled) {
|
29
|
-
color: rgba(var(--ax-color-primary-300), var(--tw-text-opacity));
|
29
|
+
color: rgba(var(--ax-sys-color-primary-300), var(--tw-text-opacity));
|
30
30
|
}
|
31
31
|
}
|
32
32
|
|
@@ -39,7 +39,7 @@
|
|
39
39
|
}
|
40
40
|
}
|
41
41
|
&.ax-button-rounded {
|
42
|
-
border-radius: var(--ax-
|
42
|
+
border-radius: var(--ax-sys-border-radius);
|
43
43
|
}
|
44
44
|
&:disabled,
|
45
45
|
&.ax-state-disabled {
|
@@ -49,28 +49,27 @@
|
|
49
49
|
}
|
50
50
|
.ax-clear-button {
|
51
51
|
display: inline-flex;
|
52
|
-
height: var(--ax-size-
|
52
|
+
height: var(--ax-sys-size-base);
|
53
53
|
align-items: center;
|
54
54
|
justify-content: center;
|
55
55
|
margin-left: 0.25rem;
|
56
56
|
margin-right: 0.25rem;
|
57
57
|
font-size: 1rem /* 16px */;
|
58
58
|
line-height: 1.5rem /* 24px */;
|
59
|
-
|
60
|
-
color: rgb(var(--ax-color-text-default), 0.75);
|
59
|
+
color: rgb(var(--ax-sys-color-on-surface), 0.75);
|
61
60
|
|
62
61
|
> button {
|
63
62
|
display: flex;
|
64
63
|
}
|
65
64
|
&:hover {
|
66
65
|
&:not(&:disabled, .ax-state-disabled) {
|
67
|
-
color: rgb(var(--ax-color-
|
66
|
+
color: rgb(var(--ax-sys-color-on-surface), 0.5);
|
68
67
|
}
|
69
68
|
}
|
70
69
|
&:focus,
|
71
70
|
&:focus-visible {
|
72
71
|
&:not(&:disabled, .ax-state-disabled) {
|
73
|
-
color: rgb(var(--ax-color-
|
72
|
+
color: rgb(var(--ax-sys-color-on-surface));
|
74
73
|
}
|
75
74
|
}
|
76
75
|
}
|