vanilla-framework 3.6.0 → 3.6.1
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
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
"percy": "percy exec -- node snapshots.js",
|
|
46
46
|
"icon-svgs-to-mixins": "node scripts/convert-svgs-to-icon-mixins.js icons"
|
|
47
47
|
},
|
|
48
|
-
"version": "3.6.
|
|
48
|
+
"version": "3.6.1",
|
|
49
49
|
"files": [
|
|
50
50
|
"_index.scss",
|
|
51
51
|
"/scss",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"postcss": "8.4.14",
|
|
60
60
|
"postcss-cli": "9.1.0",
|
|
61
61
|
"postcss-scss": "4.0.4",
|
|
62
|
-
"sass": "1.
|
|
62
|
+
"sass": "1.53.0",
|
|
63
63
|
"yaml": "1.10.2"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|
|
@@ -67,8 +67,8 @@
|
|
|
67
67
|
"get-site-urls": "1.1.7",
|
|
68
68
|
"markdown-spellcheck": "1.3.1",
|
|
69
69
|
"parker": "0.0.10",
|
|
70
|
-
"prettier": "2.
|
|
71
|
-
"stylelint": "14.
|
|
70
|
+
"prettier": "2.7.1",
|
|
71
|
+
"stylelint": "14.9.1",
|
|
72
72
|
"stylelint-config-prettier": "9.0.3",
|
|
73
73
|
"stylelint-config-recommended-scss": "5.0.2",
|
|
74
74
|
"stylelint-order": "5.0.0",
|
|
@@ -269,10 +269,6 @@
|
|
|
269
269
|
@extend %side-navigation__list;
|
|
270
270
|
}
|
|
271
271
|
|
|
272
|
-
.p-side-navigation__item--title {
|
|
273
|
-
font-weight: $font-weight-bold;
|
|
274
|
-
}
|
|
275
|
-
|
|
276
272
|
%side-navigation__text {
|
|
277
273
|
@include vf-side-navigation-spacing-left;
|
|
278
274
|
|
|
@@ -280,6 +276,10 @@
|
|
|
280
276
|
padding-bottom: $spv--x-small;
|
|
281
277
|
padding-right: $sph--large;
|
|
282
278
|
padding-top: $spv--x-small;
|
|
279
|
+
|
|
280
|
+
.p-side-navigation__item--title > & {
|
|
281
|
+
font-weight: $font-weight-bold;
|
|
282
|
+
}
|
|
283
283
|
}
|
|
284
284
|
|
|
285
285
|
%side-navigation__heading {
|
|
@@ -330,6 +330,7 @@
|
|
|
330
330
|
}
|
|
331
331
|
|
|
332
332
|
// nested 2nd level of navigation
|
|
333
|
+
.p-side-navigation__item--title .p-side-navigation__item &,
|
|
333
334
|
.p-side-navigation__item .p-side-navigation__item & {
|
|
334
335
|
@include vf-side-navigation-spacing-left($multiplier: 2);
|
|
335
336
|
|
|
@@ -340,6 +341,7 @@
|
|
|
340
341
|
}
|
|
341
342
|
|
|
342
343
|
// nested 3rd level of navigation
|
|
344
|
+
.p-side-navigation__item--title .p-side-navigation__item .p-side-navigation__item &,
|
|
343
345
|
.p-side-navigation__item .p-side-navigation__item .p-side-navigation__item & {
|
|
344
346
|
@include vf-side-navigation-spacing-left($multiplier: 3);
|
|
345
347
|
|