claritas-web-framework 8.0.15 → 8.0.17

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,7 +1,6 @@
1
1
  {
2
2
  "name": "claritas-web-framework",
3
- "version": "8.0.15",
4
- "updated": "04/08/2023",
3
+ "version": "8.0.17",
5
4
  "description": "The CSS framework built for Claritas front end.",
6
5
  "main": "index.js",
7
6
  "scripts": {
@@ -122,11 +122,11 @@ $breakpoints: (
122
122
  ) !default;
123
123
 
124
124
  $container-max-widths: (
125
- "mobile": 576px,
126
- "tablet": 768px,
127
- "desktop": 1024px,
128
- "widescreen": 1216px,
129
- "fullhd": 1408px
125
+ "mobile": 516px,
126
+ "tablet": 708px,
127
+ "desktop": 964px,
128
+ "widescreen": 1156px,
129
+ "fullhd": 1348px
130
130
  ) !default;
131
131
 
132
132
  $grid-columns: 12 !default;
@@ -3,11 +3,16 @@
3
3
  @use "./../mixins/list" as *;
4
4
 
5
5
  .breadcrumbs {
6
+ --breadcrumb-color: var(--medium);
7
+ --breadcrumb-hover-color: hsl(
8
+ var(--medium-h) var(--medium-s) calc(var(--medium-l) - #{$link-shade-percentage}) / 100%
9
+ );
10
+
6
11
  @include make-list-unsyled;
7
12
 
8
13
  display: flex;
9
14
  flex-wrap: wrap;
10
- color: var(--medium);
15
+ color: var(--breadcrumb-color);
11
16
 
12
17
  & li {
13
18
  position: relative;
@@ -31,10 +36,10 @@
31
36
  }
32
37
 
33
38
  & a {
34
- color: var(--medium);
39
+ color: var(--breadcrumb-color);
35
40
 
36
41
  &:hover {
37
- color: hsl(var(--medium-h) var(--medium-s) calc(var(--medium-l) - #{$link-shade-percentage}) / 100%);
42
+ color: (--breadcrumb-hover-color);
38
43
  }
39
44
  }
40
45
  }