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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claritas-web-framework",
3
- "version": "8.0.52",
3
+ "version": "8.0.53",
4
4
  "description": "The CSS framework built for Claritas front end.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -259,16 +259,24 @@ progress,
259
259
  }
260
260
 
261
261
  .form--span {
262
- --form-span-background: hsl(var(--body-color-h) var(--body-color-s) var(--body-color-l) / 5%);
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
  }