@acorex/styles 19.10.0-next.3 → 19.10.0-next.4

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.
@@ -8,7 +8,7 @@
8
8
  appearance: none;
9
9
  border-radius: 0.25rem /* 4px */;
10
10
  border-width: 1px;
11
- border-color: rgba(var(--ax-sys-color-input-surface-border));
11
+ border-color: rgba(var(--ax-sys-color-border-surface));
12
12
  background-color: rgba(var(--ax-sys-color-input-surface));
13
13
  vertical-align: middle;
14
14
  outline: 2px solid transparent;
@@ -1,110 +1,90 @@
1
- @use '../mixins/look' as look;
2
1
  @use '../mixins/util' as util;
3
2
 
4
- :root {
5
- --ax-editor-font-size: 1rem;
6
- --ax-editor-space-size: 1rem;
7
- }
3
+ :root,
4
+ .ax-editor-container {
5
+ --ax-comp-editor-font-size: 1rem;
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);
8
9
 
9
- @include util.darkMode() {
10
- .ax-editor-container {
11
- &.ax-look-fill {
12
- &:focus-within {
13
- box-shadow: 0px 0px 0 2px rgba(var(--ax-sys-color-primary-200));
14
- }
15
- &.ax-state-error {
16
- background-color: rgba(var(--ax-sys-color-danger-200));
17
- color: rgba(var(--ax-sys-color-danger-fore));
18
-
19
- &:focus-within {
20
- box-shadow: 0px 0px 0 2px rgba(var(--ax-sys-color-danger-200));
21
- }
22
- .ax-input {
23
- &::placeholder {
24
- color: rgba(var(--ax-sys-color-danger-200));
25
- }
26
- }
27
- }
28
- }
29
- &.ax-look-flat {
30
- &:focus-within {
31
- border-color: rgba(var(--ax-sys-color-primary-200));
32
- }
33
- &.ax-state-error {
34
- border-color: rgba(var(--ax-sys-color-danger-200));
35
-
36
- .ax-input {
37
- &::placeholder {
38
- color: rgba(var(--ax-sys-color-danger-200));
39
- }
40
- }
41
- }
42
- }
43
- &.ax-look-solid,
44
- &.ax-look-outline {
45
- &:focus-within {
46
- box-shadow: 0px 0px 0 1px rgba(var(--ax-sys-color-primary-200));
47
- border-color: rgba(var(--ax-sys-color-primary-200));
48
- }
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);
49
14
 
50
- &.ax-state-error {
51
- border-color: rgba(var(--ax-sys-color-danger-200));
52
- &:focus-within {
53
- box-shadow: 0px 0px 0 1px rgba(var(--ax-sys-color-danger-200));
54
- border-color: rgba(var(--ax-sys-color-danger-200));
55
- }
56
- .ax-input {
57
- &::placeholder {
58
- color: rgba(var(--ax-sys-color-danger-200));
59
- }
60
- }
61
- }
62
- }
63
- }
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;
64
26
  }
65
27
 
66
28
  .ax-editor-container {
67
29
  display: flex;
68
- height: var(--ax-sys-size-base);
69
- width: 100%;
70
30
  align-items: center;
71
31
  overflow: hidden;
72
- font-size: 0.875rem;
73
- color: rgba(var(--ax-sys-color-input-surface-text));
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));
74
40
 
75
- .ax-editor-container {
76
- border-radius: 0 !important;
77
- border: 0px !important;
78
- height: 100% !important;
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
+ }
79
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;
80
53
  &:focus-within {
81
- box-shadow: none !important;
54
+ border-color: rgba(var(--ax-comp-editor-error-border-color));
82
55
  }
83
- &:focus {
84
- box-shadow: 0px 0px 0 1px rgba(var(--ax-sys-color-primary-500));
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
+ }
85
61
  }
86
62
  }
87
63
 
88
- &.ax-state-disabled {
89
- opacity: 0.5;
90
- cursor: not-allowed;
64
+ &.ax-solid {
65
+ --ax-comp-editor-bg-color: var(--ax-sys-color-lightest-surface);
66
+ --ax-comp-editor-border-width: 1px;
91
67
  }
92
-
93
- &.ax-look-solid,
94
- &.ax-look-outline {
95
- @include look.solid-look();
68
+ &.ax-outline {
69
+ --ax-comp-editor-bg-color: 0, 0, 0, 0;
70
+ --ax-comp-editor-border-width: 1px;
96
71
  }
97
72
 
98
- &.ax-look-flat {
99
- @include look.flat-look();
73
+ &.ax-flat {
74
+ --ax-comp-editor-border-width: 2px;
75
+ --ax-comp-editor-border-radius: 0px;
76
+ --ax-comp-editor-box-outline-width: 0px;
77
+ border-width: 0px !important;
78
+ border-bottom-width: var(--ax-comp-editor-border-width) !important;
100
79
  }
101
80
 
102
- &.ax-look-outline {
103
- @include look.outline-look();
104
- }
81
+ &.ax-fill {
82
+ --ax-comp-editor-box-outline-width: 2px;
83
+ --ax-comp-editor-border-width: 0px;
105
84
 
106
- &.ax-look-fill {
107
- @include look.fill-look();
85
+ --ax-comp-editor-bg-color: var(--ax-sys-color-lighter-surface);
86
+ --ax-comp-editor-text-color: var(--ax-sys-color-on-lighter-surface);
87
+ --ax-comp-editor-border-color: var(--ax-sys-color-border-lighter-surface);
108
88
  }
109
89
 
110
90
  .ax-editor-input {
@@ -116,15 +96,22 @@
116
96
  }
117
97
  }
118
98
 
99
+ .ax-editor,
119
100
  .ax-input {
120
- padding: 0 calc(var(--ax-editor-font-size) - 4px);
121
- font-size: var(--ax-editor-font-size);
122
- line-height: var(--ax-editor-font-size);
101
+ padding-inline-start: var(--ax-comp-editor-space-start-size);
102
+ padding-inline-end: var(--ax-comp-editor-space-end-size);
103
+ }
104
+ .ax-input {
105
+ // padding: 0 calc(var(--ax-comp-editor-font-size) - 4px);
106
+ font-size: var(--ax-comp-editor-font-size);
107
+ line-height: var(--ax-comp-editor-font-size);
108
+ color: rgba(var(--ax-comp-editor-text-color));
123
109
  cursor: inherit;
110
+ .ax-placeholder,
124
111
  &::placeholder {
125
112
  font-size: inherit;
126
113
  font-weight: 400;
127
- color: rgb(var(--ax-sys-color-input-surface-text), 0.5);
114
+ color: rgb(var(--ax-comp-editor-text-color), var(--ax-comp-editor-placeholder-opacity));
128
115
  }
129
116
  &:focus,
130
117
  &:focus-visible,
@@ -133,6 +120,24 @@
133
120
  }
134
121
  }
135
122
 
123
+ .ax-editor-container {
124
+ border-radius: 0 !important;
125
+ border: 0px !important;
126
+ // height: 100% !important;
127
+
128
+ &:focus-within {
129
+ box-shadow: none !important;
130
+ }
131
+ &:focus {
132
+ box-shadow: 0px 0px 0 1px rgba(var(--ax-sys-color-primary-500));
133
+ }
134
+ }
135
+
136
+ &.ax-state-disabled {
137
+ opacity: 0.5;
138
+ cursor: not-allowed;
139
+ }
140
+
136
141
  .ax-editor-control {
137
142
  display: flex;
138
143
  height: 100%;
@@ -141,12 +146,13 @@
141
146
  padding-inline-start: 0.5rem;
142
147
  font-size: 1.125rem;
143
148
  line-height: 1.75rem;
144
- color: rgba(var(--ax-sys-color-input-surface-text));
149
+ color: rgba(var(--ax-comp-editor-text-color));
145
150
  }
146
151
 
147
152
  &.ax-button-icon {
148
153
  padding: 0 0.5rem;
149
154
  }
155
+
150
156
  .ax-input,
151
157
  .ax-text-area {
152
158
  text-align: inherit;
@@ -157,36 +163,36 @@
157
163
  width: 100%;
158
164
  flex: 1 1 0%;
159
165
  background-color: transparent;
160
- font-weight: 400;
166
+ font-weight: inherit;
161
167
 
162
168
  &:focus {
163
169
  box-shadow: none;
164
170
  }
165
171
  }
166
172
 
167
- .ax-text-area {
168
- padding: 0.625rem;
173
+ > ax-suffix,
174
+ .ax-editor-button,
175
+ .ax-clear-button {
176
+ padding-inline-end: var(--ax-comp-editor-space-end-size);
169
177
  }
170
- & > ax-prefix {
171
- *,
172
- .ax-button,
173
- ax-title {
174
- border-end-start-radius: 0.25rem;
175
- border-start-start-radius: 0.25rem;
176
- }
177
178
 
179
+ > ax-suffix,
180
+ .ax-editor-button,
181
+ .ax-clear-button {
182
+ padding-inline-end: var(--ax-comp-editor-space-end-size);
183
+ }
184
+ & > ax-prefix,
185
+ & > ax-suffix {
186
+ max-width: fit-content;
187
+ }
188
+ & > ax-prefix {
178
189
  ax-icon {
179
- padding-left: 0.75rem;
180
- padding-right: 0.75rem;
190
+ padding-inline-start: var(--ax-comp-editor-space-end-size);
181
191
  }
182
192
  }
183
-
184
193
  & > ax-suffix {
185
- *,
186
- .ax-button,
187
- ax-title {
188
- border-end-end-radius: 0.25rem;
189
- border-start-end-radius: 0.25rem;
194
+ ax-icon {
195
+ padding-inline-end: var(--ax-comp-editor-space-end-size);
190
196
  }
191
197
  }
192
198
 
@@ -194,10 +200,10 @@
194
200
  & > ax-suffix {
195
201
  height: 100%;
196
202
 
197
- + .ax-input {
198
- padding-left: 0.375rem !important;
199
- padding-right: 0.375rem !important;
200
- }
203
+ // + .ax-input {
204
+ // padding-left: 0.375rem !important;
205
+ // padding-right: 0.375rem !important;
206
+ // }
201
207
  * {
202
208
  display: flex;
203
209
  height: 100%;
@@ -229,7 +235,99 @@
229
235
 
230
236
  &.ax-button-icon {
231
237
  height: 100%;
232
- width: var(--ax-sys-size-base);
238
+ width: var(--ax-comp-editor-height);
233
239
  }
234
240
  }
235
241
  }
242
+
243
+ .ax-xs .ax-editor-container,
244
+ .ax-editor-container.ax-xs {
245
+ --ax-comp-editor-font-size: 0.75rem;
246
+ --ax-comp-editor-space-start-size: 0.375rem;
247
+ --ax-comp-editor-space-end-size: 0.375rem;
248
+ }
249
+ .ax-sm .ax-editor-container,
250
+ .ax-editor-container.ax-sm {
251
+ --ax-comp-editor-font-size: 0.875rem;
252
+ --ax-comp-editor-space-start-size: 0.5rem;
253
+ --ax-comp-editor-space-end-size: 0.5rem;
254
+ }
255
+
256
+ .ax-md .ax-editor-container,
257
+ .ax-editor-container,
258
+ .ax-editor-container.ax-md {
259
+ --ax-comp-editor-font-size: 1rem;
260
+ --ax-comp-editor-space-start-size: 0.75rem;
261
+ --ax-comp-editor-space-end-size: 0.75rem;
262
+ }
263
+
264
+ .ax-lg .ax-editor-container,
265
+ .ax-editor-container.ax-lg {
266
+ --ax-comp-editor-font-size: 1.125rem;
267
+ --ax-comp-editor-space-start-size: 0.75rem;
268
+ --ax-comp-editor-space-end-size: 0.75rem;
269
+ }
270
+
271
+ .ax-xl .ax-editor-container,
272
+ .ax-editor-container.ax-xl {
273
+ --ax-comp-editor-font-size: 1.5rem;
274
+ --ax-comp-editor-space-start-size: 0.75rem;
275
+ --ax-comp-editor-space-end-size: 0.75rem;
276
+ }
277
+ // @include util.darkMode() {
278
+ // .ax-editor-container {
279
+ // &.ax-fill {
280
+ // &:focus-within {
281
+ // box-shadow: 0px 0px 0 2px rgba(var(--ax-comp-editor-box-shadow-color));
282
+ // }
283
+ // &.ax-state-error {
284
+ // background-color: rgba(var(--ax-comp-editor-error-bg-color));
285
+ // color: rgba(var(--ax-comp-editor-error-text-color));
286
+
287
+ // &:focus-within {
288
+ // box-shadow: 0px 0px 0 2px rgba(var(--ax-comp-editor-error-box-shadow-color));
289
+ // }
290
+ // .ax-input {
291
+ // &::placeholder {
292
+ // color: rgba(var(--ax-comp-editor-error-text-color));
293
+ // }
294
+ // }
295
+ // }
296
+ // }
297
+ // &.ax-flat {
298
+ // &:focus-within {
299
+ // border-color: rgba(var(--ax-comp-editor-box-shadow-color));
300
+ // }
301
+ // &.ax-state-error {
302
+ // border-color: rgba(var(--ax-comp-editor-error-bg-color));
303
+
304
+ // .ax-input {
305
+ // .ax-placeholder,
306
+ // &::placeholder {
307
+ // color: rgba(var(--ax-comp-editor-error-bg-color));
308
+ // }
309
+ // }
310
+ // }
311
+ // }
312
+ // &.ax-solid,
313
+ // &.ax-outline {
314
+ // &:focus-within {
315
+ // box-shadow: 0px 0px 0 1px rgba(var(--ax-comp-editor-box-shadow-color));
316
+ // border-color: rgba(var(--ax-comp-editor-border-color));
317
+ // }
318
+
319
+ // &.ax-state-error {
320
+ // border-color: rgba(var(--ax-comp-editor-error-border-color));
321
+ // &:focus-within {
322
+ // box-shadow: 0px 0px 0 1px rgba(var(--ax-comp-editor-error-box-shadow-color));
323
+ // }
324
+ // .ax-input {
325
+ // .ax-placeholder,
326
+ // &::placeholder {
327
+ // color: rgba(var(--ax-comp-editor-error-text-color), var(--ax-comp-editor-placeholder-opacity));
328
+ // }
329
+ // }
330
+ // }
331
+ // }
332
+ // }
333
+ // }
@@ -9,7 +9,7 @@
9
9
  padding-right: 1rem;
10
10
  font-size: 0.875rem;
11
11
  line-height: 1.25rem;
12
- color: rgb(var(--ax-sys-color-input-surface-text), 0.75);
12
+ color: rgb(var(--ax-sys-color-input-text), 0.75);
13
13
 
14
14
  &:hover {
15
15
  &:not(&:disabled, .ax-state-disabled) {
@@ -10,7 +10,7 @@
10
10
  appearance: none;
11
11
  border-radius: 9999px /* 4px */;
12
12
  border-width: 1px;
13
- border-color: rgba(var(--ax-sys-color-input-surface-border));
13
+ border-color: rgba(var(--ax-sys-color-border-surface));
14
14
  background-color: rgba(var(--ax-sys-color-input-surface));
15
15
  vertical-align: middle;
16
16
  outline: 2px solid transparent;
package/mixins/index.scss CHANGED
@@ -1,3 +1,2 @@
1
- @forward './look';
2
1
  @forward './media';
3
2
  @forward './util';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acorex/styles",
3
- "version": "19.10.0-next.3",
3
+ "version": "19.10.0-next.4",
4
4
  "main": "index.js",
5
5
  "author": "Ali Safari",
6
6
  "license": "ISC",
@@ -13,9 +13,16 @@ $theme-colors: (
13
13
 
14
14
  $theme-surfaces: (
15
15
  'light-start': #ffffff,
16
- 'light-end': #dee2e6,
17
- 'dark-start': #13161b,
18
- 'dark-end': #0c0e12,
16
+ 'light-end': #d4d4d4,
17
+ 'dark-start': #27272a,
18
+ 'dark-end': #09090b,
19
+ );
20
+
21
+ $options: (
22
+ 'color-range': true,
23
+ 'light': #ffffff,
24
+ 'neutral': #c0c0c0,
25
+ 'dark': #09090b,
19
26
  );
20
27
 
21
28
  @forward '../variables/index.scss';
@@ -24,11 +31,12 @@ $theme-surfaces: (
24
31
  .ax-light {
25
32
  --ax-sys-body-font-size: 1rem;
26
33
  --ax-sys-size-base: 2.5rem;
27
-
28
34
  --ax-sys-border-radius: 0.5rem;
35
+ --ax-sys-color-body-text: 0, 0, 0;
36
+ --ax-sys-color-input-text: 0, 0, 0;
29
37
 
30
38
  // --ax-sys-body-bg-color: var(--ax-sys-color-surface-lowest);
31
39
  // --ax-sys-body-text-color: var(--ax-sys-color-surface-lowest-border);
32
40
  }
33
41
 
34
- @include generate-pallete-variables($theme-colors, $theme-surfaces, true);
42
+ @include generate-pallete-variables($theme-colors, $theme-surfaces, $options);
@@ -42,7 +42,15 @@
42
42
  }
43
43
  }
44
44
 
45
- @function generate-surfaces-colors-variables($surfaces, $is-dark) {
45
+ @function generate-surfaces-colors-variables($surfaces, $options) {
46
+ $light-color: if(map.has-key($options, 'light'), map.get($options, 'light'), #f0f0f0);
47
+ $neutral-color: if(map.has-key($options, 'neutral'), map.get($options, 'neutral'), #808080);
48
+ $dark-color: if(map.has-key($options, 'dark'), map.get($options, 'dark'), #303030);
49
+ //
50
+ $is-dark: if(map.has-key($options, 'is-dark'), map.get($options, 'is-dark'), false);
51
+ //
52
+ $dark-start-color: map.get($surfaces, 'dark-start');
53
+ $dark-end-color: map.get($surfaces, 'dark-end');
46
54
  // Extract the start and end colors for both light and dark themes
47
55
  $start-color: map.get($surfaces, 'light-start');
48
56
  $end-color: map.get($surfaces, 'light-end');
@@ -89,6 +97,10 @@
89
97
  $darkest-surface-border: border-color($darkest-surface, $is-dark);
90
98
 
91
99
  @return (
100
+ ax-sys-color-light: $light-color,
101
+ ax-sys-color-neutral: $neutral-color,
102
+ ax-sys-color-dark: $dark-color,
103
+ //
92
104
  ax-sys-color-lightest-surface: $lightest-surface,
93
105
  ax-sys-color-on-lightest-surface: $on-lightest-surface,
94
106
  ax-sys-color-border-lightest-surface: $lightest-surface-border,
@@ -119,7 +131,7 @@
119
131
  );
120
132
  }
121
133
 
122
- @function generate-color-surfaces-variables($name, $color, $is-dark: false) {
134
+ @function generate-named-surfaces-variables($name, $color, $is-dark: false) {
123
135
  $palette: light-palette-generator($color);
124
136
  @if $is-dark {
125
137
  $palette: dark-palette-generator($color);
@@ -191,12 +203,20 @@
191
203
  );
192
204
  }
193
205
 
194
- @mixin generate-pallete-variables($colors, $theme-surfaces, $generate-color-range: true) {
206
+ @mixin generate-pallete-variables($colors, $theme-surfaces, $options) {
207
+ $generate-color-range: map.get($options, 'color-range');
208
+
195
209
  /************** Light Palette **************/
210
+ $options: map.deep-merge(
211
+ $options,
212
+ (
213
+ 'is-dark': false,
214
+ )
215
+ );
196
216
  :root,
197
217
  .ax-light {
198
218
  // Generate Base Surfaces
199
- @include convert-to-rgb(generate-surfaces-colors-variables($theme-surfaces, false));
219
+ @include convert-to-rgb(generate-surfaces-colors-variables($theme-surfaces, $options));
200
220
  // Generate Ranges
201
221
  @if $generate-color-range {
202
222
  /* Ranges */
@@ -212,14 +232,20 @@
212
232
  @if (meta.type-of($color) == list) {
213
233
  $color: list.nth($color, 1);
214
234
  }
215
- @include convert-to-rgb(generate-color-surfaces-variables($name, $color, false));
235
+ @include convert-to-rgb(generate-named-surfaces-variables($name, $color, false));
216
236
  }
217
237
  }
218
238
 
219
239
  /************** Dark Palette **************/
240
+ $options: map.deep-merge(
241
+ $options,
242
+ (
243
+ 'is-dark': true,
244
+ )
245
+ );
220
246
  .ax-dark {
221
247
  // Generate Base Surfaces
222
- @include convert-to-rgb(generate-surfaces-colors-variables($theme-surfaces, true));
248
+ @include convert-to-rgb(generate-surfaces-colors-variables($theme-surfaces, $options));
223
249
  // Generate Ranges
224
250
  @if $generate-color-range {
225
251
  /* Ranges */
@@ -235,7 +261,7 @@
235
261
  @if (meta.type-of($color) == list) {
236
262
  $color: list.nth($color, 2);
237
263
  }
238
- @include convert-to-rgb(generate-color-surfaces-variables($name, $color, true));
264
+ @include convert-to-rgb(generate-named-surfaces-variables($name, $color, true));
239
265
  }
240
266
  }
241
267
  }
package/mixins/_look.scss DELETED
@@ -1,68 +0,0 @@
1
- @mixin solid-look() {
2
- border-radius: var(--ax-sys-border-radius);
3
- border-width: 1px;
4
- border-color: rgba(var(--ax-sys-color-input-surface-border));
5
- background-color: rgba(var(--ax-sys-color-input-surface));
6
-
7
- &:focus-within {
8
- box-shadow: 0px 0px 0 1px rgba(var(--ax-sys-color-primary-500));
9
- border-color: rgba(var(--ax-sys-color-primary-500));
10
- }
11
-
12
- &.ax-state-error {
13
- border-color: rgba(var(--ax-sys-color-danger-500));
14
- &:focus-within {
15
- box-shadow: 0px 0px 0 1px rgba(var(--ax-sys-color-danger-500));
16
- border-color: rgba(var(--ax-sys-color-danger-500));
17
- }
18
- .ax-input {
19
- &::placeholder {
20
- color: rgba(var(--ax-sys-color-danger-500));
21
- }
22
- }
23
- }
24
- }
25
- @mixin flat-look() {
26
- border-radius: 0px;
27
- border-bottom-width: 1px;
28
- border-color: rgba(var(--ax-sys-color-input-surface-border));
29
-
30
- &:focus-within {
31
- border-color: rgba(var(--ax-sys-color-primary-500));
32
- }
33
- &.ax-state-error {
34
- border-color: rgba(var(--ax-sys-color-danger-500));
35
-
36
- .ax-input {
37
- &::placeholder {
38
- color: rgba(var(--ax-sys-color-danger-500));
39
- }
40
- }
41
- }
42
- }
43
-
44
- @mixin outline-look() {
45
- background-color: transparent !important;
46
- }
47
-
48
- @mixin fill-look() {
49
- border-radius: var(--ax-sys-border-radius);
50
- background-color: rgba(var(--ax-sys-color-surface-high));
51
-
52
- &:focus-within {
53
- box-shadow: 0px 0px 0 2px rgba(var(--ax-sys-color-primary-500));
54
- }
55
- &.ax-state-error {
56
- background-color: rgba(var(--ax-sys-color-danger-50));
57
- color: rgba(var(--ax-sys-color-danger-fore-tint));
58
-
59
- &:focus-within {
60
- box-shadow: 0px 0px 0 2px rgba(var(--ax-sys-color-danger-500));
61
- }
62
- .ax-input {
63
- &::placeholder {
64
- color: rgba(var(--ax-sys-color-danger-500));
65
- }
66
- }
67
- }
68
- }