igniteui-theming 1.4.3-beta.3 → 1.4.3-beta.5
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 +1 -1
- package/sass/themes/_index.scss +0 -1
- package/sass/themes/schemas/components/dark/_button.scss +42 -48
- package/sass/themes/schemas/components/dark/_combo.scss +1 -1
- package/sass/themes/schemas/components/dark/_select.scss +1 -1
- package/sass/themes/schemas/components/dark/_tabs.scss +1 -1
- package/sass/themes/schemas/components/light/_avatar.scss +14 -16
- package/sass/themes/schemas/components/light/_checkbox.scss +69 -71
- package/sass/themes/schemas/components/light/_tabs.scss +116 -118
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-theming",
|
|
3
|
-
"version": "1.4.3-beta.
|
|
3
|
+
"version": "1.4.3-beta.5",
|
|
4
4
|
"description": "A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
package/sass/themes/_index.scss
CHANGED
|
@@ -13,22 +13,20 @@
|
|
|
13
13
|
/// @prop {Map} disabled-background [color: ('gray', 100, .3)] - The disabled background color of the button.
|
|
14
14
|
/// @prop {Color} disabled-foreground [color: ('gray', 200)] - The disabled foreground color of the button.
|
|
15
15
|
/// @requires {Map} $material-base-button
|
|
16
|
-
$material-base-button-dark:
|
|
17
|
-
(
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
),
|
|
31
|
-
)
|
|
16
|
+
$material-base-button-dark: (
|
|
17
|
+
disabled-background: (
|
|
18
|
+
color: (
|
|
19
|
+
'gray',
|
|
20
|
+
100,
|
|
21
|
+
0.3,
|
|
22
|
+
),
|
|
23
|
+
),
|
|
24
|
+
disabled-foreground: (
|
|
25
|
+
color: (
|
|
26
|
+
'gray',
|
|
27
|
+
200,
|
|
28
|
+
),
|
|
29
|
+
),
|
|
32
30
|
);
|
|
33
31
|
|
|
34
32
|
/// @type {Map}
|
|
@@ -149,21 +147,19 @@ $dark-button: (
|
|
|
149
147
|
/// @requires {Map} $material-base-button
|
|
150
148
|
/// @prop {Map} disabled-background [color: ('primary', 50)] - The disabled background color of the button.
|
|
151
149
|
/// @prop {Map} disabled-foreground [color: ('primary', 100)] - The disabled foreground color of the button.
|
|
152
|
-
$fluent-base-button-dark:
|
|
153
|
-
(
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
),
|
|
166
|
-
)
|
|
150
|
+
$fluent-base-button-dark: (
|
|
151
|
+
disabled-background: (
|
|
152
|
+
color: (
|
|
153
|
+
'gray',
|
|
154
|
+
50,
|
|
155
|
+
),
|
|
156
|
+
),
|
|
157
|
+
disabled-foreground: (
|
|
158
|
+
color: (
|
|
159
|
+
'gray',
|
|
160
|
+
100,
|
|
161
|
+
),
|
|
162
|
+
),
|
|
167
163
|
);
|
|
168
164
|
|
|
169
165
|
/// @type {Map}
|
|
@@ -272,7 +268,7 @@ $dark-fluent-button: (
|
|
|
272
268
|
|
|
273
269
|
/// @type {Map}
|
|
274
270
|
/// @requires {Map} $bootstrap-base-button
|
|
275
|
-
$bootstrap-base-button-dark:
|
|
271
|
+
$bootstrap-base-button-dark: $bootstrap-base-button;
|
|
276
272
|
|
|
277
273
|
/// @type {Map}
|
|
278
274
|
/// @prop {Map} disabled-border-color [color: ('primary', 900)] - The disabled border color of the button.
|
|
@@ -315,22 +311,20 @@ $dark-bootstrap-button: (
|
|
|
315
311
|
/// @prop {Color} disabled-foreground [color: ('gray', 300)] - The disabled foreground color of the button.
|
|
316
312
|
/// @prop {Color} disabled-background [color: ('gray', 200, .1)] - The disabled background color of the button.
|
|
317
313
|
/// @requires {Map} $indigo-base-button
|
|
318
|
-
$indigo-base-button-dark:
|
|
319
|
-
(
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
),
|
|
333
|
-
)
|
|
314
|
+
$indigo-base-button-dark: (
|
|
315
|
+
disabled-foreground: (
|
|
316
|
+
color: (
|
|
317
|
+
'gray',
|
|
318
|
+
300,
|
|
319
|
+
),
|
|
320
|
+
),
|
|
321
|
+
disabled-background: (
|
|
322
|
+
color: (
|
|
323
|
+
'gray',
|
|
324
|
+
200,
|
|
325
|
+
0.1,
|
|
326
|
+
),
|
|
327
|
+
),
|
|
334
328
|
);
|
|
335
329
|
|
|
336
330
|
/// @type {Map}
|
|
@@ -23,7 +23,7 @@ $dark-fluent-combo: $fluent-combo;
|
|
|
23
23
|
/// Generates a dark bootstrap combo schema.
|
|
24
24
|
/// @type {Map}
|
|
25
25
|
/// @requires $bootstrap-combo
|
|
26
|
-
$dark-bootstrap-combo:
|
|
26
|
+
$dark-bootstrap-combo: $bootstrap-combo;
|
|
27
27
|
|
|
28
28
|
/// Generates a dark indigo combo schema.
|
|
29
29
|
/// @prop {Map} toggle-button-foreground [color: ('gray', 600)] - The combo toggle button foreground color.
|
|
@@ -23,7 +23,7 @@ $dark-fluent-select: $fluent-select;
|
|
|
23
23
|
/// Generates a dark bootstrap select schema.
|
|
24
24
|
/// @type {Map}
|
|
25
25
|
/// @requires $bootstrap-select
|
|
26
|
-
$dark-bootstrap-select:
|
|
26
|
+
$dark-bootstrap-select: $bootstrap-select;
|
|
27
27
|
|
|
28
28
|
/// Generates a dark indigo select schema.
|
|
29
29
|
/// @type {Map}
|
|
@@ -13,24 +13,22 @@
|
|
|
13
13
|
/// @prop {Map} color [color: ('gray', 800, .96)] - The text/icon color of the avatar.
|
|
14
14
|
/// @prop {Number} border-radius [0] - The border radius. Can be a fraction between 0 and 1, pixels, or percent.
|
|
15
15
|
/// @prop {Number} size - The size of the avatar.
|
|
16
|
-
$light-avatar:
|
|
17
|
-
(
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
0.54,
|
|
23
|
-
),
|
|
16
|
+
$light-avatar: (
|
|
17
|
+
background: (
|
|
18
|
+
color: (
|
|
19
|
+
'gray',
|
|
20
|
+
400,
|
|
21
|
+
0.54,
|
|
24
22
|
),
|
|
23
|
+
),
|
|
24
|
+
color: (
|
|
25
25
|
color: (
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
0.96,
|
|
30
|
-
),
|
|
26
|
+
'gray',
|
|
27
|
+
800,
|
|
28
|
+
0.96,
|
|
31
29
|
),
|
|
32
|
-
|
|
33
|
-
)
|
|
30
|
+
),
|
|
31
|
+
border-radius: rem(0),
|
|
34
32
|
);
|
|
35
33
|
|
|
36
34
|
/// Generates a fluent avatar schema.
|
|
@@ -66,4 +64,4 @@ $bootstrap-avatar: extend(
|
|
|
66
64
|
/// Generates an indigo avatar schema.
|
|
67
65
|
/// @type {Map}
|
|
68
66
|
/// @requires {Map} $light-avatar
|
|
69
|
-
$indigo-avatar:
|
|
67
|
+
$indigo-avatar: $light-avatar;
|
|
@@ -24,77 +24,75 @@
|
|
|
24
24
|
/// @prop {Map} error-color-hover [color: ('error', 500)] - The border and fill colors in invalid state on hover.
|
|
25
25
|
/// @prop {Number} border-radius [2px] - The border radius used for checkbox. Can be a fraction between 0 and 1, pixels, or percent.
|
|
26
26
|
/// @prop {Number} border-radius-ripple [24px] - The border radius used for checkbox ripple. Can be a fraction between 0 and 1, pixels, or percent.
|
|
27
|
-
$light-checkbox:
|
|
28
|
-
(
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
border-radius-ripple: rem(24px),
|
|
97
|
-
)
|
|
27
|
+
$light-checkbox: (
|
|
28
|
+
tick-color: (
|
|
29
|
+
color: (
|
|
30
|
+
'gray',
|
|
31
|
+
50,
|
|
32
|
+
),
|
|
33
|
+
),
|
|
34
|
+
tick-color-hover: (
|
|
35
|
+
color: (
|
|
36
|
+
'gray',
|
|
37
|
+
50,
|
|
38
|
+
),
|
|
39
|
+
),
|
|
40
|
+
label-color: (
|
|
41
|
+
color: (
|
|
42
|
+
'gray',
|
|
43
|
+
900,
|
|
44
|
+
),
|
|
45
|
+
),
|
|
46
|
+
empty-color: (
|
|
47
|
+
color: (
|
|
48
|
+
'gray',
|
|
49
|
+
600,
|
|
50
|
+
),
|
|
51
|
+
),
|
|
52
|
+
fill-color: (
|
|
53
|
+
color: (
|
|
54
|
+
'secondary',
|
|
55
|
+
500,
|
|
56
|
+
),
|
|
57
|
+
),
|
|
58
|
+
fill-color-hover: (
|
|
59
|
+
color: (
|
|
60
|
+
'secondary',
|
|
61
|
+
500,
|
|
62
|
+
),
|
|
63
|
+
),
|
|
64
|
+
disabled-color: (
|
|
65
|
+
color: (
|
|
66
|
+
'gray',
|
|
67
|
+
400,
|
|
68
|
+
),
|
|
69
|
+
),
|
|
70
|
+
disabled-indeterminate-color: (
|
|
71
|
+
color: (
|
|
72
|
+
'secondary',
|
|
73
|
+
100,
|
|
74
|
+
),
|
|
75
|
+
),
|
|
76
|
+
disabled-color-label: (
|
|
77
|
+
color: (
|
|
78
|
+
'gray',
|
|
79
|
+
500,
|
|
80
|
+
),
|
|
81
|
+
),
|
|
82
|
+
error-color: (
|
|
83
|
+
color: (
|
|
84
|
+
'error',
|
|
85
|
+
500,
|
|
86
|
+
),
|
|
87
|
+
),
|
|
88
|
+
error-color-hover: (
|
|
89
|
+
color: (
|
|
90
|
+
'error',
|
|
91
|
+
500,
|
|
92
|
+
),
|
|
93
|
+
),
|
|
94
|
+
border-radius: rem(2px),
|
|
95
|
+
border-radius-ripple: rem(24px),
|
|
98
96
|
);
|
|
99
97
|
|
|
100
98
|
/// Generates a fluent checkbox schema.
|
|
@@ -33,124 +33,122 @@
|
|
|
33
33
|
/// @prop {Map} tab-ripple-color [color: ('gray', 100)] - The color used for the button background.
|
|
34
34
|
/// @prop {Map} button-ripple-color [color: ('gray', 100)] - The color used for the button background on hover.
|
|
35
35
|
/// @prop {Number} border-radius [0] - The border radius used for tabs. Can be a fraction between 0 and 1, pixels, or percent.
|
|
36
|
-
$light-tabs:
|
|
37
|
-
(
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
border-radius: rem(0),
|
|
153
|
-
)
|
|
36
|
+
$light-tabs: (
|
|
37
|
+
item-text-color: (
|
|
38
|
+
color: (
|
|
39
|
+
'gray',
|
|
40
|
+
700,
|
|
41
|
+
),
|
|
42
|
+
),
|
|
43
|
+
item-background: (
|
|
44
|
+
color: (
|
|
45
|
+
'surface',
|
|
46
|
+
),
|
|
47
|
+
),
|
|
48
|
+
item-hover-background: (
|
|
49
|
+
color: (
|
|
50
|
+
'gray',
|
|
51
|
+
200,
|
|
52
|
+
),
|
|
53
|
+
),
|
|
54
|
+
item-hover-color: (
|
|
55
|
+
color: (
|
|
56
|
+
'gray',
|
|
57
|
+
700,
|
|
58
|
+
),
|
|
59
|
+
),
|
|
60
|
+
item-active-color: (
|
|
61
|
+
color: (
|
|
62
|
+
'primary',
|
|
63
|
+
500,
|
|
64
|
+
),
|
|
65
|
+
),
|
|
66
|
+
item-icon-color: (
|
|
67
|
+
color: (
|
|
68
|
+
'gray',
|
|
69
|
+
700,
|
|
70
|
+
),
|
|
71
|
+
),
|
|
72
|
+
item-active-icon-color: (
|
|
73
|
+
color: (
|
|
74
|
+
'primary',
|
|
75
|
+
500,
|
|
76
|
+
),
|
|
77
|
+
),
|
|
78
|
+
item-hover-icon-color: (
|
|
79
|
+
color: (
|
|
80
|
+
'gray',
|
|
81
|
+
700,
|
|
82
|
+
),
|
|
83
|
+
),
|
|
84
|
+
item-disabled-icon-color: (
|
|
85
|
+
color: (
|
|
86
|
+
'gray',
|
|
87
|
+
500,
|
|
88
|
+
),
|
|
89
|
+
),
|
|
90
|
+
item-active-background: (
|
|
91
|
+
color: (
|
|
92
|
+
'gray',
|
|
93
|
+
200,
|
|
94
|
+
),
|
|
95
|
+
),
|
|
96
|
+
item-disabled-color: (
|
|
97
|
+
color: (
|
|
98
|
+
'gray',
|
|
99
|
+
500,
|
|
100
|
+
),
|
|
101
|
+
),
|
|
102
|
+
indicator-color: (
|
|
103
|
+
color: (
|
|
104
|
+
'primary',
|
|
105
|
+
500,
|
|
106
|
+
),
|
|
107
|
+
),
|
|
108
|
+
button-color: (
|
|
109
|
+
color: (
|
|
110
|
+
'gray',
|
|
111
|
+
700,
|
|
112
|
+
),
|
|
113
|
+
),
|
|
114
|
+
button-background: (
|
|
115
|
+
color: (
|
|
116
|
+
'surface',
|
|
117
|
+
),
|
|
118
|
+
),
|
|
119
|
+
button-hover-background: (
|
|
120
|
+
color: (
|
|
121
|
+
'gray',
|
|
122
|
+
100,
|
|
123
|
+
),
|
|
124
|
+
),
|
|
125
|
+
button-hover-color: (
|
|
126
|
+
color: (
|
|
127
|
+
'gray',
|
|
128
|
+
900,
|
|
129
|
+
),
|
|
130
|
+
),
|
|
131
|
+
button-disabled-color: (
|
|
132
|
+
color: (
|
|
133
|
+
'gray',
|
|
134
|
+
500,
|
|
135
|
+
),
|
|
136
|
+
),
|
|
137
|
+
tab-ripple-color: (
|
|
138
|
+
color: (
|
|
139
|
+
'gray',
|
|
140
|
+
100,
|
|
141
|
+
),
|
|
142
|
+
),
|
|
143
|
+
button-ripple-color: (
|
|
144
|
+
color: (
|
|
145
|
+
'gray',
|
|
146
|
+
100,
|
|
147
|
+
),
|
|
148
|
+
),
|
|
149
|
+
border-color: transparent,
|
|
150
|
+
border-color--hover: transparent,
|
|
151
|
+
border-radius: rem(0),
|
|
154
152
|
);
|
|
155
153
|
|
|
156
154
|
/// Generates a fluent tabs schema.
|