igniteui-theming 6.0.0-beta.16 → 6.0.0-beta.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 +1 -1
- package/sass/themes/schemas/components/dark/_slider.scss +5 -80
- package/sass/themes/schemas/components/dark/_splitter.scss +4 -25
- package/sass/themes/schemas/components/light/_calendar.scss +4 -4
- package/sass/themes/schemas/components/light/_slider.scss +34 -137
- package/sass/themes/schemas/components/light/_splitter.scss +6 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-theming",
|
|
3
|
-
"version": "6.0.0-beta.
|
|
3
|
+
"version": "6.0.0-beta.17",
|
|
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": {
|
|
@@ -22,7 +22,6 @@ $dark-material-slider: $material-slider;
|
|
|
22
22
|
/// @prop {Map} track-color [color: ('gray', 600)] - The color of the track.
|
|
23
23
|
/// @prop {Map} track-hover-color [color: ('primary', 300)] - The color of the track on hover.
|
|
24
24
|
/// @prop {Map} thumb-border-color [color: ('gray', 400)] - The thumb border color.
|
|
25
|
-
/// @prop {Map} thumb-border-hover-color [color: ('gray', 400)] - The thumb border color.
|
|
26
25
|
/// @prop {Map} thumb-focus-color [color: ('primary', 100)] - The focus outline color of the thumb.
|
|
27
26
|
/// @prop {Map} thumb-disabled-border-color [color: ('gray', 200)] - The thumb border color when it's disabled.
|
|
28
27
|
/// @prop {Map} disabled-base-track-color [color: ('gray', 100)] - The base background color of the track when is disabled.
|
|
@@ -61,12 +60,6 @@ $dark-fluent-slider: extend(
|
|
|
61
60
|
400,
|
|
62
61
|
),
|
|
63
62
|
),
|
|
64
|
-
thumb-border-hover-color: (
|
|
65
|
-
color: (
|
|
66
|
-
'gray',
|
|
67
|
-
400,
|
|
68
|
-
),
|
|
69
|
-
),
|
|
70
63
|
thumb-focus-color: (
|
|
71
64
|
color: (
|
|
72
65
|
'primary',
|
|
@@ -121,90 +114,22 @@ $dark-bootstrap-slider: extend(
|
|
|
121
114
|
|
|
122
115
|
/// Generates a dark indigo slider schema.
|
|
123
116
|
/// @type {Map}
|
|
124
|
-
/// @prop {Map} track-
|
|
125
|
-
/// @prop {Map} base-track-color [
|
|
126
|
-
/// @prop {Map} base-track-hover-color [contrast-color: ('gray', 50, 0.4)] - The base background color of the track on hover.
|
|
127
|
-
/// @prop {Map} track-color [color: ('primary', 400)] - The color of the track.
|
|
128
|
-
/// @prop {Map} track-hover-color [color: ('primary', 300)] - The color of the track on hover.
|
|
129
|
-
/// @prop {Map} thumb-color [color: 'surface'] - The color of the thumb.
|
|
130
|
-
/// @prop {Map} thumb-border-color [color: ('primary', 400)] - The thumb border color.
|
|
131
|
-
/// @prop {Map} thumb-border-hover-color [color: ('primary', 300)] - The thumb border color when hovered.
|
|
132
|
-
/// @prop {Map} disabled-thumb-color [color: 'surface'] - The thumb color when its disabled.
|
|
133
|
-
/// @prop {Map} thumb-disabled-border-color [color: ('primary', 800)] - The thumb border color when it's disabled.
|
|
134
|
-
/// @prop {Map} disabled-base-track-color [contrast-color: ('gray', 50, 0.15)] - The base background color of the track when is disabled.
|
|
135
|
-
/// @prop {Map} disabled-fill-track-color [color: ('primary', 800)] - The background color of the fill track when is disabled.
|
|
117
|
+
/// @prop {Map} base-track-color [color: ('gray', 200)] - The base background color of the track.
|
|
118
|
+
/// @prop {Map} base-track-hover-color [color: ('gray', 400)] - The base background color of the track on hover.
|
|
136
119
|
/// @requires $indigo-slider
|
|
137
120
|
$dark-indigo-slider: extend(
|
|
138
121
|
$indigo-slider,
|
|
139
122
|
(
|
|
140
|
-
track-step-color: (
|
|
141
|
-
contrast-color: (
|
|
142
|
-
'gray',
|
|
143
|
-
50,
|
|
144
|
-
0.3,
|
|
145
|
-
),
|
|
146
|
-
),
|
|
147
123
|
base-track-color: (
|
|
148
|
-
|
|
124
|
+
color: (
|
|
149
125
|
'gray',
|
|
150
|
-
|
|
151
|
-
0.3,
|
|
126
|
+
200,
|
|
152
127
|
),
|
|
153
128
|
),
|
|
154
129
|
base-track-hover-color: (
|
|
155
|
-
contrast-color: (
|
|
156
|
-
'gray',
|
|
157
|
-
50,
|
|
158
|
-
0.4,
|
|
159
|
-
),
|
|
160
|
-
),
|
|
161
|
-
track-color: (
|
|
162
|
-
color: (
|
|
163
|
-
'primary',
|
|
164
|
-
400,
|
|
165
|
-
),
|
|
166
|
-
),
|
|
167
|
-
track-hover-color: (
|
|
168
|
-
color: (
|
|
169
|
-
'primary',
|
|
170
|
-
300,
|
|
171
|
-
),
|
|
172
|
-
),
|
|
173
|
-
thumb-color: (
|
|
174
|
-
color: 'surface',
|
|
175
|
-
),
|
|
176
|
-
thumb-border-color: (
|
|
177
130
|
color: (
|
|
178
|
-
'primary',
|
|
179
|
-
400,
|
|
180
|
-
),
|
|
181
|
-
),
|
|
182
|
-
thumb-border-hover-color: (
|
|
183
|
-
color: (
|
|
184
|
-
'primary',
|
|
185
|
-
300,
|
|
186
|
-
),
|
|
187
|
-
),
|
|
188
|
-
disabled-thumb-color: (
|
|
189
|
-
color: 'surface',
|
|
190
|
-
),
|
|
191
|
-
thumb-disabled-border-color: (
|
|
192
|
-
color: (
|
|
193
|
-
'primary',
|
|
194
|
-
800,
|
|
195
|
-
),
|
|
196
|
-
),
|
|
197
|
-
disabled-base-track-color: (
|
|
198
|
-
contrast-color: (
|
|
199
131
|
'gray',
|
|
200
|
-
|
|
201
|
-
0.15,
|
|
202
|
-
),
|
|
203
|
-
),
|
|
204
|
-
disabled-fill-track-color: (
|
|
205
|
-
color: (
|
|
206
|
-
'primary',
|
|
207
|
-
800,
|
|
132
|
+
400,
|
|
208
133
|
),
|
|
209
134
|
),
|
|
210
135
|
)
|
|
@@ -51,39 +51,18 @@ $dark-bootstrap-splitter: $bootstrap-splitter;
|
|
|
51
51
|
|
|
52
52
|
/// Generates a dark indigo splitter schema.
|
|
53
53
|
/// @type {Map}
|
|
54
|
-
/// @prop {Map}
|
|
55
|
-
/// @prop {Map}
|
|
56
|
-
/// @prop {Map} handle-color [color: ('gray', 600)] - The color for the bar drag handle.
|
|
57
|
-
/// @prop {Map} expander-color [color: ('gray', 600)] - The color for the bar drag handle.
|
|
54
|
+
/// @prop {Map} handle-color [color: 'surface'] - The color for the bar drag handle.
|
|
55
|
+
/// @prop {Map} expander-color [color: 'surface'] - The color for the bar drag handle.
|
|
58
56
|
/// @requires $indigo-splitter
|
|
59
57
|
$dark-indigo-splitter: extend(
|
|
60
58
|
$indigo-splitter,
|
|
61
59
|
(
|
|
62
|
-
bar-color: (
|
|
63
|
-
color: (
|
|
64
|
-
'gray',
|
|
65
|
-
200,
|
|
66
|
-
),
|
|
67
|
-
),
|
|
68
|
-
|
|
69
|
-
focus-color: (
|
|
70
|
-
color: (
|
|
71
|
-
'gray',
|
|
72
|
-
300,
|
|
73
|
-
),
|
|
74
|
-
),
|
|
75
60
|
handle-color: (
|
|
76
|
-
color:
|
|
77
|
-
'gray',
|
|
78
|
-
600,
|
|
79
|
-
),
|
|
61
|
+
color: 'surface',
|
|
80
62
|
),
|
|
81
63
|
|
|
82
64
|
expander-color: (
|
|
83
|
-
color:
|
|
84
|
-
'gray',
|
|
85
|
-
600,
|
|
86
|
-
),
|
|
65
|
+
color: 'surface',
|
|
87
66
|
),
|
|
88
67
|
)
|
|
89
68
|
);
|
|
@@ -60,7 +60,7 @@
|
|
|
60
60
|
/// @prop {Color} date-selected-focus-border-color [transparent] - The :focus border color of the selected date.
|
|
61
61
|
/// @prop {Color} date-range-border-color [transparent] - The border color of range selection.
|
|
62
62
|
/// @prop {Map} date-range-preview-border-color [color: ('gray', 300)] - The border color of the range selection in preview state(visible before selecting the end of the range).
|
|
63
|
-
/// @prop {Map} date-disabled-foreground [color: ('gray',
|
|
63
|
+
/// @prop {Map} date-disabled-foreground [color: ('gray', 500, .5)] - The foreground color of disabled dates.
|
|
64
64
|
/// @prop {Map} date-disabled-range-foreground [color: ('gray', 800, .38)] - The foreground color of disabled dates in range selection.
|
|
65
65
|
/// @prop {List} border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for calendar.
|
|
66
66
|
/// @prop {List} date-border-radius [(rem(20px), rem(0), rem(20px))] - The border radius used for the date.
|
|
@@ -343,14 +343,14 @@ $light-calendar: (
|
|
|
343
343
|
date-disabled-foreground: (
|
|
344
344
|
color: (
|
|
345
345
|
'gray',
|
|
346
|
-
|
|
347
|
-
0.
|
|
346
|
+
500,
|
|
347
|
+
0.5,
|
|
348
348
|
),
|
|
349
349
|
),
|
|
350
350
|
date-disabled-range-foreground: (
|
|
351
351
|
color: (
|
|
352
352
|
'gray',
|
|
353
|
-
|
|
353
|
+
900,
|
|
354
354
|
0.38,
|
|
355
355
|
),
|
|
356
356
|
),
|
|
@@ -14,6 +14,9 @@
|
|
|
14
14
|
/// @prop {Map} track-color [color: ('secondary', 500)] - The color of the track.
|
|
15
15
|
/// @prop {Color} track-step-color [white] - The color of the track steps.
|
|
16
16
|
/// @prop {Number} track-step-size [rem(3px)] - The size of the track steps.
|
|
17
|
+
/// @prop {Map} thumb-color [color: ('secondary', 500)] - The color of the thumb.
|
|
18
|
+
/// @prop {Map} thumb-border-color [color: ('secondary', 500)] - The thumb border color.
|
|
19
|
+
/// @prop {Map} thumb-border-focus-color [color: ('secondary', 500)] - The thumb border color when focused.
|
|
17
20
|
/// @prop {Map} thumb-disabled-border-color [color: ('gray', 400)] - The thumb border color when it's disabled.
|
|
18
21
|
/// @prop {Map} label-background-color [color: ('gray', 700)] - The background color of the bubble label.
|
|
19
22
|
/// @prop {Map} label-text-color [contrast-color: ('gray', 700)] - The text color of the bubble label.
|
|
@@ -28,6 +31,24 @@ $light-slider: (
|
|
|
28
31
|
),
|
|
29
32
|
track-step-color: white,
|
|
30
33
|
track-step-size: rem(3px),
|
|
34
|
+
thumb-color: (
|
|
35
|
+
color: (
|
|
36
|
+
'secondary',
|
|
37
|
+
500,
|
|
38
|
+
),
|
|
39
|
+
),
|
|
40
|
+
thumb-border-color: (
|
|
41
|
+
color: (
|
|
42
|
+
'secondary',
|
|
43
|
+
500,
|
|
44
|
+
),
|
|
45
|
+
),
|
|
46
|
+
thumb-border-focus-color: (
|
|
47
|
+
color: (
|
|
48
|
+
'secondary',
|
|
49
|
+
500,
|
|
50
|
+
),
|
|
51
|
+
),
|
|
31
52
|
thumb-disabled-border-color: (
|
|
32
53
|
color: (
|
|
33
54
|
'gray',
|
|
@@ -62,10 +83,6 @@ $light-slider: (
|
|
|
62
83
|
|
|
63
84
|
/// Generates a material slider schema.
|
|
64
85
|
/// @type {Map}
|
|
65
|
-
/// @prop {Map} thumb-color [color: ('secondary', 500)] - The color of the thumb.
|
|
66
|
-
/// @prop {Map} thumb-border-color [color: ('secondary', 500)] - The thumb border color.
|
|
67
|
-
/// @prop {Map} thumb-border-hover-color [color: ('secondary', 500)] - The thumb border color when hovered.
|
|
68
|
-
/// @prop {Map} thumb-border-focus-color [color: ('secondary', 500)] - The thumb border color when focused.
|
|
69
86
|
/// @prop {Color} thumb-focus-color [transparent] - The focus outline color of the thumb.
|
|
70
87
|
/// @prop {Map} track-step-color [color: ('secondary', 200)] - The color of the track steps.
|
|
71
88
|
/// @prop {Map} track-hover-color [color: ('secondary', 400)] - The color of the track on hover.
|
|
@@ -78,30 +95,6 @@ $light-slider: (
|
|
|
78
95
|
$material-slider: extend(
|
|
79
96
|
$light-slider,
|
|
80
97
|
(
|
|
81
|
-
thumb-color: (
|
|
82
|
-
color: (
|
|
83
|
-
'secondary',
|
|
84
|
-
500,
|
|
85
|
-
),
|
|
86
|
-
),
|
|
87
|
-
thumb-border-color: (
|
|
88
|
-
color: (
|
|
89
|
-
'secondary',
|
|
90
|
-
500,
|
|
91
|
-
),
|
|
92
|
-
),
|
|
93
|
-
thumb-border-hover-color: (
|
|
94
|
-
color: (
|
|
95
|
-
'secondary',
|
|
96
|
-
500,
|
|
97
|
-
),
|
|
98
|
-
),
|
|
99
|
-
thumb-border-focus-color: (
|
|
100
|
-
color: (
|
|
101
|
-
'secondary',
|
|
102
|
-
500,
|
|
103
|
-
),
|
|
104
|
-
),
|
|
105
98
|
track-step-color: (
|
|
106
99
|
color: (
|
|
107
100
|
'secondary',
|
|
@@ -156,7 +149,6 @@ $material-slider: extend(
|
|
|
156
149
|
/// @prop {Map} track-hover-color [color: ('primary', 500)] - The color of the track on hover.
|
|
157
150
|
/// @prop {Map} thumb-color [color: ('surface', 500)] - The color of the thumb.
|
|
158
151
|
/// @prop {Map} thumb-border-color [color: ('gray', 700)] - The thumb border color.
|
|
159
|
-
/// @prop {Map} thumb-border-hover-color [color: ('gray', 700)] - The thumb border color when hovered.
|
|
160
152
|
/// @prop {Map} thumb-border-focus-color [color: ('gray', 700)] - The thumb border color when focused.
|
|
161
153
|
/// @prop {Map} thumb-focus-color [color: ('primary', 700)] - The focus outline color of the thumb.
|
|
162
154
|
/// @prop {Map} disabled-thumb-color [color: ('surface', 500)] - The thumb color when its disabled.
|
|
@@ -193,12 +185,6 @@ $fluent-slider: extend(
|
|
|
193
185
|
700,
|
|
194
186
|
),
|
|
195
187
|
),
|
|
196
|
-
thumb-border-hover-color: (
|
|
197
|
-
color: (
|
|
198
|
-
'gray',
|
|
199
|
-
700,
|
|
200
|
-
),
|
|
201
|
-
),
|
|
202
188
|
thumb-border-focus-color: (
|
|
203
189
|
color: (
|
|
204
190
|
'gray',
|
|
@@ -256,7 +242,6 @@ $fluent-slider: extend(
|
|
|
256
242
|
/// @prop {Map} base-track-hover-color [color: ('secondary', 500, .24)] - The base background color of the track on hover.
|
|
257
243
|
/// @prop {Map} thumb-color [color: ('primary', 500)] - The color of the thumb.
|
|
258
244
|
/// @prop {Map} thumb-border-color [color: ('primary', 500)] - The thumb border color.
|
|
259
|
-
/// @prop {Map} thumb-border-hover-color [color: ('primary', 500)] - The thumb border color when hovered.
|
|
260
245
|
/// @prop {Map} thumb-border-focus-color [color: ('surface', 500)] - The thumb border color when focused.
|
|
261
246
|
/// @prop {Map} thumb-focus-color [color: ('primary', 200)] - The focus outline color of the thumb.
|
|
262
247
|
/// @prop {Map} disabled-thumb-color [color: ('gray', 400)] - The thumb color when its disabled.
|
|
@@ -290,12 +275,6 @@ $bootstrap-slider: extend(
|
|
|
290
275
|
500,
|
|
291
276
|
),
|
|
292
277
|
),
|
|
293
|
-
thumb-border-hover-color: (
|
|
294
|
-
color: (
|
|
295
|
-
'primary',
|
|
296
|
-
500,
|
|
297
|
-
),
|
|
298
|
-
),
|
|
299
278
|
thumb-border-focus-color: (
|
|
300
279
|
color: (
|
|
301
280
|
'surface',
|
|
@@ -319,139 +298,57 @@ $bootstrap-slider: extend(
|
|
|
319
298
|
|
|
320
299
|
/// Generates an indigo slider schema.
|
|
321
300
|
/// @type {Map}
|
|
322
|
-
/// @prop {Map} track-
|
|
323
|
-
/// @prop {Number} track-step-size [rem(2px)] - The size of the track steps.
|
|
301
|
+
/// @prop {Map} track-hover-color [color: ('primary', 400)] - The color of the track on hover.
|
|
324
302
|
/// @prop {Map} base-track-color [color: ('gray', 400)] - The base background color of the track.
|
|
325
303
|
/// @prop {Map} base-track-hover-color [color: ('gray', 500)] - The base background color of the track on hover.
|
|
326
|
-
/// @prop {Map}
|
|
327
|
-
/// @prop {Map}
|
|
328
|
-
/// @prop {Map}
|
|
329
|
-
/// @prop {Map}
|
|
330
|
-
/// @prop {Map} thumb-border-hover-color [color: ('primary', 400)] - The thumb border color when hovered.
|
|
331
|
-
/// @prop {Map} thumb-border-focus-color [color: ('primary', 500)] - The thumb border color when focused.
|
|
332
|
-
/// @prop {Map} thumb-focus-color [color: ('primary', 400, 0.5)] - The focus outline color of the thumb.
|
|
333
|
-
/// @prop {Map} tick-color [color: ('gray', 300)] - The background-color of the tick.
|
|
334
|
-
/// @prop {Map} tick-label-color [color: ('gray', 600)] - The color of the tick label.
|
|
335
|
-
/// @prop {Map} label-background-color [color: ('gray', 600)] - The background color of the bubble label.
|
|
336
|
-
/// @prop {Map} label-text-color [contrast-color: ('gray', 600)] - The text color of the bubble label.
|
|
337
|
-
/// @prop {Map} disabled-thumb-color [color: ('gray', 50)] - The thumb color when its disabled.
|
|
338
|
-
/// @prop {Map} thumb-disabled-border-color [color: ('primary', 50)] - The thumb border color when it's disabled.
|
|
339
|
-
/// @prop {Map} disabled-base-track-color [color: ('gray', 900, 0.15)] - The base background color of the track when is disabled.
|
|
340
|
-
/// @prop {Map} disabled-fill-track-color [color: ('primary', 50)] - The background color of the fill track when is disabled.
|
|
304
|
+
/// @prop {Map} thumb-focus-color [color: ('primary', 200)] - The focus outline color of the thumb.
|
|
305
|
+
/// @prop {Map} disabled-thumb-color [color: ('gray', 300)] - The thumb color when its disabled.
|
|
306
|
+
/// @prop {Map} disabled-base-track-color [color: ('gray', 300)] - The base background color of the track when is disabled.
|
|
307
|
+
/// @prop {Map} disabled-fill-track-color [color: ('gray', 300)] - The background color of the fill track when is disabled.
|
|
341
308
|
/// @requires {Map} $light-slider
|
|
342
309
|
$indigo-slider: extend(
|
|
343
310
|
$light-slider,
|
|
344
311
|
(
|
|
345
|
-
track-step-color: (
|
|
346
|
-
color: (
|
|
347
|
-
'gray',
|
|
348
|
-
900,
|
|
349
|
-
0.4,
|
|
350
|
-
),
|
|
351
|
-
),
|
|
352
|
-
track-step-size: rem(2px),
|
|
353
|
-
base-track-color: (
|
|
354
|
-
color: (
|
|
355
|
-
'gray',
|
|
356
|
-
400,
|
|
357
|
-
),
|
|
358
|
-
),
|
|
359
|
-
base-track-hover-color: (
|
|
360
|
-
color: (
|
|
361
|
-
'gray',
|
|
362
|
-
500,
|
|
363
|
-
),
|
|
364
|
-
),
|
|
365
|
-
track-color: (
|
|
366
|
-
color: (
|
|
367
|
-
'primary',
|
|
368
|
-
500,
|
|
369
|
-
),
|
|
370
|
-
),
|
|
371
312
|
track-hover-color: (
|
|
372
313
|
color: (
|
|
373
314
|
'primary',
|
|
374
315
|
400,
|
|
375
316
|
),
|
|
376
317
|
),
|
|
377
|
-
|
|
318
|
+
base-track-color: (
|
|
378
319
|
color: (
|
|
379
320
|
'gray',
|
|
380
|
-
50,
|
|
381
|
-
),
|
|
382
|
-
),
|
|
383
|
-
thumb-border-color: (
|
|
384
|
-
color: (
|
|
385
|
-
'primary',
|
|
386
|
-
500,
|
|
387
|
-
),
|
|
388
|
-
),
|
|
389
|
-
thumb-border-hover-color: (
|
|
390
|
-
color: (
|
|
391
|
-
'primary',
|
|
392
321
|
400,
|
|
393
322
|
),
|
|
394
323
|
),
|
|
395
|
-
|
|
324
|
+
base-track-hover-color: (
|
|
396
325
|
color: (
|
|
397
|
-
'
|
|
326
|
+
'gray',
|
|
398
327
|
500,
|
|
399
328
|
),
|
|
400
329
|
),
|
|
401
330
|
thumb-focus-color: (
|
|
402
331
|
color: (
|
|
403
332
|
'primary',
|
|
404
|
-
|
|
405
|
-
0.5,
|
|
406
|
-
),
|
|
407
|
-
),
|
|
408
|
-
tick-color: (
|
|
409
|
-
color: (
|
|
410
|
-
'gray',
|
|
411
|
-
300,
|
|
412
|
-
),
|
|
413
|
-
),
|
|
414
|
-
tick-label-color: (
|
|
415
|
-
color: (
|
|
416
|
-
'gray',
|
|
417
|
-
600,
|
|
418
|
-
),
|
|
419
|
-
),
|
|
420
|
-
label-background-color: (
|
|
421
|
-
color: (
|
|
422
|
-
'gray',
|
|
423
|
-
600,
|
|
424
|
-
),
|
|
425
|
-
),
|
|
426
|
-
label-text-color: (
|
|
427
|
-
contrast-color: (
|
|
428
|
-
'gray',
|
|
429
|
-
600,
|
|
333
|
+
200,
|
|
430
334
|
),
|
|
431
335
|
),
|
|
432
336
|
disabled-thumb-color: (
|
|
433
337
|
color: (
|
|
434
338
|
'gray',
|
|
435
|
-
|
|
436
|
-
),
|
|
437
|
-
),
|
|
438
|
-
thumb-disabled-border-color: (
|
|
439
|
-
color: (
|
|
440
|
-
'primary',
|
|
441
|
-
50,
|
|
339
|
+
300,
|
|
442
340
|
),
|
|
443
341
|
),
|
|
444
342
|
disabled-base-track-color: (
|
|
445
343
|
color: (
|
|
446
344
|
'gray',
|
|
447
|
-
|
|
448
|
-
0.15,
|
|
345
|
+
300,
|
|
449
346
|
),
|
|
450
347
|
),
|
|
451
348
|
disabled-fill-track-color: (
|
|
452
349
|
color: (
|
|
453
|
-
'
|
|
454
|
-
|
|
350
|
+
'gray',
|
|
351
|
+
300,
|
|
455
352
|
),
|
|
456
353
|
),
|
|
457
354
|
)
|
|
@@ -73,9 +73,9 @@ $bootstrap-splitter: $light-splitter;
|
|
|
73
73
|
/// Generates an indigo splitter schema.
|
|
74
74
|
/// @type {Map}
|
|
75
75
|
/// @prop {Map} bar-color [color: ('gray', 400)] - The background color of the bar.
|
|
76
|
-
/// @prop {Map}
|
|
77
|
-
/// @prop {Map}
|
|
78
|
-
/// @prop {Map}
|
|
76
|
+
/// @prop {Map} handle-color [color: ('surface')] - The color for the bar drag handle.
|
|
77
|
+
/// @prop {Map} expander-color [color: ('surface')] - The color for the bar drag handle.
|
|
78
|
+
/// @prop {Map} focus-color [color: ('primary', 500)] - The color used for focused splitter bar.
|
|
79
79
|
/// @requires {Map} $light-splitter
|
|
80
80
|
$indigo-splitter: extend(
|
|
81
81
|
$light-splitter,
|
|
@@ -89,22 +89,20 @@ $indigo-splitter: extend(
|
|
|
89
89
|
|
|
90
90
|
focus-color: (
|
|
91
91
|
color: (
|
|
92
|
-
'
|
|
92
|
+
'primary',
|
|
93
93
|
500,
|
|
94
94
|
),
|
|
95
95
|
),
|
|
96
96
|
|
|
97
97
|
handle-color: (
|
|
98
98
|
color: (
|
|
99
|
-
'
|
|
100
|
-
700,
|
|
99
|
+
'surface',
|
|
101
100
|
),
|
|
102
101
|
),
|
|
103
102
|
|
|
104
103
|
expander-color: (
|
|
105
104
|
color: (
|
|
106
|
-
'
|
|
107
|
-
700,
|
|
105
|
+
'surface',
|
|
108
106
|
),
|
|
109
107
|
),
|
|
110
108
|
)
|