@agorapulse/ui-theme 16.1.5 → 16.1.7
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/agorapulse-ui-theme-16.1.7.tgz +0 -0
- package/assets/desktop_variables.css +2 -0
- package/assets/mobile_variables.css +2 -0
- package/assets/style/components-custom-style/_input.scss +1 -1
- package/assets/style/components-custom-style/_ng-select.scss +1 -1
- package/package.json +1 -1
- package/src/tokens/components/input.json +10 -0
- package/agorapulse-ui-theme-16.1.5.tgz +0 -0
|
Binary file
|
|
@@ -334,6 +334,7 @@
|
|
|
334
334
|
--comp-input-text-font-weight: 400;
|
|
335
335
|
--comp-input-text-line-height: 18px;
|
|
336
336
|
--comp-input-text-default-color: #344563;
|
|
337
|
+
--comp-input-text-disabled-color: #5D6A82;
|
|
337
338
|
--comp-input-text-placeholder-color: #858FA1;
|
|
338
339
|
--comp-forms-label-font-family: Averta;
|
|
339
340
|
--comp-forms-label-size: 14px;
|
|
@@ -377,6 +378,7 @@
|
|
|
377
378
|
--comp-text-area-text-font-weight: 400;
|
|
378
379
|
--comp-text-area-text-line-height: 18px;
|
|
379
380
|
--comp-text-area-text-default-color: #344563;
|
|
381
|
+
--comp-text-area-text-disabled-color: #5D6A82;
|
|
380
382
|
--comp-text-area-text-placeholder-color: #858FA1;
|
|
381
383
|
--comp-label-text-style-font-family: Averta;
|
|
382
384
|
--comp-label-text-style-size: 14px;
|
|
@@ -334,6 +334,7 @@
|
|
|
334
334
|
--comp-input-text-font-weight: 400;
|
|
335
335
|
--comp-input-text-line-height: 18px;
|
|
336
336
|
--comp-input-text-default-color: #344563;
|
|
337
|
+
--comp-input-text-disabled-color: #5D6A82;
|
|
337
338
|
--comp-input-text-placeholder-color: #858FA1;
|
|
338
339
|
--comp-forms-label-font-family: Averta;
|
|
339
340
|
--comp-forms-label-size: 14px;
|
|
@@ -377,6 +378,7 @@
|
|
|
377
378
|
--comp-text-area-text-font-weight: 400;
|
|
378
379
|
--comp-text-area-text-line-height: 18px;
|
|
379
380
|
--comp-text-area-text-default-color: #344563;
|
|
381
|
+
--comp-text-area-text-disabled-color: #5D6A82;
|
|
380
382
|
--comp-text-area-text-placeholder-color: #858FA1;
|
|
381
383
|
--comp-label-text-style-font-family: Averta;
|
|
382
384
|
--comp-label-text-style-size: 14px;
|
package/package.json
CHANGED
|
@@ -90,6 +90,11 @@
|
|
|
90
90
|
"value": "{sys.text.color.default}"
|
|
91
91
|
}
|
|
92
92
|
},
|
|
93
|
+
"disabled": {
|
|
94
|
+
"color": {
|
|
95
|
+
"value": "{ref.color.grey.80}"
|
|
96
|
+
}
|
|
97
|
+
},
|
|
93
98
|
"placeholder": {
|
|
94
99
|
"color": {
|
|
95
100
|
"value": "{ref.color.grey.60}"
|
|
@@ -283,6 +288,11 @@
|
|
|
283
288
|
"value": "{sys.text.color.default}"
|
|
284
289
|
}
|
|
285
290
|
},
|
|
291
|
+
"disabled": {
|
|
292
|
+
"color": {
|
|
293
|
+
"value": "{ref.color.grey.80}"
|
|
294
|
+
}
|
|
295
|
+
},
|
|
286
296
|
"placeholder": {
|
|
287
297
|
"color": {
|
|
288
298
|
"value": "{ref.color.grey.60}"
|
|
Binary file
|