claritas-web-framework 8.6.7 → 8.6.9
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.6.
|
|
3
|
+
"version": "8.6.9",
|
|
4
4
|
"description": "The CSS framework built for Claritas front end.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -15,18 +15,18 @@
|
|
|
15
15
|
"author": "David Brooks",
|
|
16
16
|
"license": "UNLICENSED",
|
|
17
17
|
"devDependencies": {
|
|
18
|
-
"css-loader": "^7.1.
|
|
18
|
+
"css-loader": "^7.1.4",
|
|
19
19
|
"find-unused-sass-variables": "^6.1.1",
|
|
20
20
|
"html-webpack-plugin": "^5.6.6",
|
|
21
|
-
"mini-css-extract-plugin": "^2.10.
|
|
22
|
-
"prettier": "^3.8.
|
|
23
|
-
"sass-loader": "^16.0.
|
|
24
|
-
"webpack": "^5.
|
|
25
|
-
"webpack-cli": "^
|
|
21
|
+
"mini-css-extract-plugin": "^2.10.2",
|
|
22
|
+
"prettier": "^3.8.3",
|
|
23
|
+
"sass-loader": "^16.0.7",
|
|
24
|
+
"webpack": "^5.106.2",
|
|
25
|
+
"webpack-cli": "^7.0.2",
|
|
26
26
|
"webpack-dev-server": "^5.2.3"
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"modern-normalize": "^3.0.1",
|
|
30
|
-
"sass": "^1.
|
|
30
|
+
"sass": "^1.99.0"
|
|
31
31
|
}
|
|
32
32
|
}
|
package/sass/modules/_nav.scss
CHANGED
|
@@ -3,8 +3,7 @@
|
|
|
3
3
|
@use "./../mixins/list" as *;
|
|
4
4
|
@use "./../mixins/colors" as *;
|
|
5
5
|
|
|
6
|
-
.nav
|
|
7
|
-
.nav > ul {
|
|
6
|
+
.nav {
|
|
8
7
|
display: flex;
|
|
9
8
|
flex-wrap: wrap;
|
|
10
9
|
list-style: none;
|
|
@@ -13,23 +12,6 @@
|
|
|
13
12
|
|
|
14
13
|
@include make-list-unstyled;
|
|
15
14
|
|
|
16
|
-
& ul {
|
|
17
|
-
@include make-list-unstyled;
|
|
18
|
-
|
|
19
|
-
margin: 0;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
& li {
|
|
23
|
-
margin: 0;
|
|
24
|
-
padding: 0;
|
|
25
|
-
|
|
26
|
-
& ul {
|
|
27
|
-
border-left: var(--nav-item-border-width) var(--nav-item-border-style) var(--nav-item-border-color);
|
|
28
|
-
margin: calc(var(--spacer) * 0.75);
|
|
29
|
-
padding-left: calc(var(--spacer) * 0.75);
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
|
|
33
15
|
& .nav__label,
|
|
34
16
|
& .nav__title,
|
|
35
17
|
& .nav__item {
|
|
@@ -121,8 +103,7 @@
|
|
|
121
103
|
}
|
|
122
104
|
}
|
|
123
105
|
|
|
124
|
-
&.nav--column
|
|
125
|
-
&.nav--column > ul {
|
|
106
|
+
&.nav--column {
|
|
126
107
|
flex-flow: column nowrap;
|
|
127
108
|
align-items: stretch;
|
|
128
109
|
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
--button-border-radius: 0;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
-
&:first-child {
|
|
28
|
+
&:first-child:not(:last-child) {
|
|
29
29
|
& * {
|
|
30
30
|
--input-border-radius: var(--border-radius-medium) 0 0 var(--border-radius-medium);
|
|
31
31
|
--input-small-border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
&:last-child {
|
|
44
|
+
&:last-child:not(:first-child) {
|
|
45
45
|
& * {
|
|
46
46
|
--input-border-radius: 0 var(--border-radius-medium) var(--border-radius-medium) 0;
|
|
47
47
|
--input-small-border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
|