igniteui-theming 6.3.0 → 6.3.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
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
/// Generates a base light navbar schema.
|
|
12
12
|
/// @type {Map}
|
|
13
13
|
/// @prop {Map} background [color: ('primary', 500)] - The navbar background color.
|
|
14
|
-
/// @prop {
|
|
14
|
+
/// @prop {Color} border-color [transparent] - The navbar border color.
|
|
15
15
|
/// @prop {Map} text-color [contrast-color: ('primary', 500)] - The navbar text color.
|
|
16
16
|
/// @prop {Map} idle-icon-color [contrast-color: ('primary', 500)] - The navbar idle icon color.
|
|
17
17
|
/// @prop {Map} hover-icon-color [contrast-color: ('primary', 500)] - The navbar hover icon color.
|
|
@@ -26,12 +26,7 @@ $light-navbar: extend(
|
|
|
26
26
|
500,
|
|
27
27
|
),
|
|
28
28
|
),
|
|
29
|
-
border-color:
|
|
30
|
-
color: (
|
|
31
|
-
'primary',
|
|
32
|
-
500,
|
|
33
|
-
),
|
|
34
|
-
),
|
|
29
|
+
border-color: transparent,
|
|
35
30
|
text-color: (
|
|
36
31
|
contrast-color: (
|
|
37
32
|
'primary',
|
|
@@ -61,7 +56,6 @@ $material-navbar: $light-navbar;
|
|
|
61
56
|
/// Generates a fluent navbar schema.
|
|
62
57
|
/// @type {Map}
|
|
63
58
|
/// @prop {Map} background [color: 'surface'] - The navbar background color.
|
|
64
|
-
/// @prop {Map} border-color [color: 'surface'] - The navbar border color.
|
|
65
59
|
/// @prop {Map} text-color [color: ('gray', 900)] - The navbar text color.
|
|
66
60
|
/// @prop {Map} idle-icon-color [color: ('primary', 500)] - The navbar idle icon color.
|
|
67
61
|
/// @prop {Map} hover-icon-color [color: ('primary', 500)] - The navbar hover icon color.
|
|
@@ -72,9 +66,6 @@ $fluent-navbar: extend(
|
|
|
72
66
|
background: (
|
|
73
67
|
color: 'surface',
|
|
74
68
|
),
|
|
75
|
-
border-color: (
|
|
76
|
-
color: 'surface',
|
|
77
|
-
),
|
|
78
69
|
text-color: (
|
|
79
70
|
color: (
|
|
80
71
|
'gray',
|