@progressio_resources/gravity-design-system 4.0.25 → 4.0.26
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
|
@@ -351,7 +351,12 @@
|
|
|
351
351
|
|
|
352
352
|
// shadow
|
|
353
353
|
--shadow-primary: #{th.$shadow-primary-light};
|
|
354
|
+
|
|
354
355
|
// DONT REMOVE
|
|
356
|
+
--shadow-r: #{red(th.$shadow-primary-light)};
|
|
357
|
+
--shadow-g: #{green(th.$shadow-primary-light)};
|
|
358
|
+
--shadow-b: #{blue(th.$shadow-primary-light)};
|
|
359
|
+
|
|
355
360
|
--shadow-primary-rgba: #{to-rgb(th.$shadow-primary-light)};
|
|
356
361
|
--shadow-opacity: 0.22;
|
|
357
362
|
}
|
|
@@ -662,7 +667,7 @@
|
|
|
662
667
|
--bg-generic-avatar-initials-disabled: #{th.$bg-generic-avatar-initials-disabled-dark};
|
|
663
668
|
--cl-generic-avatar-initial-text-primary: #{th.$cl-generic-avatar-initials-text-primary-dark};
|
|
664
669
|
--cl-generic-avatar-initial-text-disabled: #{th.$cl-generic-avatar-initials-text-disabled-dark};
|
|
665
|
-
|
|
670
|
+
|
|
666
671
|
//chip
|
|
667
672
|
--cl-chip-disabled-state: #{th.$cl-chip-disabled-state-dark};
|
|
668
673
|
--cl-chip-active-primary: #{th.$cl-chip-active-primary-dark};
|
|
@@ -706,6 +711,10 @@
|
|
|
706
711
|
// shadow
|
|
707
712
|
--shadow-primary: #{th.$shadow-primary-dark};
|
|
708
713
|
// DONT REMOVE
|
|
714
|
+
--shadow-r: #{red(th.$shadow-primary-dark)};
|
|
715
|
+
--shadow-g: #{green(th.$shadow-primary-dark)};
|
|
716
|
+
--shadow-b: #{blue(th.$shadow-primary-dark)};
|
|
717
|
+
|
|
709
718
|
--shadow-primary-rgba: #{to-rgb(th.$shadow-primary-dark)};
|
|
710
719
|
--shadow-opacity: 1;
|
|
711
720
|
}
|
|
@@ -10,13 +10,13 @@ $elevations: (
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
.elevation-xs {
|
|
13
|
-
box-shadow: 0 1px 4px 0 rgba(var(--shadow-
|
|
13
|
+
box-shadow: 0 1px 4px 0 rgba(var(--shadow-r), var(--shadow-g), var(--shadow-b), var(--shadow-opacity));
|
|
14
14
|
}
|
|
15
15
|
|
|
16
16
|
.elevation-sm {
|
|
17
|
-
box-shadow: 0 4px 10px 0 rgba(var(--shadow-
|
|
17
|
+
box-shadow: 0 4px 10px 0 rgba(var(--shadow-r), var(--shadow-g), var(--shadow-b), var(--shadow-opacity));
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
.elevation-md {
|
|
21
|
-
box-shadow: 0 8px 35px 0 rgba(var(--shadow-
|
|
21
|
+
box-shadow: 0 8px 35px 0 rgba(var(--shadow-r), var(--shadow-g), var(--shadow-b), var(--shadow-opacity));
|
|
22
22
|
}
|