claritas-web-framework 8.5.7 → 8.5.8
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 +3 -3
- package/sass/_reboot.scss +0 -1
- package/sass/_variables.scss +0 -4
- package/sass/modules/_button.scss +0 -2
- package/sass/modules/_form.scss +0 -2
- package/sass/modules/_nav.scss +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claritas-web-framework",
|
|
3
|
-
"version": "8.5.
|
|
3
|
+
"version": "8.5.8",
|
|
4
4
|
"description": "The CSS framework built for Claritas front end.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -23,11 +23,11 @@
|
|
|
23
23
|
"sass-loader": "^16.0.5",
|
|
24
24
|
"webpack": "^5.99.9",
|
|
25
25
|
"webpack-cli": "^6.0.1",
|
|
26
|
-
"webpack-dev-server": "^5.2.
|
|
26
|
+
"webpack-dev-server": "^5.2.2"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"modern-normalize": "^3.0.1",
|
|
30
30
|
"rfs": "^10.0.0",
|
|
31
|
-
"sass": "^1.89.
|
|
31
|
+
"sass": "^1.89.1"
|
|
32
32
|
}
|
|
33
33
|
}
|
package/sass/_reboot.scss
CHANGED
package/sass/_variables.scss
CHANGED
|
@@ -207,7 +207,6 @@ $text-wraps: (normal, nowrap) !default;
|
|
|
207
207
|
$font-styles: (italic, oblique, normal) !default;
|
|
208
208
|
|
|
209
209
|
/* -------------------------------- headings -------------------------------- */
|
|
210
|
-
$headings-font-family: null !default;
|
|
211
210
|
$headings-font-style: null !default;
|
|
212
211
|
$headings-font-weight: $font-weight-bold !default;
|
|
213
212
|
$headings-line-height: 1.2 !default;
|
|
@@ -322,7 +321,6 @@ $label-color: $body-color !default;
|
|
|
322
321
|
$input-button-font-size: $font-size-base !default;
|
|
323
322
|
$input-button-large-font-size: $font-size-4 !default;
|
|
324
323
|
$input-button-small-font-size: $font-size-small !default;
|
|
325
|
-
$input-button-font-family: $font-family-sans-serif !default;
|
|
326
324
|
$input-button-line-height: $line-height-base !default;
|
|
327
325
|
$input-button-padding-y: calc($spacer * 0.375) !default;
|
|
328
326
|
$input-button-padding-x: calc($spacer * 0.75) !default;
|
|
@@ -336,7 +334,6 @@ $input-button-small-border-radius: $border-radius-small !default;
|
|
|
336
334
|
$input-button-round-border-radius: $border-radius-round !default;
|
|
337
335
|
|
|
338
336
|
// Input
|
|
339
|
-
$input-font-family: $input-button-font-family !default;
|
|
340
337
|
$input-font-weight: $font-weight-normal !default;
|
|
341
338
|
$input-font-size: $input-button-font-size !default;
|
|
342
339
|
$input-large-font-size: $input-button-large-font-size !default;
|
|
@@ -355,7 +352,6 @@ $input-small-border-radius: $input-button-small-border-radius !default;
|
|
|
355
352
|
$input-round-border-radius: $input-button-round-border-radius !default;
|
|
356
353
|
|
|
357
354
|
// Button
|
|
358
|
-
$button-font-family: $input-button-font-family !default;
|
|
359
355
|
$button-font-weight: $font-weight-normal !default;
|
|
360
356
|
$button-font-size: $input-button-font-size !default;
|
|
361
357
|
$button-large-font-size: $input-button-large-font-size !default;
|
|
@@ -38,7 +38,6 @@
|
|
|
38
38
|
--button-small-border-radius: #{$button-small-border-radius};
|
|
39
39
|
--button-large-border-radius: #{$button-large-border-radius};
|
|
40
40
|
--button-round-border-radius: #{$button-round-border-radius};
|
|
41
|
-
--button-font-family: #{$button-font-family};
|
|
42
41
|
--button-font-weight: #{$button-font-weight};
|
|
43
42
|
--button-line-height: #{$button-line-height};
|
|
44
43
|
--button-text-decoration: none;
|
|
@@ -55,7 +54,6 @@
|
|
|
55
54
|
border: var(--button-border-width) var(--button-border-style) var(--button-border-color);
|
|
56
55
|
box-shadow: var(--button-box-shadow);
|
|
57
56
|
color: var(--button-color);
|
|
58
|
-
font-family: var(--button-font-family);
|
|
59
57
|
font-weight: var(--button-font-weight);
|
|
60
58
|
line-height: var(--button-line-height);
|
|
61
59
|
padding: var(--button-padding-y) var(--button-padding-x);
|
package/sass/modules/_form.scss
CHANGED
|
@@ -56,7 +56,6 @@
|
|
|
56
56
|
--input-small-border-radius: #{$input-small-border-radius};
|
|
57
57
|
--input-large-border-radius: #{$input-large-border-radius};
|
|
58
58
|
--input-round-border-radius: #{$input-round-border-radius};
|
|
59
|
-
--input-font-family: #{$input-font-family};
|
|
60
59
|
--input-font-weight: #{$input-font-weight};
|
|
61
60
|
--input-line-height: #{$input-line-height};
|
|
62
61
|
--input-white-space: #{$input-white-space};
|
|
@@ -73,7 +72,6 @@
|
|
|
73
72
|
box-shadow: var(--input-box-shadow);
|
|
74
73
|
padding: var(--input-padding-y) var(--input-padding-x);
|
|
75
74
|
border-radius: var(--input-border-radius);
|
|
76
|
-
font-family: var(--input-font-family);
|
|
77
75
|
font-weight: var(--input-font-weight);
|
|
78
76
|
line-height: var(--input-line-height);
|
|
79
77
|
white-space: var(--input-white-space);
|