claritas-web-framework 8.0.52 → 8.0.53
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/dist/index.css +1 -1
- package/package.json +1 -1
- package/sass/modules/_form.scss +11 -3
package/package.json
CHANGED
package/sass/modules/_form.scss
CHANGED
|
@@ -259,16 +259,24 @@ progress,
|
|
|
259
259
|
}
|
|
260
260
|
|
|
261
261
|
.form--span {
|
|
262
|
-
--
|
|
262
|
+
--input-background: hsl(var(--body-color-h) var(--body-color-s) 95%);
|
|
263
|
+
--input-hover-background: hsl(var(--body-color-h) var(--body-color-s) 95%);
|
|
264
|
+
--input-focus-background: hsl(var(--body-color-h) var(--body-color-s) 95%);
|
|
265
|
+
--input-active-background: hsl(var(--body-color-h) var(--body-color-s) 95%);
|
|
266
|
+
--input-disabled-background: hsl(var(--body-color-h) var(--body-color-s) 95%);
|
|
267
|
+
|
|
268
|
+
--input-box-shadow: none;
|
|
269
|
+
--input-hover-box-shadow: none;
|
|
270
|
+
--input-focus-box-shadow: none;
|
|
271
|
+
--input-active-box-shadow: none;
|
|
272
|
+
--input-disabled-box-shadow: none;
|
|
263
273
|
|
|
264
|
-
background-color: var(--form-span-background);
|
|
265
274
|
align-items: center;
|
|
266
275
|
display: inline-flex;
|
|
267
276
|
vertical-align: top;
|
|
268
277
|
justify-content: center;
|
|
269
278
|
text-align: center;
|
|
270
279
|
white-space: nowrap;
|
|
271
|
-
height: auto;
|
|
272
280
|
outline: 0;
|
|
273
281
|
text-decoration: none;
|
|
274
282
|
}
|