claritas-web-framework 8.5.3 → 8.5.5
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.5.
|
|
3
|
+
"version": "8.5.5",
|
|
4
4
|
"description": "The CSS framework built for Claritas front end.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"mini-css-extract-plugin": "^2.9.2",
|
|
22
22
|
"prettier": "^3.5.3",
|
|
23
23
|
"sass-loader": "^16.0.5",
|
|
24
|
-
"webpack": "^5.99.
|
|
24
|
+
"webpack": "^5.99.9",
|
|
25
25
|
"webpack-cli": "^6.0.1",
|
|
26
26
|
"webpack-dev-server": "^5.2.1"
|
|
27
27
|
},
|
package/sass/_variables.scss
CHANGED
|
@@ -376,6 +376,7 @@ $button-color-flip-threshold: 60% !default;
|
|
|
376
376
|
$button-color-flip-l: 35% !default;
|
|
377
377
|
$button-disabled-border-alpha: 50% !default;
|
|
378
378
|
$button-hover-background-alpha: 10% !default;
|
|
379
|
+
$button-outline-background: #fff !default;
|
|
379
380
|
|
|
380
381
|
/* ---------------------------------- close --------------------------------- */
|
|
381
382
|
$close-indicator-color: $white !default;
|
package/sass/mixins/_button.scss
CHANGED
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
--button-focus-background: color-mix(in oklab, var(--#{$main}), #000 #{$border-shade-percentage});
|
|
24
24
|
--button-active-background: color-mix(in oklab, var(--#{$main}), #000 #{$border-shade-percentage});
|
|
25
25
|
--button-disabled-background: hsl(from var(--#{$main}) h s l / #{$button-disabled-border-alpha});
|
|
26
|
-
--button-box-shadow: 0 0 0 0.125em
|
|
27
|
-
--button-hover-box-shadow: 0 0 0 0.125em
|
|
26
|
+
--button-box-shadow: 0 0 0 0.125em transparent;
|
|
27
|
+
--button-hover-box-shadow: 0 0 0 0.125em transparent;
|
|
28
28
|
--button-focus-box-shadow: 0 0 0 0.125em hsl(from var(--#{$main}) h s l / 20%);
|
|
29
29
|
--button-active-box-shadow: 0 0 0 0.125em hsl(from var(--#{$main}) h s l / 20%);
|
|
30
|
-
--button-disabled-box-shadow: 0 0 0 0.125em
|
|
30
|
+
--button-disabled-box-shadow: 0 0 0 0.125em transparent;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
@mixin button-variant-outline(
|
|
@@ -47,16 +47,16 @@
|
|
|
47
47
|
--button-focus-border-color: #{$border-color};
|
|
48
48
|
--button-active-border-color: #{$border-color};
|
|
49
49
|
--button-disabled-border-color: #{$border-color-disabled};
|
|
50
|
-
--button-background:
|
|
50
|
+
--button-background: #{$button-outline-background};
|
|
51
51
|
--button-hover-background: var(--#{$main});
|
|
52
52
|
--button-focus-background: var(--#{$main});
|
|
53
53
|
--button-active-background: color-mix(in oklab, var(--#{$main}), #000 #{$border-shade-percentage});
|
|
54
|
-
--button-disabled-background:
|
|
55
|
-
--button-box-shadow: 0 0 0 0.125em
|
|
56
|
-
--button-hover-box-shadow: 0 0 0 0.125em
|
|
54
|
+
--button-disabled-background: transparent;
|
|
55
|
+
--button-box-shadow: 0 0 0 0.125em transparent;
|
|
56
|
+
--button-hover-box-shadow: 0 0 0 0.125em transparent;
|
|
57
57
|
--button-focus-box-shadow: 0 0 0 0.125em hsl(from var(--#{$main}) h s l / 20%);
|
|
58
58
|
--button-active-box-shadow: 0 0 0 0.125em hsl(from var(--#{$main}) h s l / 20%);
|
|
59
|
-
--button-disabled-box-shadow: 0 0 0 0.125em
|
|
59
|
+
--button-disabled-box-shadow: 0 0 0 0.125em transparent;
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
@mixin button-variant-link($color) {
|
package/sass/modules/_form.scss
CHANGED
|
@@ -190,8 +190,7 @@ output,
|
|
|
190
190
|
select,
|
|
191
191
|
progress,
|
|
192
192
|
.form__span,
|
|
193
|
-
.
|
|
194
|
-
.input__editor {
|
|
193
|
+
.form__input {
|
|
195
194
|
@extend %input;
|
|
196
195
|
}
|
|
197
196
|
|
|
@@ -239,11 +238,11 @@ progress,
|
|
|
239
238
|
}
|
|
240
239
|
|
|
241
240
|
.form__span {
|
|
242
|
-
--input-background: color-mix(in oklab, var(--body-color), #fff
|
|
243
|
-
--input-hover-background: color-mix(in oklab, var(--body-color), #fff
|
|
244
|
-
--input-focus-background: color-mix(in oklab, var(--body-color), #fff
|
|
245
|
-
--input-active-background: color-mix(in oklab, var(--body-color), #fff
|
|
246
|
-
--input-disabled-background: color-mix(in oklab, var(--body-color), #fff
|
|
241
|
+
--input-background: color-mix(in oklab, var(--body-color), #fff 85%);
|
|
242
|
+
--input-hover-background: color-mix(in oklab, var(--body-color), #fff 85%);
|
|
243
|
+
--input-focus-background: color-mix(in oklab, var(--body-color), #fff 85%);
|
|
244
|
+
--input-active-background: color-mix(in oklab, var(--body-color), #fff 85%);
|
|
245
|
+
--input-disabled-background: color-mix(in oklab, var(--body-color), #fff 85%);
|
|
247
246
|
--input-border-color: var(--border-color-main);
|
|
248
247
|
--input-hover-border-color: var(--border-color-main);
|
|
249
248
|
--input-focus-border-color: var(--border-color-main);
|