@progress/kendo-theme-classic 5.8.2-dev.3 → 5.8.2-dev.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/dist/all.css +14 -8
- package/dist/all.scss +1191 -462
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/package.json +4 -3
- package/scss/_variables.scss +42 -42
- package/scss/action-buttons/_variables.scss +4 -4
- package/scss/action-sheet/_variables.scss +5 -5
- package/scss/appbar/_variables.scss +7 -7
- package/scss/avatar/_variables.scss +3 -3
- package/scss/badge/_variables.scss +8 -8
- package/scss/bottom-navigation/_variables.scss +6 -6
- package/scss/breadcrumb/_variables.scss +1 -1
- package/scss/button/_variables.scss +15 -15
- package/scss/calendar/_variables.scss +19 -19
- package/scss/captcha/_variables.scss +2 -2
- package/scss/card/_variables.scss +10 -10
- package/scss/chat/_variables.scss +3 -3
- package/scss/checkbox/_variables.scss +12 -12
- package/scss/chip/_variables.scss +22 -22
- package/scss/coloreditor/_variables.scss +4 -4
- package/scss/colorgradient/_variables.scss +9 -9
- package/scss/colorpalette/_variables.scss +1 -1
- package/scss/core/functions/_index.scss +3 -0
- package/scss/dataviz/_variables.scss +25 -25
- package/scss/drawer/_variables.scss +4 -4
- package/scss/dropdowntree/_variables.scss +2 -2
- package/scss/dropzone/_variables.scss +5 -5
- package/scss/editor/_variables.scss +1 -1
- package/scss/expansion-panel/_variables.scss +1 -1
- package/scss/fab/_variables.scss +9 -9
- package/scss/filemanager/_variables.scss +7 -7
- package/scss/filter/_variables.scss +2 -0
- package/scss/forms/_variables.scss +1 -1
- package/scss/gantt/_variables.scss +12 -12
- package/scss/grid/_variables.scss +9 -9
- package/scss/imageeditor/_variables.scss +3 -3
- package/scss/input/_variables.scss +12 -12
- package/scss/list/_variables.scss +25 -25
- package/scss/listgroup/_variables.scss +2 -2
- package/scss/listview/_variables.scss +5 -5
- package/scss/loader/_variables.scss +9 -9
- package/scss/mediaplayer/_variables.scss +2 -2
- package/scss/menu/_variables.scss +9 -9
- package/scss/notification/_variables.scss +1 -1
- package/scss/orgchart/_variables.scss +1 -1
- package/scss/pager/_variables.scss +5 -5
- package/scss/panelbar/_variables.scss +3 -3
- package/scss/pdf-viewer/_variables.scss +3 -3
- package/scss/pivotgrid/_variables.scss +14 -14
- package/scss/popup/_variables.scss +3 -3
- package/scss/progressbar/_variables.scss +2 -2
- package/scss/radio/_variables.scss +11 -11
- package/scss/rating/_variables.scss +2 -2
- package/scss/scheduler/_variables.scss +9 -9
- package/scss/scrollview/_variables.scss +6 -6
- package/scss/signature/_variables.scss +5 -5
- package/scss/slider/_variables.scss +6 -6
- package/scss/splitter/_variables.scss +1 -1
- package/scss/spreadsheet/_variables.scss +1 -1
- package/scss/stepper/_variables.scss +3 -3
- package/scss/switch/_variables.scss +7 -7
- package/scss/table/_variables.scss +6 -6
- package/scss/tabstrip/_variables.scss +3 -3
- package/scss/taskboard/_variables.scss +12 -12
- package/scss/tilelayout/_variables.scss +1 -1
- package/scss/timeline/_variables.scss +4 -4
- package/scss/timeselector/_variables.scss +3 -3
- package/scss/toolbar/_variables.scss +4 -2
- package/scss/tooltip/_variables.scss +6 -6
- package/scss/treeview/_variables.scss +8 -8
- package/scss/typography/_variables.scss +1 -1
- package/scss/upload/_variables.scss +5 -5
- package/scss/window/_variables.scss +7 -7
- package/scss/wizard/_variables.scss +1 -1
package/dist/all.scss
CHANGED
|
@@ -4,6 +4,724 @@
|
|
|
4
4
|
// #region @import "index.scss"; -> packages/classic/scss/index.scss
|
|
5
5
|
// #region @import "core/_index.scss"; -> packages/classic/scss/core/_index.scss
|
|
6
6
|
// #region @import "functions/_index.scss"; -> packages/classic/scss/core/functions/_index.scss
|
|
7
|
+
$wcag-min-contrast-ratio: 4.5 !default;
|
|
8
|
+
|
|
9
|
+
// #region @import "~@progress/kendo-theme-core/scss/functions/index.import.scss"; -> packages/classic/node_modules/@progress/kendo-theme-core/scss/functions/index.import.scss
|
|
10
|
+
// #region @import "_color.import.scss"; -> packages/classic/node_modules/@progress/kendo-theme-core/scss/functions/_color.import.scss
|
|
11
|
+
@function k-color-red( $color ) {
|
|
12
|
+
@return red( $color );
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
@function k-color-green( $color ) {
|
|
16
|
+
@return green( $color );
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@function k-color-blue( $color ) {
|
|
20
|
+
@return blue( $color );
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@function k-color-mix( $color1, $color2, $weight: 50% ) {
|
|
24
|
+
@return mix( $color1, $color2, $weight );
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
@function k-color-darken( $color, $amount) {
|
|
28
|
+
@return darken( $color, $amount );
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
@function k-color-lighten( $color, $amount) {
|
|
32
|
+
@return lighten( $color, $amount );
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
// #endregion
|
|
36
|
+
// #region @import "_color-contrast.import.scss"; -> packages/classic/node_modules/@progress/kendo-theme-core/scss/functions/_color-contrast.import.scss
|
|
37
|
+
// Adapted from https://gist.github.com/sgomes/ccc72f71137fe29039c92c0a9fe9b657
|
|
38
|
+
// Adapted from https://github.com/twbs/bootstrap/commit/03908ea37a55eaa44c12ce5694dddc1630c980b3
|
|
39
|
+
|
|
40
|
+
// Precomputed linear color channel values, for use in contrast calculations.
|
|
41
|
+
// See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
42
|
+
//
|
|
43
|
+
// Algorithm, for c in 0 to 255:
|
|
44
|
+
// f(c) {
|
|
45
|
+
// c = c / 255;
|
|
46
|
+
// return c < 0.03928 ? c / 12.92 : Math.pow((c + 0.055) / 1.055, 2.4);
|
|
47
|
+
// }
|
|
48
|
+
//
|
|
49
|
+
// This lookup table is needed since there is no `pow` in SASS.
|
|
50
|
+
// stylelint-disable-next-line scss/dollar-variable-default
|
|
51
|
+
$linear-channel-values: (
|
|
52
|
+
0
|
|
53
|
+
.0003035269835488375
|
|
54
|
+
.000607053967097675
|
|
55
|
+
.0009105809506465125
|
|
56
|
+
.00121410793419535
|
|
57
|
+
.0015176349177441874
|
|
58
|
+
.001821161901293025
|
|
59
|
+
.0021246888848418626
|
|
60
|
+
.0024282158683907
|
|
61
|
+
.0027317428519395373
|
|
62
|
+
.003035269835488375
|
|
63
|
+
.003346535763899161
|
|
64
|
+
.003676507324047436
|
|
65
|
+
.004024717018496307
|
|
66
|
+
.004391442037410293
|
|
67
|
+
.004776953480693729
|
|
68
|
+
.005181516702338386
|
|
69
|
+
.005605391624202723
|
|
70
|
+
.006048833022857054
|
|
71
|
+
.006512090792594475
|
|
72
|
+
.006995410187265387
|
|
73
|
+
.007499032043226175
|
|
74
|
+
.008023192985384994
|
|
75
|
+
.008568125618069307
|
|
76
|
+
.009134058702220787
|
|
77
|
+
.00972121732023785
|
|
78
|
+
.010329823029626936
|
|
79
|
+
.010960094006488246
|
|
80
|
+
.011612245179743885
|
|
81
|
+
.012286488356915872
|
|
82
|
+
.012983032342173012
|
|
83
|
+
.013702083047289686
|
|
84
|
+
.014443843596092545
|
|
85
|
+
.01520851442291271
|
|
86
|
+
.01599629336550963
|
|
87
|
+
.016807375752887384
|
|
88
|
+
.017641954488384078
|
|
89
|
+
.018500220128379697
|
|
90
|
+
.019382360956935723
|
|
91
|
+
.0202885630566524
|
|
92
|
+
.021219010376003555
|
|
93
|
+
.022173884793387385
|
|
94
|
+
.02315336617811041
|
|
95
|
+
.024157632448504756
|
|
96
|
+
.02518685962736163
|
|
97
|
+
.026241221894849898
|
|
98
|
+
.027320891639074894
|
|
99
|
+
.028426039504420793
|
|
100
|
+
.0295568344378088
|
|
101
|
+
.030713443732993635
|
|
102
|
+
.03189603307301153
|
|
103
|
+
.033104766570885055
|
|
104
|
+
.03433980680868217
|
|
105
|
+
.03560131487502034
|
|
106
|
+
.03688945040110004
|
|
107
|
+
.0382043715953465
|
|
108
|
+
.03954623527673284
|
|
109
|
+
.04091519690685319
|
|
110
|
+
.042311410620809675
|
|
111
|
+
.043735029256973465
|
|
112
|
+
.04518620438567554
|
|
113
|
+
.046665086336880095
|
|
114
|
+
.04817182422688942
|
|
115
|
+
.04970656598412723
|
|
116
|
+
.05126945837404324
|
|
117
|
+
.052860647023180246
|
|
118
|
+
.05448027644244237
|
|
119
|
+
.05612849004960009
|
|
120
|
+
.05780543019106723
|
|
121
|
+
.0595112381629812
|
|
122
|
+
.06124605423161761
|
|
123
|
+
.06301001765316767
|
|
124
|
+
.06480326669290577
|
|
125
|
+
.06662593864377289
|
|
126
|
+
.06847816984440017
|
|
127
|
+
.07036009569659588
|
|
128
|
+
.07227185068231748
|
|
129
|
+
.07421356838014963
|
|
130
|
+
.07618538148130785
|
|
131
|
+
.07818742180518633
|
|
132
|
+
.08021982031446832
|
|
133
|
+
.0822827071298148
|
|
134
|
+
.08437621154414882
|
|
135
|
+
.08650046203654976
|
|
136
|
+
.08865558628577294
|
|
137
|
+
.09084171118340768
|
|
138
|
+
.09305896284668745
|
|
139
|
+
.0953074666309647
|
|
140
|
+
.09758734714186246
|
|
141
|
+
.09989872824711389
|
|
142
|
+
.10224173308810132
|
|
143
|
+
.10461648409110419
|
|
144
|
+
.10702310297826761
|
|
145
|
+
.10946171077829933
|
|
146
|
+
.1119324278369056
|
|
147
|
+
.11443537382697373
|
|
148
|
+
.11697066775851084
|
|
149
|
+
.11953842798834562
|
|
150
|
+
.12213877222960187
|
|
151
|
+
.12477181756095049
|
|
152
|
+
.12743768043564743
|
|
153
|
+
.1301364766903643
|
|
154
|
+
.13286832155381798
|
|
155
|
+
.13563332965520566
|
|
156
|
+
.13843161503245183
|
|
157
|
+
.14126329114027164
|
|
158
|
+
.14412847085805777
|
|
159
|
+
.14702726649759498
|
|
160
|
+
.14995978981060856
|
|
161
|
+
.15292615199615017
|
|
162
|
+
.1559264637078274
|
|
163
|
+
.1589608350608804
|
|
164
|
+
.162029375639111
|
|
165
|
+
.1651321945016676
|
|
166
|
+
.16826940018969075
|
|
167
|
+
.1714411007328226
|
|
168
|
+
.17464740365558504
|
|
169
|
+
.17788841598362912
|
|
170
|
+
.18116424424986022
|
|
171
|
+
.184474994500441
|
|
172
|
+
.18782077230067787
|
|
173
|
+
.19120168274079138
|
|
174
|
+
.1946178304415758
|
|
175
|
+
.19806931955994886
|
|
176
|
+
.20155625379439707
|
|
177
|
+
.20507873639031693
|
|
178
|
+
.20863687014525575
|
|
179
|
+
.21223075741405523
|
|
180
|
+
.21586050011389926
|
|
181
|
+
.2195261997292692
|
|
182
|
+
.2232279573168085
|
|
183
|
+
.22696587351009836
|
|
184
|
+
.23074004852434915
|
|
185
|
+
.23455058216100522
|
|
186
|
+
.238397573812271
|
|
187
|
+
.24228112246555486
|
|
188
|
+
.24620132670783548
|
|
189
|
+
.25015828472995344
|
|
190
|
+
.25415209433082675
|
|
191
|
+
.2581828529215958
|
|
192
|
+
.26225065752969623
|
|
193
|
+
.26635560480286247
|
|
194
|
+
.2704977910130658
|
|
195
|
+
.27467731206038465
|
|
196
|
+
.2788942634768104
|
|
197
|
+
.2831487404299921
|
|
198
|
+
.2874408377269175
|
|
199
|
+
.29177064981753587
|
|
200
|
+
.2961382707983211
|
|
201
|
+
.3005437944157765
|
|
202
|
+
.3049873140698863
|
|
203
|
+
.30946892281750854
|
|
204
|
+
.31398871337571754
|
|
205
|
+
.31854677812509186
|
|
206
|
+
.32314320911295075
|
|
207
|
+
.3277780980565422
|
|
208
|
+
.33245153634617935
|
|
209
|
+
.33716361504833037
|
|
210
|
+
.3419144249086609
|
|
211
|
+
.3467040563550296
|
|
212
|
+
.35153259950043936
|
|
213
|
+
.3564001441459435
|
|
214
|
+
.3613067797835095
|
|
215
|
+
.3662525955988395
|
|
216
|
+
.3712376804741491
|
|
217
|
+
.3762621229909065
|
|
218
|
+
.38132601143253014
|
|
219
|
+
.386429433787049
|
|
220
|
+
.39157247774972326
|
|
221
|
+
.39675523072562685
|
|
222
|
+
.4019777798321958
|
|
223
|
+
.4072402119017367
|
|
224
|
+
.41254261348390375
|
|
225
|
+
.4178850708481375
|
|
226
|
+
.4232676699860717
|
|
227
|
+
.4286904966139066
|
|
228
|
+
.43415363617474895
|
|
229
|
+
.4396571738409188
|
|
230
|
+
.44520119451622786
|
|
231
|
+
.45078578283822346
|
|
232
|
+
.45641102318040466
|
|
233
|
+
.4620769996544071
|
|
234
|
+
.467783796112159
|
|
235
|
+
.47353149614800955
|
|
236
|
+
.4793201831008268
|
|
237
|
+
.4851499400560704
|
|
238
|
+
.4910208498478356
|
|
239
|
+
.4969329950608704
|
|
240
|
+
.5028864580325687
|
|
241
|
+
.5088813208549338
|
|
242
|
+
.5149176653765214
|
|
243
|
+
.5209955732043543
|
|
244
|
+
.5271151257058131
|
|
245
|
+
.5332764040105052
|
|
246
|
+
.5394794890121072
|
|
247
|
+
.5457244613701866
|
|
248
|
+
.5520114015120001
|
|
249
|
+
.5583403896342679
|
|
250
|
+
.5647115057049292
|
|
251
|
+
.5711248294648731
|
|
252
|
+
.5775804404296506
|
|
253
|
+
.5840784178911641
|
|
254
|
+
.5906188409193369
|
|
255
|
+
.5972017883637634
|
|
256
|
+
.6038273388553378
|
|
257
|
+
.6104955708078648
|
|
258
|
+
.6172065624196511
|
|
259
|
+
.6239603916750761
|
|
260
|
+
.6307571363461468
|
|
261
|
+
.6375968739940326
|
|
262
|
+
.6444796819705821
|
|
263
|
+
.6514056374198242
|
|
264
|
+
.6583748172794485
|
|
265
|
+
.665387298282272
|
|
266
|
+
.6724431569576875
|
|
267
|
+
.6795424696330938
|
|
268
|
+
.6866853124353135
|
|
269
|
+
.6938717612919899
|
|
270
|
+
.7011018919329731
|
|
271
|
+
.7083757798916868
|
|
272
|
+
.7156935005064807
|
|
273
|
+
.7230551289219693
|
|
274
|
+
.7304607400903537
|
|
275
|
+
.7379104087727308
|
|
276
|
+
.7454042095403874
|
|
277
|
+
.7529422167760779
|
|
278
|
+
.7605245046752924
|
|
279
|
+
.768151147247507
|
|
280
|
+
.7758222183174236
|
|
281
|
+
.7835377915261935
|
|
282
|
+
.7912979403326302
|
|
283
|
+
.799102738014409
|
|
284
|
+
.8069522576692516
|
|
285
|
+
.8148465722161012
|
|
286
|
+
.8227857543962835
|
|
287
|
+
.8307698767746546
|
|
288
|
+
.83879901174074
|
|
289
|
+
.846873231509858
|
|
290
|
+
.8549926081242338
|
|
291
|
+
.8631572134541023
|
|
292
|
+
.8713671191987972
|
|
293
|
+
.8796223968878317
|
|
294
|
+
.8879231178819663
|
|
295
|
+
.8962693533742664
|
|
296
|
+
.9046611743911496
|
|
297
|
+
.9130986517934192
|
|
298
|
+
.9215818562772946
|
|
299
|
+
.9301108583754237
|
|
300
|
+
.938685728457888
|
|
301
|
+
.9473065367331999
|
|
302
|
+
.9559733532492861
|
|
303
|
+
.9646862478944651
|
|
304
|
+
.9734452903984125
|
|
305
|
+
.9822505503331171
|
|
306
|
+
.9911020971138298
|
|
307
|
+
1
|
|
308
|
+
);
|
|
309
|
+
|
|
310
|
+
// The contrast ratio to reach against white, to determine if color changes from "light" to "dark".
|
|
311
|
+
// Acceptable values for WCAG 2.0 are 3, 4.5 and 7.
|
|
312
|
+
// See https://www.w3.org/TR/WCAG20/#visual-audio-contrast-contrast
|
|
313
|
+
// See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
314
|
+
$wcag-min-contrast-ratio: 7 !default;
|
|
315
|
+
$wcag-dark: black !default;
|
|
316
|
+
$wcag-light: white !default;
|
|
317
|
+
|
|
318
|
+
// Calculate the luminance for a color.
|
|
319
|
+
// See https://www.w3.org/TR/WCAG/#dfn-relative-luminance
|
|
320
|
+
// See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
321
|
+
@function k-color-luminance( $color ) {
|
|
322
|
+
$red: k-list-nth( $linear-channel-values, k-color-red( $color ) + 1 );
|
|
323
|
+
$green: k-list-nth( $linear-channel-values, k-color-green( $color ) + 1 );
|
|
324
|
+
$blue: k-list-nth( $linear-channel-values, k-color-blue( $color ) + 1 );
|
|
325
|
+
|
|
326
|
+
@return .2126 * $red + .7152 * $green + .0722 * $blue;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
// Calculate the luminance for a color.
|
|
330
|
+
// See https://www.w3.org/TR/WCAG/#dfn-contrast-ratio
|
|
331
|
+
// See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
332
|
+
@function k-color-contrast-ratio( $background, $foreground ) {
|
|
333
|
+
// sass-lint:disable-block variable-name-format
|
|
334
|
+
$backLum: k-color-luminance( $background ) + .05;
|
|
335
|
+
$foreLum: k-color-luminance( $foreground ) + .05;
|
|
336
|
+
|
|
337
|
+
@return k-math-div( k-math-max( $backLum, $foreLum ), k-math-min( $backLum, $foreLum ) );
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
@function k-is-dark( $color ) {
|
|
341
|
+
@return if( k-color-luminance( $color ) < .5, true, false );
|
|
342
|
+
}
|
|
343
|
+
@function k-is-light( $color ) {
|
|
344
|
+
@return if( k-color-luminance( $color ) < .5, false, true );
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
// Contrast functions
|
|
349
|
+
@function k-contrast-color( $background, $dark: $wcag-dark, $light: $wcag-light, $min-ratio: $wcag-min-contrast-ratio ) {
|
|
350
|
+
$foregrounds: $light, $dark, #ffffff, #000000;
|
|
351
|
+
$max-ratio: 0;
|
|
352
|
+
$max-ratio-color: null;
|
|
353
|
+
|
|
354
|
+
@each $color in $foregrounds {
|
|
355
|
+
$contrast-ratio: k-color-contrast-ratio( $background, $color );
|
|
356
|
+
|
|
357
|
+
@if ( $contrast-ratio > $min-ratio ) {
|
|
358
|
+
@return $color;
|
|
359
|
+
} @else if ( $contrast-ratio > $max-ratio ) {
|
|
360
|
+
$max-ratio: $contrast-ratio;
|
|
361
|
+
$max-ratio-color: $color;
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
// sass-lint:disable-block no-warn
|
|
366
|
+
@warn "Found no color leading to #{$min-ratio}:1 contrast ratio against #{$background}...";
|
|
367
|
+
|
|
368
|
+
@return $max-ratio-color;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
// #endregion
|
|
372
|
+
// #region @import "_color-manipulation.import.scss"; -> packages/classic/node_modules/@progress/kendo-theme-core/scss/functions/_color-manipulation.import.scss
|
|
373
|
+
/// Set a specific jump point for requesting color jumps
|
|
374
|
+
/// @group color-system
|
|
375
|
+
/// @access private
|
|
376
|
+
$kendo-color-level-step: 8% !default;
|
|
377
|
+
|
|
378
|
+
@function k-color-level( $color, $level: 0 ) {
|
|
379
|
+
|
|
380
|
+
@if ( $level == 0 ) or ( $level == 0% ) {
|
|
381
|
+
@return $color;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
$base: if( $level < 0, #ffffff, #000000 );
|
|
385
|
+
$level: k-math-abs( $level );
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
@if ( k-math-unit($level) == "%" ) {
|
|
389
|
+
@return k-color-mix( $base, $color, $level );
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
@return k-color-mix( $base, $color, $level * $kendo-color-level-step );
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
@function k-color-tint( $color, $level: 1 ) {
|
|
396
|
+
@return k-color-level( $color, -$level );
|
|
397
|
+
}
|
|
398
|
+
@function k-color-shade( $color, $level: 1 ) {
|
|
399
|
+
@return k-color-level( $color, $level );
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
@function k-try-shade( $color, $level: 1 ) {
|
|
403
|
+
$dark-theme: if( variable-exists( dark-theme ), $dark-theme, false );
|
|
404
|
+
|
|
405
|
+
@if $dark-theme {
|
|
406
|
+
@return k-color-tint( $color, $level );
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
@return k-color-shade( $color, $level );
|
|
410
|
+
}
|
|
411
|
+
@function k-try-tint( $color, $level: 1 ) {
|
|
412
|
+
$dark-theme: if( variable-exists( dark-theme ), $dark-theme, false );
|
|
413
|
+
|
|
414
|
+
@if $dark-theme {
|
|
415
|
+
@return k-color-shade( $color, $level );
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
@return k-color-tint( $color, $level );
|
|
419
|
+
}
|
|
420
|
+
|
|
421
|
+
|
|
422
|
+
@function k-try-darken( $color, $amount ) {
|
|
423
|
+
$dark-theme: if( variable-exists( dark-theme ), $dark-theme, false );
|
|
424
|
+
|
|
425
|
+
@if $dark-theme {
|
|
426
|
+
@return k-color-lighten( $color, $amount );
|
|
427
|
+
}
|
|
428
|
+
@return k-color-darken( $color, $amount );
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
@function k-try-lighten( $color, $amount ) {
|
|
432
|
+
$dark-theme: if( variable-exists( dark-theme ), $dark-theme, false );
|
|
433
|
+
|
|
434
|
+
@if $dark-theme {
|
|
435
|
+
@return k-color-darken( $color, $amount );
|
|
436
|
+
}
|
|
437
|
+
@return k-color-lighten( $color, $amount );
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
// TODO: Remove this function or rethink the logic
|
|
441
|
+
@function k-true-mix( $color1, $color2, $weight: 50% ) {
|
|
442
|
+
@return k-color-mix( rgba( $color1, 1 ), rgba( $color2, 1 ), $weight );
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
// #endregion
|
|
446
|
+
// #region @import "_list.import.scss"; -> packages/classic/node_modules/@progress/kendo-theme-core/scss/functions/_list.import.scss
|
|
447
|
+
@function k-list-append( $list, $val, $separator: auto ) {
|
|
448
|
+
@return append( $list, $val, $separator );
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
@function k-list-index( $list, $value ) {
|
|
452
|
+
@return index( $list, $value );
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
@function k-list-is-bracketed( $list ) {
|
|
456
|
+
@return is-bracketed( $list );
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
@function k-list-join( $list1, $list2, $separator: auto, $bracketed: auto ) {
|
|
460
|
+
@return join( $list1, $list2, $separator, $bracketed );
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
@function k-list-length( $list ) {
|
|
464
|
+
@return length( $list );
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
@function k-list-nth( $list, $n ) {
|
|
468
|
+
@return nth( $list, $n );
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
@function k-list-separator( $list ) {
|
|
472
|
+
@return list-separator( $list );
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
@function k-list-set-nth( $list, $n, $value ) {
|
|
476
|
+
@return set-nth( $list, $n, $value );
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
@function k-list-zip( $lists... ) {
|
|
480
|
+
@return zip( $lists... );
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
// #endregion
|
|
484
|
+
// #region @import "_math.import.scss"; -> packages/classic/node_modules/@progress/kendo-theme-core/scss/functions/_math.import.scss
|
|
485
|
+
@function k-math-abs( $number ) {
|
|
486
|
+
@return abs( $number );
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
@function k-math-ceil( $number ) {
|
|
490
|
+
@return ceil( $number );
|
|
491
|
+
}
|
|
492
|
+
|
|
493
|
+
@function k-math-clamp( $value, $min, $max ) {
|
|
494
|
+
@return k-math-max( $min, k-math-min( $max, $value ) );
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
@function k-math-compatible( $a, $b ) {
|
|
498
|
+
@return comparable( $a, $b );
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
@function k-math-div( $a, $b ) {
|
|
502
|
+
@return ( $a / $b );
|
|
503
|
+
}
|
|
504
|
+
|
|
505
|
+
@function k-math-is-unitless( $number ) {
|
|
506
|
+
@return unitless( $number );
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
@function k-math-max( $a, $b ) {
|
|
510
|
+
@return max( $a, $b );
|
|
511
|
+
}
|
|
512
|
+
|
|
513
|
+
@function k-math-min( $a, $b ) {
|
|
514
|
+
@return min( $a, $b );
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
@function k-math-mod( $a, $b ) {
|
|
518
|
+
@return ( $a % $b );
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
@function k-math-mul( $a, $b ) {
|
|
522
|
+
@return ( $a * $b );
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
@function k-math-percentage( $number ) {
|
|
526
|
+
@return ( $number * 100% );
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
@function k-math-pow( $x, $n ) {
|
|
530
|
+
$ret: 1;
|
|
531
|
+
|
|
532
|
+
@if ( $n == 0 ) {
|
|
533
|
+
@return $ret;
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
@if ( $n > 0 ) {
|
|
537
|
+
@for $i from 1 through $n {
|
|
538
|
+
$ret: $ret * $x;
|
|
539
|
+
}
|
|
540
|
+
@return $ret;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
@for $i from $n to 0 {
|
|
544
|
+
$ret: k-math-div( $ret, $x );
|
|
545
|
+
}
|
|
546
|
+
@return $ret;
|
|
547
|
+
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
@function k-math-random( $limit: null ) {
|
|
551
|
+
@if ( $limit == null ) {
|
|
552
|
+
@return random();
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
@return random( $limit );
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
@function k-math-round( $number, $precision: 0 ) {
|
|
559
|
+
|
|
560
|
+
@if ( $precision == 0 ) {
|
|
561
|
+
@return round( $number );
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
$pow: k-math-pow( 10, $precision );
|
|
565
|
+
|
|
566
|
+
@return k-math-div( round( $number * $pow ), $pow );
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
@function k-math-unit( $number ) {
|
|
570
|
+
@return unit( $number );
|
|
571
|
+
}
|
|
572
|
+
|
|
573
|
+
@function k-math-strip-unit($number) {
|
|
574
|
+
@if ( k-meta-type-of( $number ) == "number" ) and not k-math-is-unitless( $number ) {
|
|
575
|
+
@return k-math-div( $number, 1 * k-math-unit( $number) );
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
@return $number;
|
|
579
|
+
}
|
|
580
|
+
|
|
581
|
+
// #endregion
|
|
582
|
+
// #region @import "_map.import.scss"; -> packages/classic/node_modules/@progress/kendo-theme-core/scss/functions/_map.import.scss
|
|
583
|
+
@function k-map-get( $map, $keys... ) {
|
|
584
|
+
@each $key in $keys {
|
|
585
|
+
$map: map-get( $map, $key );
|
|
586
|
+
}
|
|
587
|
+
@return $map;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
@function k-map-has-key( $map, $key ) {
|
|
591
|
+
@return map-has-key( $map, $key );
|
|
592
|
+
}
|
|
593
|
+
|
|
594
|
+
@function k-map-keys( $map ) {
|
|
595
|
+
@return map-keys( $map );
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
@function k-map-merge( $map, $args... ) {
|
|
599
|
+
@each $arg in $args {
|
|
600
|
+
$map: map-merge( $map, $arg );
|
|
601
|
+
}
|
|
602
|
+
@return $map;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
@function k-map-remove( $map, $keys... ) {
|
|
606
|
+
@return map-remove( $map, $keys... );
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
@function k-map-set( $map, $key, $value ) {
|
|
610
|
+
@return k-map-merge( $map, ( $key: $value ) );
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
@function k-map-values( $map ) {
|
|
614
|
+
@return map-values( $map );
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
// #endregion
|
|
618
|
+
// #region @import "_meta.import.scss"; -> packages/classic/node_modules/@progress/kendo-theme-core/scss/functions/_meta.import.scss
|
|
619
|
+
// Adapted from https://css-tricks.com/snippets/sass/advanced-type-checking/
|
|
620
|
+
|
|
621
|
+
@function k-meta-type-of( $value ) {
|
|
622
|
+
@return type-of( $value );
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
@function k-meta-is-number( $value ) {
|
|
626
|
+
@return k-meta-type-of( $value ) == "number";
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
@function k-meta-is-integer( $value ) {
|
|
630
|
+
@return k-meta-is-number( $value ) and k-math-round( $value ) == $value;
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
@function k-meta-is-time( $value ) {
|
|
634
|
+
@return k-meta-is-number( $value ) and k-string-index( "ms" "s", k-math-unit( $value ) ) != null;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
@function k-meta-is-duration( $value ) {
|
|
638
|
+
@return k-meta-is-time( $value );
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
@function k-meta-is-angle( $value ) {
|
|
642
|
+
@return k-meta-is-number( $value ) and k-string-index( "deg" "rad" "grad" "turn", k-math-unit( $value ) ) != null;
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
@function k-meta-is-frequency( $value ) {
|
|
646
|
+
@return k-meta-is-number( $value ) and k-string-index( "Hz" "kHz", k-math-unit( $value ) ) != null;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
@function k-meta-is-relative-length( $value ) {
|
|
650
|
+
@return k-meta-is-number( $value ) and k-string-index( "em" "ex" "ch" "rem" "vw" "vh" "vmin" "vmax", k-math-unit( $value ) ) != null;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
@function k-meta-is-absolute-length( $value ) {
|
|
654
|
+
@return k-meta-is-number( $value ) and k-string-index( "cm" "mm" "in" "px" "pt" "pc", k-math-unit( $value ) ) != null;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
@function k-meta-is-percentage( $value ) {
|
|
658
|
+
@return k-meta-is-number( $value ) and k-math-unit( $value ) == "%";
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
@function k-meta-is-length( $value ) {
|
|
662
|
+
@return k-meta-is-relative-length( $value ) or k-meta-is-absolute-length( $value );
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
@function k-meta-is-resolution( $value ) {
|
|
666
|
+
@return k-meta-is-number( $value ) and k-string-index( "dpi" "dpcm" "dppx", k-math-unit( $value ) ) != null;
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
@function k-meta-is-position( $value ) {
|
|
670
|
+
@return k-meta-is-length( $value ) or k-meta-is-percentage( $value ) or k-string-index( "top" "right" "bottom" "left" "center", $value ) != null;
|
|
671
|
+
}
|
|
672
|
+
|
|
673
|
+
// #endregion
|
|
674
|
+
// #region @import "_string.import.scss"; -> packages/classic/node_modules/@progress/kendo-theme-core/scss/functions/_string.import.scss
|
|
675
|
+
@function k-string-index( $string, $substring ) {
|
|
676
|
+
@return str-index( $string, $substring );
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
@function k-string-insert( $string, $insert, $index ) {
|
|
680
|
+
@return str-insert( $string, $insert, $index );
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
@function k-string-length( $string ) {
|
|
684
|
+
@return str-length( $string );
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
@function k-string-quote( $string ) {
|
|
688
|
+
@return quote( $string );
|
|
689
|
+
}
|
|
690
|
+
|
|
691
|
+
// See https://www.sassmeister.com/gist/1b4f2da5527830088e4d
|
|
692
|
+
@function k-string-replace( $string, $search, $replace: "" ) {
|
|
693
|
+
$index: k-string-index( $string, $search );
|
|
694
|
+
|
|
695
|
+
@if $index {
|
|
696
|
+
@return k-string-slice( $string, 1, $index - 1 ) + $replace + k-string-replace( k-string-slice( $string, $index + k-string-length( $search ) ), $search, $replace );
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
@return $string;
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
@function k-string-slice( $string, $start-at, $end-at: -1 ) {
|
|
703
|
+
@return str-slice( $string, $start-at, $end-at );
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
@function k-string-to-lower-case( $string ) {
|
|
707
|
+
@return to-lower-case( $string );
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
@function k-string-to-upper-case( $string ) {
|
|
711
|
+
@return to-upper-case( $string );
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
@function k-string-unique-id() {
|
|
715
|
+
@return unique-id();
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
@function k-string-unquote( $string ) {
|
|
719
|
+
@return unquote( $string );
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
// #endregion
|
|
723
|
+
|
|
724
|
+
// #endregion
|
|
7
725
|
// #region @import "~@progress/kendo-theme-default/scss/core/functions/_index.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/core/functions/_index.scss
|
|
8
726
|
// #region @import "_math.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/core/functions/_math.scss
|
|
9
727
|
@function decimal-round($float, $digits: 2) {
|
|
@@ -872,8 +1590,8 @@ $_kendo-imported-modules: ();
|
|
|
872
1590
|
// Infinite calendar and timepicker
|
|
873
1591
|
@mixin hide-scrollbar($dir: "right", $max-scrollbar: 100px) {
|
|
874
1592
|
// anything larger than the scrollbar width will do
|
|
875
|
-
$scrollbar-size:
|
|
876
|
-
$margin:
|
|
1593
|
+
$scrollbar-size: var( --kendo-scrollbar-width, #{$default-scrollbar-width} );
|
|
1594
|
+
$margin: calc( -#{$max-scrollbar} - #{$scrollbar-size} );
|
|
877
1595
|
|
|
878
1596
|
padding-right: $max-scrollbar;
|
|
879
1597
|
padding-left: $max-scrollbar;
|
|
@@ -960,7 +1678,7 @@ $default-scrollbar-width: 17px !default;
|
|
|
960
1678
|
// Icons
|
|
961
1679
|
$icon-size: 16px !default;
|
|
962
1680
|
$icon-size-lg: 32px !default;
|
|
963
|
-
$icon-spacing: map-get( $spacing, 1 ) !default;
|
|
1681
|
+
$icon-spacing: k-map-get( $spacing, 1 ) !default;
|
|
964
1682
|
|
|
965
1683
|
/// The URL to the icon font that will be used by the theme
|
|
966
1684
|
/// The default value of `null` embeds the package font with a `data:` URL
|
|
@@ -971,14 +1689,14 @@ $icon-font-url: null !default;
|
|
|
971
1689
|
// Metrics
|
|
972
1690
|
$padding-x: 8px !default;
|
|
973
1691
|
$padding-y: 4px !default;
|
|
974
|
-
$padding-x-sm: $padding-x
|
|
975
|
-
$padding-y-sm: $padding-y
|
|
1692
|
+
$padding-x-sm: k-math-div( $padding-x, 2 ) !default;
|
|
1693
|
+
$padding-y-sm: k-math-div( $padding-y, 2 ) !default;
|
|
976
1694
|
$padding-x-lg: $padding-x * 1.5 !default;
|
|
977
1695
|
$padding-y-lg: $padding-y * 1.5 !default;
|
|
978
1696
|
|
|
979
1697
|
/// Border radius for all components.
|
|
980
|
-
$kendo-border-radius: map-get( $spacing, 1 ) !default;
|
|
981
|
-
$kendo-border-radius-sm: $kendo-border-radius
|
|
1698
|
+
$kendo-border-radius: k-map-get( $spacing, 1 ) !default;
|
|
1699
|
+
$kendo-border-radius-sm: k-math-div( $kendo-border-radius, 2 ) !default;
|
|
982
1700
|
$kendo-border-radius-md: $kendo-border-radius !default;
|
|
983
1701
|
$kendo-border-radius-lg: $kendo-border-radius * 2 !default;
|
|
984
1702
|
|
|
@@ -986,13 +1704,13 @@ $panel-padding-x: $padding-x !default;
|
|
|
986
1704
|
$panel-padding-y: $padding-y !default;
|
|
987
1705
|
|
|
988
1706
|
$nav-item-margin: 0px !default;
|
|
989
|
-
$nav-item-padding-x: map-get( $spacing, 2 ) !default;
|
|
990
|
-
$nav-item-padding-y: map-get( $spacing, 1 ) !default;
|
|
1707
|
+
$nav-item-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
1708
|
+
$nav-item-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
991
1709
|
|
|
992
|
-
$table-cell-padding-x: map-get( $spacing, 2 ) !default;
|
|
993
|
-
$table-cell-padding-y: map-get( $spacing, 2 ) !default;
|
|
994
|
-
$header-cell-padding-x: map-get( $spacing, 3 ) !default;
|
|
995
|
-
$header-cell-padding-y: map-get( $spacing, 2 ) !default;
|
|
1710
|
+
$table-cell-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
1711
|
+
$table-cell-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
1712
|
+
$header-cell-padding-x: k-map-get( $spacing, 3 ) !default;
|
|
1713
|
+
$header-cell-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
996
1714
|
|
|
997
1715
|
$zindex-popup: 1 !default;
|
|
998
1716
|
$zindex-window: 2 !default;
|
|
@@ -1011,8 +1729,8 @@ $black: #000000 !default;
|
|
|
1011
1729
|
/// @group color-system
|
|
1012
1730
|
/// @type Color
|
|
1013
1731
|
$primary: #f35800 !default;
|
|
1014
|
-
$primary-lighter: tint($primary, 2) !default;
|
|
1015
|
-
$primary-darker: shade($primary, 2) !default;
|
|
1732
|
+
$primary-lighter: k-color-tint( $primary, 2 ) !default;
|
|
1733
|
+
$primary-darker: k-color-shade( $primary, 2 ) !default;
|
|
1016
1734
|
|
|
1017
1735
|
/// The color used along with the primary color denoted by $primary.
|
|
1018
1736
|
/// Used to provide contrast between the background and foreground colors.
|
|
@@ -1024,55 +1742,55 @@ $primary-contrast: contrast-wcag( $primary ) !default;
|
|
|
1024
1742
|
/// @group color-system
|
|
1025
1743
|
/// @type Color
|
|
1026
1744
|
$secondary: #e9e9e9 !default;
|
|
1027
|
-
$secondary-lighter: tint($secondary, 2) !default;
|
|
1028
|
-
$secondary-darker: shade($secondary, 2) !default;
|
|
1745
|
+
$secondary-lighter: k-color-tint( $secondary, 2 ) !default;
|
|
1746
|
+
$secondary-darker: k-color-shade( $secondary, 2 ) !default;
|
|
1029
1747
|
|
|
1030
1748
|
/// The color used along with the secondary color denoted by $secondary.
|
|
1031
1749
|
/// Used to provide contrast between the background and foreground colors.
|
|
1032
1750
|
/// @group color-system
|
|
1033
1751
|
/// @type Color
|
|
1034
|
-
$secondary-contrast: contrast-
|
|
1752
|
+
$secondary-contrast: k-contrast-color( $secondary ) !default;
|
|
1035
1753
|
|
|
1036
1754
|
/// The tertiary color of the theme.
|
|
1037
1755
|
/// @group color-system
|
|
1038
1756
|
/// @type Color
|
|
1039
1757
|
$tertiary: #03a9f4 !default;
|
|
1040
|
-
$tertiary-lighter: tint( $tertiary, 2 ) !default;
|
|
1041
|
-
$tertiary-darker: shade( $tertiary, 2 ) !default;
|
|
1758
|
+
$tertiary-lighter: k-color-tint( $tertiary, 2 ) !default;
|
|
1759
|
+
$tertiary-darker: k-color-shade( $tertiary, 2 ) !default;
|
|
1042
1760
|
|
|
1043
1761
|
/// The color used along with the tertiary color denoted by $tertiary.
|
|
1044
1762
|
/// Used to provide contrast between the background and foreground colors.
|
|
1045
1763
|
/// @group color-system
|
|
1046
1764
|
/// @type Color
|
|
1047
|
-
$tertiary-contrast: contrast-
|
|
1765
|
+
$tertiary-contrast: k-contrast-color( $tertiary ) !default;
|
|
1048
1766
|
|
|
1049
1767
|
/// The color for informational messages and states.
|
|
1050
1768
|
/// @group color-system
|
|
1051
1769
|
/// @type Color
|
|
1052
1770
|
$info: #2498bc !default;
|
|
1053
|
-
$info-lighter: tint($info, 2) !default;
|
|
1054
|
-
$info-darker: shade($info, 2) !default;
|
|
1771
|
+
$info-lighter: k-color-tint( $info, 2 ) !default;
|
|
1772
|
+
$info-darker: k-color-shade( $info, 2 ) !default;
|
|
1055
1773
|
|
|
1056
1774
|
/// The color for success messages and states.
|
|
1057
1775
|
/// @group color-system
|
|
1058
1776
|
/// @type Color
|
|
1059
1777
|
$success: #3ea44e !default;
|
|
1060
|
-
$success-lighter: tint($success, 2) !default;
|
|
1061
|
-
$success-darker: shade($success, 2) !default;
|
|
1778
|
+
$success-lighter: k-color-tint( $success, 2 ) !default;
|
|
1779
|
+
$success-darker: k-color-shade( $success, 2 ) !default;
|
|
1062
1780
|
|
|
1063
1781
|
/// The color for warning messages and states.
|
|
1064
1782
|
/// @group color-system
|
|
1065
1783
|
/// @type Color
|
|
1066
1784
|
$warning: #ff9800 !default;
|
|
1067
|
-
$warning-lighter: tint($warning, 2) !default;
|
|
1068
|
-
$warning-darker: shade($warning, 2) !default;
|
|
1785
|
+
$warning-lighter: k-color-tint( $warning, 2 ) !default;
|
|
1786
|
+
$warning-darker: k-color-shade( $warning, 2 ) !default;
|
|
1069
1787
|
|
|
1070
1788
|
/// The color for error messages and states.
|
|
1071
1789
|
/// @group color-system
|
|
1072
1790
|
/// @type Color
|
|
1073
1791
|
$error: #d92800 !default;
|
|
1074
|
-
$error-lighter: tint($error, 2) !default;
|
|
1075
|
-
$error-darker: shade($error, 2) !default;
|
|
1792
|
+
$error-lighter: k-color-tint( $error, 2 ) !default;
|
|
1793
|
+
$error-darker: k-color-shade( $error, 2 ) !default;
|
|
1076
1794
|
|
|
1077
1795
|
/// The dark color of the theme.
|
|
1078
1796
|
/// @group color-system
|
|
@@ -1112,10 +1830,10 @@ $cursors: ( auto, default, none, context-menu, help, pointer, progress, wait, ce
|
|
|
1112
1830
|
// Color constants
|
|
1113
1831
|
$rgba-transparent: rgba( 0, 0, 0, 0 ); // stylelint-disable-line
|
|
1114
1832
|
|
|
1115
|
-
$gradient-transparent-to-black: rgba( black, 0), black; // stylelint-disable-line
|
|
1116
|
-
$gradient-transparent-to-white: rgba( white, 0), white; // stylelint-disable-line
|
|
1117
|
-
$gradient-black-to-transparent: black, rgba( black, 0); // stylelint-disable-line
|
|
1118
|
-
$gradient-white-to-transparent: white, rgba( white, 0); // stylelint-disable-line
|
|
1833
|
+
$gradient-transparent-to-black: rgba( black, 0 ), black; // stylelint-disable-line
|
|
1834
|
+
$gradient-transparent-to-white: rgba( white, 0 ), white; // stylelint-disable-line
|
|
1835
|
+
$gradient-black-to-transparent: black, rgba( black, 0 ); // stylelint-disable-line
|
|
1836
|
+
$gradient-white-to-transparent: white, rgba( white, 0 ); // stylelint-disable-line
|
|
1119
1837
|
|
|
1120
1838
|
$gradient-rainbow: #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000; // stylelint-disable-line
|
|
1121
1839
|
|
|
@@ -1129,7 +1847,7 @@ $disabled-text: #8d8d8d !default;
|
|
|
1129
1847
|
|
|
1130
1848
|
$app-bg: $body-bg !default;
|
|
1131
1849
|
$app-text: $body-text !default;
|
|
1132
|
-
$app-border: try-shade( $app-bg, 2 ) !default;
|
|
1850
|
+
$app-border: k-try-shade( $app-bg, 2 ) !default;
|
|
1133
1851
|
|
|
1134
1852
|
|
|
1135
1853
|
// Components
|
|
@@ -1139,7 +1857,7 @@ $base-bg: #f0f0f0 !default;
|
|
|
1139
1857
|
/// The text color of the components' chrome area.
|
|
1140
1858
|
$base-text: $body-text !default;
|
|
1141
1859
|
/// The border color of the components' chrome area.
|
|
1142
|
-
$base-border: try-shade( $base-bg, 2 ) !default;
|
|
1860
|
+
$base-border: k-try-shade( $base-bg, 2 ) !default;
|
|
1143
1861
|
/// The gradient background of the components' chrome area.
|
|
1144
1862
|
$base-gradient: rgba( white, .1 ), rgba( white, 0 ) !default;
|
|
1145
1863
|
|
|
@@ -1157,11 +1875,11 @@ $component-text: $body-text !default;
|
|
|
1157
1875
|
$component-border: $base-border !default;
|
|
1158
1876
|
|
|
1159
1877
|
/// The background of hovered items.
|
|
1160
|
-
$hovered-bg: try-shade( $base-bg, 1 ) !default;
|
|
1878
|
+
$hovered-bg: k-try-shade( $base-bg, 1 ) !default;
|
|
1161
1879
|
/// The text color of hovered items.
|
|
1162
1880
|
$hovered-text: $base-text !default;
|
|
1163
1881
|
/// The border color of hovered items.
|
|
1164
|
-
$hovered-border: try-shade( $hovered-bg, 2 ) !default;
|
|
1882
|
+
$hovered-border: k-try-shade( $hovered-bg, 2 ) !default;
|
|
1165
1883
|
/// The gradient background of hovered items.
|
|
1166
1884
|
$hovered-gradient: $base-gradient !default;
|
|
1167
1885
|
|
|
@@ -1170,17 +1888,17 @@ $selected-bg: $primary !default;
|
|
|
1170
1888
|
/// The text color of selected items.
|
|
1171
1889
|
$selected-text: contrast-wcag( $selected-bg ) !default;
|
|
1172
1890
|
/// The border color of selected items.
|
|
1173
|
-
$selected-border: try-shade( $selected-bg, 2 ) !default;
|
|
1891
|
+
$selected-border: k-try-shade( $selected-bg, 2 ) !default;
|
|
1174
1892
|
/// The gradient background of selected items.
|
|
1175
1893
|
$selected-gradient: $base-gradient !default;
|
|
1176
1894
|
|
|
1177
|
-
$selected-hover-bg: try-shade( $selected-bg, 1 ) !default;
|
|
1895
|
+
$selected-hover-bg: k-try-shade( $selected-bg, 1 ) !default;
|
|
1178
1896
|
$selected-hover-text: contrast-wcag( $selected-hover-bg ) !default;
|
|
1179
1897
|
$selected-hover-border: $selected-border !default;
|
|
1180
1898
|
$selected-hover-gradient: $selected-gradient !default;
|
|
1181
1899
|
|
|
1182
|
-
$focused-shadow: inset 0 0 0 2px rgba(
|
|
1183
|
-
$primary-focused-shadow: inset 0 0 0 2px rgba($primary, .3) !default;
|
|
1900
|
+
$focused-shadow: inset 0 0 0 2px rgba( black, .13 ) !default;
|
|
1901
|
+
$primary-focused-shadow: inset 0 0 0 2px rgba( $primary, .3 ) !default;
|
|
1184
1902
|
|
|
1185
1903
|
$transition: color .2s ease-in-out, background-color .2s ease-in-out, border-color .2s ease-in-out, box-shadow .2s ease-in-out !default;
|
|
1186
1904
|
|
|
@@ -1195,7 +1913,7 @@ $disabled-opacity: .6 !default;
|
|
|
1195
1913
|
// TODO: refactor once we extract drag drop as separate module
|
|
1196
1914
|
$font-size: 14px !default;
|
|
1197
1915
|
$font-family: inherit !default;
|
|
1198
|
-
$line-height: ( 20
|
|
1916
|
+
$line-height: k-math-div( 20, 14 ) !default;
|
|
1199
1917
|
|
|
1200
1918
|
|
|
1201
1919
|
// Drop Hint
|
|
@@ -1203,7 +1921,7 @@ $equilateral-index: 1.7320508076 !default;
|
|
|
1203
1921
|
$equilateral-height: .8660254038 !default;
|
|
1204
1922
|
|
|
1205
1923
|
$drop-hint-arrow-size: 8px !default;
|
|
1206
|
-
$drop-hint-arrow-spacing: ($drop-hint-arrow-size
|
|
1924
|
+
$drop-hint-arrow-spacing: k-math-div( $drop-hint-arrow-size, 2 ) !default;
|
|
1207
1925
|
$drop-hint-line-h-width: 20px !default;
|
|
1208
1926
|
$drop-hint-line-h-height: 1px !default;
|
|
1209
1927
|
$drop-hint-line-v-width: $drop-hint-line-h-height !default;
|
|
@@ -1262,7 +1980,7 @@ $zindex-loading: 100 !default;
|
|
|
1262
1980
|
// Placeholder
|
|
1263
1981
|
$placeholder-line-width: 100% !default;
|
|
1264
1982
|
$placeholder-line-height: 10px !default;
|
|
1265
|
-
$placeholder-bg: rgba(
|
|
1983
|
+
$placeholder-bg: rgba( black, .1 ) !default;
|
|
1266
1984
|
|
|
1267
1985
|
|
|
1268
1986
|
// Table
|
|
@@ -1481,7 +2199,7 @@ $font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Roboto Mono",
|
|
|
1481
2199
|
|
|
1482
2200
|
/// Line height used along with $font-size.
|
|
1483
2201
|
/// @group typography
|
|
1484
|
-
$line-height: (20
|
|
2202
|
+
$line-height: k-math-div( 20, 14 ) !default;
|
|
1485
2203
|
$line-height-xs: 1 !default;
|
|
1486
2204
|
$line-height-sm: 1.25 !default;
|
|
1487
2205
|
$line-height-md: $line-height !default;
|
|
@@ -6097,18 +6815,18 @@ $kendo-list-line-height-lg: $line-height-lg !default;
|
|
|
6097
6815
|
/// Horizontal padding of list header, if no size is set.
|
|
6098
6816
|
/// @group list
|
|
6099
6817
|
$kendo-list-header-padding-x: null !default;
|
|
6100
|
-
$kendo-list-header-padding-x-base: map-get( $spacing, 2 ) !default;
|
|
6101
|
-
$kendo-list-header-padding-x-sm: map-get( $spacing, 2 ) !default;
|
|
6102
|
-
$kendo-list-header-padding-x-md: map-get( $spacing, 2 ) !default;
|
|
6103
|
-
$kendo-list-header-padding-x-lg: map-get( $spacing, 2 ) !default;
|
|
6818
|
+
$kendo-list-header-padding-x-base: k-map-get( $spacing, 2 ) !default;
|
|
6819
|
+
$kendo-list-header-padding-x-sm: k-map-get( $spacing, 2 ) !default;
|
|
6820
|
+
$kendo-list-header-padding-x-md: k-map-get( $spacing, 2 ) !default;
|
|
6821
|
+
$kendo-list-header-padding-x-lg: k-map-get( $spacing, 2 ) !default;
|
|
6104
6822
|
|
|
6105
6823
|
/// Vertical padding of list header, if no size is set.
|
|
6106
6824
|
/// @group list
|
|
6107
6825
|
$kendo-list-header-padding-y: null !default;
|
|
6108
|
-
$kendo-list-header-padding-y-base: map-get( $spacing, 1 ) !default;
|
|
6109
|
-
$kendo-list-header-padding-y-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
6110
|
-
$kendo-list-header-padding-y-md: map-get( $spacing, 1 ) !default;
|
|
6111
|
-
$kendo-list-header-padding-y-lg: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
|
|
6826
|
+
$kendo-list-header-padding-y-base: k-map-get( $spacing, 1 ) !default;
|
|
6827
|
+
$kendo-list-header-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
6828
|
+
$kendo-list-header-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
6829
|
+
$kendo-list-header-padding-y-lg: k-map-get( $spacing, 1 ) + k-map-get( $spacing, thin ) !default;
|
|
6112
6830
|
|
|
6113
6831
|
/// Border width of list header.
|
|
6114
6832
|
/// @group list
|
|
@@ -6135,18 +6853,18 @@ $kendo-list-header-font-weight: null !default;
|
|
|
6135
6853
|
/// Horizontal padding of list items, when no size is set.
|
|
6136
6854
|
/// @group list
|
|
6137
6855
|
$kendo-list-item-padding-x: null !default;
|
|
6138
|
-
$kendo-list-item-padding-x-base: map-get( $spacing, 2 ) !default;
|
|
6139
|
-
$kendo-list-item-padding-x-sm: map-get( $spacing, 2 ) !default;
|
|
6140
|
-
$kendo-list-item-padding-x-md: map-get( $spacing, 2 ) !default;
|
|
6141
|
-
$kendo-list-item-padding-x-lg: map-get( $spacing, 3 ) !default;
|
|
6856
|
+
$kendo-list-item-padding-x-base: k-map-get( $spacing, 2 ) !default;
|
|
6857
|
+
$kendo-list-item-padding-x-sm: k-map-get( $spacing, 2 ) !default;
|
|
6858
|
+
$kendo-list-item-padding-x-md: k-map-get( $spacing, 2 ) !default;
|
|
6859
|
+
$kendo-list-item-padding-x-lg: k-map-get( $spacing, 3 ) !default;
|
|
6142
6860
|
|
|
6143
6861
|
/// Vertical padding of list items, when no size is set.
|
|
6144
6862
|
/// @group list
|
|
6145
6863
|
$kendo-list-item-padding-y: null !default;
|
|
6146
|
-
$kendo-list-item-padding-y-base: map-get( $spacing, 1 ) !default;
|
|
6147
|
-
$kendo-list-item-padding-y-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
6148
|
-
$kendo-list-item-padding-y-md: map-get( $spacing, 1 ) !default;
|
|
6149
|
-
$kendo-list-item-padding-y-lg: map-get( $spacing, 2 ) !default;
|
|
6864
|
+
$kendo-list-item-padding-y-base: k-map-get( $spacing, 1 ) !default;
|
|
6865
|
+
$kendo-list-item-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
6866
|
+
$kendo-list-item-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
6867
|
+
$kendo-list-item-padding-y-lg: k-map-get( $spacing, 2 ) !default;
|
|
6150
6868
|
|
|
6151
6869
|
/// Font size of list items, if no size is set.
|
|
6152
6870
|
/// @group list
|
|
@@ -6165,18 +6883,18 @@ $kendo-list-item-line-height-lg: null !default;
|
|
|
6165
6883
|
/// Horizontal padding of list group items, when no size is set.
|
|
6166
6884
|
/// @group list
|
|
6167
6885
|
$kendo-list-group-item-padding-x: null !default;
|
|
6168
|
-
$kendo-list-group-item-padding-x-base: map-get( $spacing, 2 ) !default;
|
|
6169
|
-
$kendo-list-group-item-padding-x-sm: map-get( $spacing, 2 ) !default;
|
|
6170
|
-
$kendo-list-group-item-padding-x-md: map-get( $spacing, 2 ) !default;
|
|
6171
|
-
$kendo-list-group-item-padding-x-lg: map-get( $spacing, 2 ) !default;
|
|
6886
|
+
$kendo-list-group-item-padding-x-base: k-map-get( $spacing, 2 ) !default;
|
|
6887
|
+
$kendo-list-group-item-padding-x-sm: k-map-get( $spacing, 2 ) !default;
|
|
6888
|
+
$kendo-list-group-item-padding-x-md: k-map-get( $spacing, 2 ) !default;
|
|
6889
|
+
$kendo-list-group-item-padding-x-lg: k-map-get( $spacing, 2 ) !default;
|
|
6172
6890
|
|
|
6173
6891
|
/// Vertical padding of list group items, when no size is set.
|
|
6174
6892
|
/// @group list
|
|
6175
6893
|
$kendo-list-group-item-padding-y: null !default;
|
|
6176
|
-
$kendo-list-group-item-padding-y-base: map-get( $spacing, 1 ) !default;
|
|
6177
|
-
$kendo-list-group-item-padding-y-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
6178
|
-
$kendo-list-group-item-padding-y-md: map-get( $spacing, 1 ) !default;
|
|
6179
|
-
$kendo-list-group-item-padding-y-lg: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
|
|
6894
|
+
$kendo-list-group-item-padding-y-base: k-map-get( $spacing, 1 ) !default;
|
|
6895
|
+
$kendo-list-group-item-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
6896
|
+
$kendo-list-group-item-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
6897
|
+
$kendo-list-group-item-padding-y-lg: k-map-get( $spacing, 1 ) + k-map-get( $spacing, thin ) !default;
|
|
6180
6898
|
|
|
6181
6899
|
/// Border width of list group items.
|
|
6182
6900
|
/// @group list
|
|
@@ -6301,7 +7019,7 @@ $kendo-list-item-focus-bg: null !default;
|
|
|
6301
7019
|
$kendo-list-item-focus-text: null !default;
|
|
6302
7020
|
/// Box shadow of focused list items.
|
|
6303
7021
|
/// @group list
|
|
6304
|
-
$kendo-list-item-focus-shadow: inset 0 0 0 2px rgba(
|
|
7022
|
+
$kendo-list-item-focus-shadow: inset 0 0 0 2px rgba( black, .12 ) !default;
|
|
6305
7023
|
|
|
6306
7024
|
/// Background color of selected list items.
|
|
6307
7025
|
/// @group list
|
|
@@ -6341,19 +7059,19 @@ $kendo-checkbox-border-width: 1px !default;
|
|
|
6341
7059
|
// Checkbox sizes
|
|
6342
7060
|
$kendo-checkbox-sizes: (
|
|
6343
7061
|
sm: (
|
|
6344
|
-
size: map-get( $spacing, 3 ),
|
|
6345
|
-
glyph-size: ( map-get( $spacing, 3 ) - map-get( $spacing, thin ) ),
|
|
6346
|
-
ripple-size: map-get( $spacing, 3 ) * 3
|
|
7062
|
+
size: k-map-get( $spacing, 3 ),
|
|
7063
|
+
glyph-size: ( k-map-get( $spacing, 3 ) - k-map-get( $spacing, thin ) ),
|
|
7064
|
+
ripple-size: k-map-get( $spacing, 3 ) * 3
|
|
6347
7065
|
),
|
|
6348
7066
|
md: (
|
|
6349
|
-
size: map-get( $spacing, 4 ),
|
|
6350
|
-
glyph-size: ( map-get( $spacing, 4 ) - map-get( $spacing, thin ) ),
|
|
6351
|
-
ripple-size: map-get( $spacing, 4 ) * 3
|
|
7067
|
+
size: k-map-get( $spacing, 4 ),
|
|
7068
|
+
glyph-size: ( k-map-get( $spacing, 4 ) - k-map-get( $spacing, thin ) ),
|
|
7069
|
+
ripple-size: k-map-get( $spacing, 4 ) * 3
|
|
6352
7070
|
),
|
|
6353
7071
|
lg: (
|
|
6354
|
-
size: map-get( $spacing, 5 ),
|
|
6355
|
-
glyph-size: ( map-get( $spacing, 5 ) - map-get( $spacing, thin ) ),
|
|
6356
|
-
ripple-size: map-get( $spacing, 5 ) * 3
|
|
7072
|
+
size: k-map-get( $spacing, 5 ),
|
|
7073
|
+
glyph-size: ( k-map-get( $spacing, 5 ) - k-map-get( $spacing, thin ) ),
|
|
7074
|
+
ripple-size: k-map-get( $spacing, 5 ) * 3
|
|
6357
7075
|
)
|
|
6358
7076
|
) !default;
|
|
6359
7077
|
|
|
@@ -6402,7 +7120,7 @@ $kendo-checkbox-indeterminate-border: $kendo-checkbox-border !default;
|
|
|
6402
7120
|
$kendo-checkbox-focus-border: null !default;
|
|
6403
7121
|
/// Box shadow of focused checkbox.
|
|
6404
7122
|
/// @group checkbox
|
|
6405
|
-
$kendo-checkbox-focus-shadow: 0 0 0 2px rgba(
|
|
7123
|
+
$kendo-checkbox-focus-shadow: 0 0 0 2px rgba( black, .06 ) !default;
|
|
6406
7124
|
/// Border color of focused and checked checkbox.
|
|
6407
7125
|
/// @group checkbox
|
|
6408
7126
|
$kendo-checkbox-focus-checked-border: null !default;
|
|
@@ -6469,14 +7187,14 @@ $kendo-checkbox-indeterminate-image: escape-svg( url("data:image/svg+xml,<svg xm
|
|
|
6469
7187
|
|
|
6470
7188
|
/// The horizontal margin of the checkbox inside a label.
|
|
6471
7189
|
/// @group checkbox
|
|
6472
|
-
$kendo-checkbox-label-margin-x: map-get( $spacing, 1 ) !default;
|
|
7190
|
+
$kendo-checkbox-label-margin-x: k-map-get( $spacing, 1 ) !default;
|
|
6473
7191
|
|
|
6474
7192
|
|
|
6475
7193
|
// Checkbox list
|
|
6476
7194
|
|
|
6477
7195
|
/// Spacing between items of horizontal checkbox list.
|
|
6478
7196
|
/// @group checkbox
|
|
6479
|
-
$kendo-checkbox-list-spacing: map-get( $spacing, 4 ) !default;
|
|
7197
|
+
$kendo-checkbox-list-spacing: k-map-get( $spacing, 4 ) !default;
|
|
6480
7198
|
/// Horizontal padding of checkbox list items.
|
|
6481
7199
|
/// @group checkbox
|
|
6482
7200
|
$kendo-checkbox-list-item-padding-x: 0px !default;
|
|
@@ -7211,8 +7929,8 @@ $listgroup-bg: $component-bg !default;
|
|
|
7211
7929
|
$listgroup-text: $component-text !default;
|
|
7212
7930
|
$listgroup-border: $component-border !default;
|
|
7213
7931
|
|
|
7214
|
-
$listgroup-item-padding-x: map-get( $spacing, 2 ) !default;
|
|
7215
|
-
$listgroup-item-padding-y: map-get( $spacing, 2 ) !default;
|
|
7932
|
+
$listgroup-item-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
7933
|
+
$listgroup-item-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
7216
7934
|
$listgroup-item-border-width: 1px !default;
|
|
7217
7935
|
|
|
7218
7936
|
// #endregion
|
|
@@ -7524,13 +8242,13 @@ $popup-border-radius: null !default;
|
|
|
7524
8242
|
$popup-font-size: $font-size !default;
|
|
7525
8243
|
$popup-line-height: $line-height !default;
|
|
7526
8244
|
|
|
7527
|
-
$popup-content-padding-x: map-get( $spacing, 2 ) !default;
|
|
7528
|
-
$popup-content-padding-y: map-get( $spacing, 2 ) !default;
|
|
8245
|
+
$popup-content-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
8246
|
+
$popup-content-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
7529
8247
|
|
|
7530
8248
|
$popup-bg: $component-bg !default;
|
|
7531
8249
|
$popup-text: $component-text !default;
|
|
7532
8250
|
$popup-border: $component-border !default;
|
|
7533
|
-
$popup-shadow: 0 2px 4px 0 rgba(
|
|
8251
|
+
$popup-shadow: 0 2px 4px 0 rgba( black, .03 ), 0 4px 5px 0 rgba( black, .04 ) !default;
|
|
7534
8252
|
|
|
7535
8253
|
// #endregion
|
|
7536
8254
|
// #region @import "_layout.scss"; -> packages/classic/scss/popup/_layout.scss
|
|
@@ -7761,17 +8479,17 @@ $kendo-badge-border-radius: $kendo-border-radius-md !default;
|
|
|
7761
8479
|
|
|
7762
8480
|
/// Horizontal padding of the badge.
|
|
7763
8481
|
/// @group badge
|
|
7764
|
-
$kendo-badge-padding-x: map-get( $spacing, 1 ) !default;
|
|
7765
|
-
$kendo-badge-padding-x-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
7766
|
-
$kendo-badge-padding-x-md: map-get( $spacing, 1 ) !default;
|
|
7767
|
-
$kendo-badge-padding-x-lg: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
|
|
8482
|
+
$kendo-badge-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
8483
|
+
$kendo-badge-padding-x-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
8484
|
+
$kendo-badge-padding-x-md: k-map-get( $spacing, 1 ) !default;
|
|
8485
|
+
$kendo-badge-padding-x-lg: k-map-get( $spacing, 1 ) + k-map-get( $spacing, thin ) !default;
|
|
7768
8486
|
|
|
7769
8487
|
/// Vertical padding of the badge.
|
|
7770
8488
|
/// @group badge
|
|
7771
|
-
$kendo-badge-padding-y: map-get( $spacing, 1 ) !default;
|
|
7772
|
-
$kendo-badge-padding-y-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
7773
|
-
$kendo-badge-padding-y-md: map-get( $spacing, 1 ) !default;
|
|
7774
|
-
$kendo-badge-padding-y-lg: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
|
|
8489
|
+
$kendo-badge-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
8490
|
+
$kendo-badge-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
8491
|
+
$kendo-badge-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
8492
|
+
$kendo-badge-padding-y-lg: k-map-get( $spacing, 1 ) + k-map-get( $spacing, thin ) !default;
|
|
7775
8493
|
|
|
7776
8494
|
/// Font sizes of the badge.
|
|
7777
8495
|
/// @group badge
|
|
@@ -8023,10 +8741,10 @@ $kendo-button-border-radius: null !default;
|
|
|
8023
8741
|
|
|
8024
8742
|
/// Horizontal padding of the button.
|
|
8025
8743
|
/// @group button
|
|
8026
|
-
$kendo-button-padding-x: map-get( $spacing, 2 ) !default;
|
|
8744
|
+
$kendo-button-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
8027
8745
|
/// Vertical padding of the button.
|
|
8028
8746
|
/// @group button
|
|
8029
|
-
$kendo-button-padding-y: map-get( $spacing, 1 ) !default;
|
|
8747
|
+
$kendo-button-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
8030
8748
|
/// Font family of the button.
|
|
8031
8749
|
/// @group button
|
|
8032
8750
|
$kendo-button-font-family: $font-family !default;
|
|
@@ -8037,18 +8755,18 @@ $kendo-button-font-size: $font-size-md !default;
|
|
|
8037
8755
|
/// @group button
|
|
8038
8756
|
$kendo-button-line-height: $line-height-md !default;
|
|
8039
8757
|
|
|
8040
|
-
$kendo-button-padding-x-sm: map-get( $spacing, 2 ) !default;
|
|
8041
|
-
$kendo-button-padding-y-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
8758
|
+
$kendo-button-padding-x-sm: k-map-get( $spacing, 2 ) !default;
|
|
8759
|
+
$kendo-button-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
8042
8760
|
$kendo-button-font-size-sm: $font-size-md !default;
|
|
8043
8761
|
$kendo-button-line-height-sm: $line-height-md !default;
|
|
8044
8762
|
|
|
8045
|
-
$kendo-button-padding-x-md: map-get( $spacing, 2 ) !default;
|
|
8046
|
-
$kendo-button-padding-y-md: map-get( $spacing, 1 ) !default;
|
|
8763
|
+
$kendo-button-padding-x-md: k-map-get( $spacing, 2 ) !default;
|
|
8764
|
+
$kendo-button-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
8047
8765
|
$kendo-button-font-size-md: $font-size-md !default;
|
|
8048
8766
|
$kendo-button-line-height-md: $line-height-md !default;
|
|
8049
8767
|
|
|
8050
|
-
$kendo-button-padding-x-lg: map-get( $spacing, 3 ) !default;
|
|
8051
|
-
$kendo-button-padding-y-lg: map-get( $spacing, 2 ) !default;
|
|
8768
|
+
$kendo-button-padding-x-lg: k-map-get( $spacing, 3 ) !default;
|
|
8769
|
+
$kendo-button-padding-y-lg: k-map-get( $spacing, 2 ) !default;
|
|
8052
8770
|
$kendo-button-font-size-lg: $font-size-lg !default;
|
|
8053
8771
|
$kendo-button-line-height-lg: $line-height-lg !default;
|
|
8054
8772
|
|
|
@@ -8083,7 +8801,7 @@ $kendo-button-sizes: (
|
|
|
8083
8801
|
|
|
8084
8802
|
/// Theme colors map for the button.
|
|
8085
8803
|
/// @group button
|
|
8086
|
-
$kendo-button-theme-colors: map-merge(
|
|
8804
|
+
$kendo-button-theme-colors: k-map-merge(
|
|
8087
8805
|
$kendo-theme-colors,
|
|
8088
8806
|
( "base": $base-bg )
|
|
8089
8807
|
) !default;
|
|
@@ -8096,7 +8814,7 @@ $kendo-button-bg: $base-bg !default;
|
|
|
8096
8814
|
$kendo-button-text: $base-text !default;
|
|
8097
8815
|
/// The base border color of the button.
|
|
8098
8816
|
/// @group button
|
|
8099
|
-
$kendo-button-border: try-shade( $kendo-button-bg, 2 ) !default;
|
|
8817
|
+
$kendo-button-border: k-try-shade( $kendo-button-bg, 2 ) !default;
|
|
8100
8818
|
/// The base background gradient of the button.
|
|
8101
8819
|
/// @group button
|
|
8102
8820
|
$kendo-button-gradient: $base-gradient !default;
|
|
@@ -8106,13 +8824,13 @@ $kendo-button-shadow: null !default;
|
|
|
8106
8824
|
|
|
8107
8825
|
/// The base background of hovered button.
|
|
8108
8826
|
/// @group button
|
|
8109
|
-
$kendo-button-hover-bg: try-shade( $kendo-button-bg, 1 ) !default;
|
|
8827
|
+
$kendo-button-hover-bg: k-try-shade( $kendo-button-bg, 1 ) !default;
|
|
8110
8828
|
/// The base text color of hovered button.
|
|
8111
8829
|
/// @group button
|
|
8112
8830
|
$kendo-button-hover-text: null !default;
|
|
8113
8831
|
/// The base border color of hovered button.
|
|
8114
8832
|
/// @group button
|
|
8115
|
-
$kendo-button-hover-border: try-shade( $kendo-button-bg, 3 ) !default;
|
|
8833
|
+
$kendo-button-hover-border: k-try-shade( $kendo-button-bg, 3 ) !default;
|
|
8116
8834
|
/// The base background gradient of hovered button.
|
|
8117
8835
|
/// @group button
|
|
8118
8836
|
$kendo-button-hover-gradient: null !default;
|
|
@@ -8122,13 +8840,13 @@ $kendo-button-hover-shadow: null !default;
|
|
|
8122
8840
|
|
|
8123
8841
|
/// The base background color of active button.
|
|
8124
8842
|
/// @group button
|
|
8125
|
-
$kendo-button-active-bg: try-shade( $kendo-button-bg, 2 ) !default;
|
|
8843
|
+
$kendo-button-active-bg: k-try-shade( $kendo-button-bg, 2 ) !default;
|
|
8126
8844
|
/// The base text color of active button.
|
|
8127
8845
|
/// @group button
|
|
8128
8846
|
$kendo-button-active-text: null !default;
|
|
8129
8847
|
/// The base border color of active button.
|
|
8130
8848
|
/// @group button
|
|
8131
|
-
$kendo-button-active-border: try-shade( $kendo-button-bg, 4 ) !default;
|
|
8849
|
+
$kendo-button-active-border: k-try-shade( $kendo-button-bg, 4 ) !default;
|
|
8132
8850
|
/// The base background gradient of active button.
|
|
8133
8851
|
/// @group button
|
|
8134
8852
|
$kendo-button-active-gradient: null !default;
|
|
@@ -8186,7 +8904,7 @@ $kendo-button-disabled-shadow: null !default;
|
|
|
8186
8904
|
|
|
8187
8905
|
// Solid button
|
|
8188
8906
|
$kendo-solid-button-gradient: $base-gradient !default;
|
|
8189
|
-
$kendo-solid-button-shade-function: "try-shade" !default;
|
|
8907
|
+
$kendo-solid-button-shade-function: "k-try-shade" !default;
|
|
8190
8908
|
$kendo-solid-button-shade-text-amount: 0 !default;
|
|
8191
8909
|
$kendo-solid-button-shade-bg-amount: 0 !default;
|
|
8192
8910
|
$kendo-solid-button-shade-border-amount: 2 !default;
|
|
@@ -8869,10 +9587,10 @@ $kendo-input-border-radius: null !default;
|
|
|
8869
9587
|
|
|
8870
9588
|
/// Horizontal padding of input components.
|
|
8871
9589
|
/// @group input
|
|
8872
|
-
$kendo-input-padding-x: map-get( $spacing, 2 ) !default;
|
|
9590
|
+
$kendo-input-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
8873
9591
|
/// Vertical padding of input components.
|
|
8874
9592
|
/// @group input
|
|
8875
|
-
$kendo-input-padding-y: map-get( $spacing, 1 ) !default;
|
|
9593
|
+
$kendo-input-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
8876
9594
|
/// Font family of input components.
|
|
8877
9595
|
/// @group input
|
|
8878
9596
|
$kendo-input-font-family: $font-family !default;
|
|
@@ -8883,18 +9601,18 @@ $kendo-input-font-size: $font-size-md !default;
|
|
|
8883
9601
|
/// @group input
|
|
8884
9602
|
$kendo-input-line-height: $line-height-md !default;
|
|
8885
9603
|
|
|
8886
|
-
$kendo-input-padding-x-sm: map-get( $spacing, 2 ) !default;
|
|
8887
|
-
$kendo-input-padding-y-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
9604
|
+
$kendo-input-padding-x-sm: k-map-get( $spacing, 2 ) !default;
|
|
9605
|
+
$kendo-input-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
8888
9606
|
$kendo-input-font-size-sm: $font-size-md !default;
|
|
8889
9607
|
$kendo-input-line-height-sm: $line-height-md !default;
|
|
8890
9608
|
|
|
8891
|
-
$kendo-input-padding-x-md: map-get( $spacing, 2 ) !default;
|
|
8892
|
-
$kendo-input-padding-y-md: map-get( $spacing, 1 ) !default;
|
|
9609
|
+
$kendo-input-padding-x-md: k-map-get( $spacing, 2 ) !default;
|
|
9610
|
+
$kendo-input-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
8893
9611
|
$kendo-input-font-size-md: $font-size-md !default;
|
|
8894
9612
|
$kendo-input-line-height-md: $line-height-md !default;
|
|
8895
9613
|
|
|
8896
|
-
$kendo-input-padding-x-lg: map-get( $spacing, 3 ) !default;
|
|
8897
|
-
$kendo-input-padding-y-lg: map-get( $spacing, 2 ) !default;
|
|
9614
|
+
$kendo-input-padding-x-lg: k-map-get( $spacing, 3 ) !default;
|
|
9615
|
+
$kendo-input-padding-y-lg: k-map-get( $spacing, 2 ) !default;
|
|
8898
9616
|
$kendo-input-font-size-lg: $font-size-lg !default;
|
|
8899
9617
|
$kendo-input-line-height-lg: $line-height-lg !default;
|
|
8900
9618
|
|
|
@@ -8940,8 +9658,8 @@ $kendo-input-hover-shadow: null !default;
|
|
|
8940
9658
|
|
|
8941
9659
|
$kendo-input-focus-bg: null !default;
|
|
8942
9660
|
$kendo-input-focus-text: null !default;
|
|
8943
|
-
$kendo-input-focus-border: rgba(
|
|
8944
|
-
$kendo-input-focus-shadow: 0 2px 4px 0 rgba(
|
|
9661
|
+
$kendo-input-focus-border: rgba( black, .1 ) !default;
|
|
9662
|
+
$kendo-input-focus-shadow: 0 2px 4px 0 rgba( black, .03 ), 0 4px 5px 0 rgba( black, .04 ) !default;
|
|
8945
9663
|
|
|
8946
9664
|
$kendo-input-disabled-bg: null !default;
|
|
8947
9665
|
$kendo-input-disabled-text: null !default;
|
|
@@ -9004,7 +9722,7 @@ $kendo-picker-outline-text: $kendo-button-text !default;
|
|
|
9004
9722
|
$kendo-picker-outline-border: rgba( $kendo-picker-outline-text, .5) !default;
|
|
9005
9723
|
|
|
9006
9724
|
$kendo-picker-outline-hover-bg: $kendo-picker-outline-text !default;
|
|
9007
|
-
$kendo-picker-outline-hover-text: contrast-
|
|
9725
|
+
$kendo-picker-outline-hover-text: k-contrast-color( $kendo-picker-outline-hover-bg ) !default;
|
|
9008
9726
|
$kendo-picker-outline-hover-border: $kendo-picker-outline-hover-bg !default;
|
|
9009
9727
|
|
|
9010
9728
|
$kendo-picker-outline-focus-bg: null !default;
|
|
@@ -9044,7 +9762,7 @@ $kendo-input-clear-value-opacity: .5 !default;
|
|
|
9044
9762
|
$kendo-input-clear-value-hover-text: null !default;
|
|
9045
9763
|
$kendo-input-clear-value-hover-opacity: 1 !default;
|
|
9046
9764
|
|
|
9047
|
-
$kendo-input-values-margin-y: map-get( $spacing, thin ) !default;
|
|
9765
|
+
$kendo-input-values-margin-y: k-map-get( $spacing, thin ) !default;
|
|
9048
9766
|
$kendo-input-values-margin-x: $kendo-input-values-margin-y !default;
|
|
9049
9767
|
|
|
9050
9768
|
|
|
@@ -10234,10 +10952,10 @@ $floating-label-focus-text: null !default;
|
|
|
10234
10952
|
|
|
10235
10953
|
/// The horizontal padding of the container.
|
|
10236
10954
|
/// @group toolbar
|
|
10237
|
-
$toolbar-padding-x: map-get( $spacing, 2 ) !default;
|
|
10955
|
+
$toolbar-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
10238
10956
|
/// The vertical padding of the container.
|
|
10239
10957
|
/// @group toolbar
|
|
10240
|
-
$toolbar-padding-y: map-get( $spacing, 2 ) !default;
|
|
10958
|
+
$toolbar-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
10241
10959
|
$toolbar-border-width: 1px !default;
|
|
10242
10960
|
$toolbar-border-radius: null !default;
|
|
10243
10961
|
$toolbar-spacing: $toolbar-padding-x !default;
|
|
@@ -10258,6 +10976,8 @@ $toolbar-separator-border: inherit !default;
|
|
|
10258
10976
|
|
|
10259
10977
|
$toolbar-input-width: 10em !default;
|
|
10260
10978
|
|
|
10979
|
+
$toolbar-item-shadow: $kendo-button-focus-shadow !default;
|
|
10980
|
+
|
|
10261
10981
|
// #endregion
|
|
10262
10982
|
// #region @import "../menu/_variables.scss"; -> packages/classic/scss/menu/_variables.scss
|
|
10263
10983
|
// Menu
|
|
@@ -10295,7 +11015,7 @@ $menu-item-expanded-gradient: null !default;
|
|
|
10295
11015
|
|
|
10296
11016
|
$menu-item-focus-shadow: inset 0 0 3px 1px rgba( $menu-text, .25 ) !default;
|
|
10297
11017
|
|
|
10298
|
-
$menu-separator-spacing: map-get( $spacing, 1 ) !default;
|
|
11018
|
+
$menu-separator-spacing: k-map-get( $spacing, 1 ) !default;
|
|
10299
11019
|
|
|
10300
11020
|
$menu-scroll-button-bg: $component-bg !default;
|
|
10301
11021
|
$menu-scroll-button-text: $link-text !default;
|
|
@@ -10354,17 +11074,17 @@ $kendo-menu-popup-gradient: null !default;
|
|
|
10354
11074
|
|
|
10355
11075
|
/// Horizontal padding of the menu item in popup.
|
|
10356
11076
|
/// @group menu
|
|
10357
|
-
$kendo-menu-popup-item-padding-x: map-get( $spacing, 2 ) !default;
|
|
10358
|
-
$kendo-menu-popup-item-padding-x-sm: map-get( $spacing, 2 ) !default;
|
|
10359
|
-
$kendo-menu-popup-item-padding-x-md: map-get( $spacing, 2 ) !default;
|
|
10360
|
-
$kendo-menu-popup-item-padding-x-lg: map-get( $spacing, 2 ) !default;
|
|
11077
|
+
$kendo-menu-popup-item-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
11078
|
+
$kendo-menu-popup-item-padding-x-sm: k-map-get( $spacing, 2 ) !default;
|
|
11079
|
+
$kendo-menu-popup-item-padding-x-md: k-map-get( $spacing, 2 ) !default;
|
|
11080
|
+
$kendo-menu-popup-item-padding-x-lg: k-map-get( $spacing, 2 ) !default;
|
|
10361
11081
|
|
|
10362
11082
|
/// Vertical padding of the menu item in popup.
|
|
10363
11083
|
/// @group menu
|
|
10364
|
-
$kendo-menu-popup-item-padding-y: map-get( $spacing, 1 ) !default;
|
|
10365
|
-
$kendo-menu-popup-item-padding-y-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
10366
|
-
$kendo-menu-popup-item-padding-y-md: map-get( $spacing, 1 ) !default;
|
|
10367
|
-
$kendo-menu-popup-item-padding-y-lg: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
|
|
11084
|
+
$kendo-menu-popup-item-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
11085
|
+
$kendo-menu-popup-item-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
11086
|
+
$kendo-menu-popup-item-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
11087
|
+
$kendo-menu-popup-item-padding-y-lg: k-map-get( $spacing, 1 ) + k-map-get( $spacing, thin ) !default;
|
|
10368
11088
|
|
|
10369
11089
|
/// The end padding of the menu item in popup.
|
|
10370
11090
|
/// @group menu
|
|
@@ -10503,7 +11223,7 @@ $grid-footer-border: $grid-header-border !default;
|
|
|
10503
11223
|
|
|
10504
11224
|
/// Background color of alternating rows in grid
|
|
10505
11225
|
/// @group grid
|
|
10506
|
-
$grid-alt-bg: try-shade( $grid-bg, .5 ) !default;
|
|
11226
|
+
$grid-alt-bg: k-try-shade( $grid-bg, .5 ) !default;
|
|
10507
11227
|
/// Text color of alternating rows in grid
|
|
10508
11228
|
/// @group grid
|
|
10509
11229
|
$grid-alt-text: null !default;
|
|
@@ -10513,7 +11233,7 @@ $grid-alt-border: null !default;
|
|
|
10513
11233
|
|
|
10514
11234
|
/// Background color of hovered rows in grid
|
|
10515
11235
|
/// @group grid
|
|
10516
|
-
$grid-hovered-bg: try-shade( $grid-bg, 1 ) !default;
|
|
11236
|
+
$grid-hovered-bg: k-try-shade( $grid-bg, 1 ) !default;
|
|
10517
11237
|
/// Text color of hovered rows in grid
|
|
10518
11238
|
/// @group grid
|
|
10519
11239
|
$grid-hovered-text: null !default;
|
|
@@ -10531,17 +11251,17 @@ $grid-selected-text: null !default;
|
|
|
10531
11251
|
/// @group grid
|
|
10532
11252
|
$grid-selected-border: null !default;
|
|
10533
11253
|
|
|
10534
|
-
$grid-selected-alt-bg: try-shade( $grid-selected-bg, .5 ) !default;
|
|
10535
|
-
$grid-selected-hovered-bg: try-shade( $grid-selected-bg, 1 ) !default;
|
|
11254
|
+
$grid-selected-alt-bg: k-try-shade( $grid-selected-bg, .5 ) !default;
|
|
11255
|
+
$grid-selected-hovered-bg: k-try-shade( $grid-selected-bg, 1 ) !default;
|
|
10536
11256
|
|
|
10537
|
-
$grid-grouping-row-bg: try-shade( $grid-bg, 1 ) !default;
|
|
11257
|
+
$grid-grouping-row-bg: k-try-shade( $grid-bg, 1 ) !default;
|
|
10538
11258
|
$grid-grouping-row-text: $grid-text !default;
|
|
10539
11259
|
|
|
10540
|
-
$grid-sorted-bg: rgba( contrast-
|
|
11260
|
+
$grid-sorted-bg: rgba( k-contrast-color( $grid-bg ), .02 ) !default;
|
|
10541
11261
|
$grid-sorting-indicator-text: $primary !default;
|
|
10542
11262
|
$grid-sorting-index-font-size: $font-size-sm !default;
|
|
10543
11263
|
$grid-sorting-index-height: $icon-size !default;
|
|
10544
|
-
$grid-sorting-index-spacing-y: ($icon-spacing
|
|
11264
|
+
$grid-sorting-index-spacing-y: k-math-div( $icon-spacing, 2 ) !default;
|
|
10545
11265
|
$grid-sorting-index-spacing-x: -$grid-sorting-index-spacing-y !default;
|
|
10546
11266
|
|
|
10547
11267
|
|
|
@@ -10550,7 +11270,7 @@ $grid-focused-shadow: $kendo-list-item-focus-shadow !default;
|
|
|
10550
11270
|
$grid-edit-cell-padding-x: $grid-cell-padding-x !default;
|
|
10551
11271
|
$grid-edit-cell-padding-y: 3px !default;
|
|
10552
11272
|
|
|
10553
|
-
$grid-command-cell-button-spacing: map-get( $spacing, 2 ) !default;
|
|
11273
|
+
$grid-command-cell-button-spacing: k-map-get( $spacing, 2 ) !default;
|
|
10554
11274
|
|
|
10555
11275
|
$grid-sticky-bg: $grid-bg !default;
|
|
10556
11276
|
$grid-sticky-text: $grid-text !default;
|
|
@@ -10575,7 +11295,7 @@ $grid-column-menu-width: 230px !default;
|
|
|
10575
11295
|
|
|
10576
11296
|
$grid-filter-menu-check-all-border-bottom-width: 1px !default;
|
|
10577
11297
|
|
|
10578
|
-
$grid-filter-menu-item-spacing-x: map-get( $spacing, 2 ) !default;
|
|
11298
|
+
$grid-filter-menu-item-spacing-x: k-map-get( $spacing, 2 ) !default;
|
|
10579
11299
|
$grid-filter-menu-item-spacing-y: $grid-filter-menu-item-spacing-x !default;
|
|
10580
11300
|
|
|
10581
11301
|
$grid-column-menu-popup-padding-x: null !default;
|
|
@@ -10646,20 +11366,20 @@ $kendo-table-sizes: (
|
|
|
10646
11366
|
sm: (
|
|
10647
11367
|
font-size: $font-size-md,
|
|
10648
11368
|
line-height: $line-height-md,
|
|
10649
|
-
cell-padding-x: map-get( $spacing, 2 ),
|
|
10650
|
-
cell-padding-y: map-get( $spacing, 2 ) + map-get( $spacing, thin )
|
|
11369
|
+
cell-padding-x: k-map-get( $spacing, 2 ),
|
|
11370
|
+
cell-padding-y: k-map-get( $spacing, 2 ) + k-map-get( $spacing, thin )
|
|
10651
11371
|
),
|
|
10652
11372
|
md: (
|
|
10653
11373
|
font-size: $font-size-md,
|
|
10654
11374
|
line-height: $line-height-md,
|
|
10655
|
-
cell-padding-x: map-get( $spacing, 2 ),
|
|
10656
|
-
cell-padding-y: map-get( $spacing, 2 ) + map-get( $spacing, thin )
|
|
11375
|
+
cell-padding-x: k-map-get( $spacing, 2 ),
|
|
11376
|
+
cell-padding-y: k-map-get( $spacing, 2 ) + k-map-get( $spacing, thin )
|
|
10657
11377
|
),
|
|
10658
11378
|
lg: (
|
|
10659
11379
|
font-size: $font-size-md,
|
|
10660
11380
|
line-height: $line-height-md,
|
|
10661
|
-
cell-padding-x: map-get( $spacing, 2 ),
|
|
10662
|
-
cell-padding-y: map-get( $spacing, 2 ) + map-get( $spacing, thin )
|
|
11381
|
+
cell-padding-x: k-map-get( $spacing, 2 ),
|
|
11382
|
+
cell-padding-y: k-map-get( $spacing, 2 ) + k-map-get( $spacing, thin )
|
|
10663
11383
|
)
|
|
10664
11384
|
) !default;
|
|
10665
11385
|
|
|
@@ -11229,9 +11949,9 @@ $kendo-avatar-line-height: $line-height !default;
|
|
|
11229
11949
|
/// The sizes of the avatar.
|
|
11230
11950
|
/// @group avatar
|
|
11231
11951
|
$kendo-avatar-sizes: (
|
|
11232
|
-
sm: map-get( $spacing, 4 ),
|
|
11233
|
-
md: map-get( $spacing, 8 ),
|
|
11234
|
-
lg: map-get( $spacing, 16 )
|
|
11952
|
+
sm: k-map-get( $spacing, 4 ),
|
|
11953
|
+
md: k-map-get( $spacing, 8 ),
|
|
11954
|
+
lg: k-map-get( $spacing, 16 )
|
|
11235
11955
|
) !default;
|
|
11236
11956
|
|
|
11237
11957
|
/// Theme colors map of the avatar.
|
|
@@ -11380,21 +12100,21 @@ $kendo-avatar-theme-colors: $kendo-theme-colors !default;
|
|
|
11380
12100
|
$kendo-chip-border-width: 1px !default;
|
|
11381
12101
|
/// The spacing between the text and the icons of the chip.
|
|
11382
12102
|
/// @group chip
|
|
11383
|
-
$kendo-chip-spacing: map-get( $spacing, 1 ) !default;
|
|
12103
|
+
$kendo-chip-spacing: k-map-get( $spacing, 1 ) !default;
|
|
11384
12104
|
|
|
11385
12105
|
/// Horizontal padding of the chip.
|
|
11386
12106
|
/// @group chip
|
|
11387
|
-
$kendo-chip-padding-x: map-get( $spacing, 1 ) !default;
|
|
11388
|
-
$kendo-chip-padding-x-sm: map-get( $spacing, 1 ) !default;
|
|
11389
|
-
$kendo-chip-padding-x-md: map-get( $spacing, 1 ) !default;
|
|
11390
|
-
$kendo-chip-padding-x-lg: map-get( $spacing, 1 ) !default;
|
|
12107
|
+
$kendo-chip-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
12108
|
+
$kendo-chip-padding-x-sm: k-map-get( $spacing, 1 ) !default;
|
|
12109
|
+
$kendo-chip-padding-x-md: k-map-get( $spacing, 1 ) !default;
|
|
12110
|
+
$kendo-chip-padding-x-lg: k-map-get( $spacing, 1 ) !default;
|
|
11391
12111
|
|
|
11392
12112
|
/// Vertical padding of the chip.
|
|
11393
12113
|
/// @group chip
|
|
11394
|
-
$kendo-chip-padding-y: map-get( $spacing, 1 ) !default;
|
|
11395
|
-
$kendo-chip-padding-y-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
11396
|
-
$kendo-chip-padding-y-md: map-get( $spacing, 1 ) !default;
|
|
11397
|
-
$kendo-chip-padding-y-lg: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
|
|
12114
|
+
$kendo-chip-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
12115
|
+
$kendo-chip-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
12116
|
+
$kendo-chip-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
12117
|
+
$kendo-chip-padding-y-lg: k-map-get( $spacing, 1 ) + k-map-get( $spacing, thin ) !default;
|
|
11398
12118
|
|
|
11399
12119
|
/// Font sizes of the chip.
|
|
11400
12120
|
/// @group chip
|
|
@@ -11441,42 +12161,42 @@ $kendo-chip-base-bg: $base-text !default;
|
|
|
11441
12161
|
/// @group chip
|
|
11442
12162
|
$kendo-chip-theme-colors: (
|
|
11443
12163
|
"base": $kendo-chip-base-bg,
|
|
11444
|
-
"error": map-get( $kendo-theme-colors, "error" ),
|
|
11445
|
-
"info": map-get( $kendo-theme-colors, "info" ),
|
|
11446
|
-
"warning": map-get( $kendo-theme-colors, "warning" ),
|
|
11447
|
-
"success": map-get( $kendo-theme-colors, "success" )
|
|
12164
|
+
"error": k-map-get( $kendo-theme-colors, "error" ),
|
|
12165
|
+
"info": k-map-get( $kendo-theme-colors, "info" ),
|
|
12166
|
+
"warning": k-map-get( $kendo-theme-colors, "warning" ),
|
|
12167
|
+
"success": k-map-get( $kendo-theme-colors, "success" )
|
|
11448
12168
|
) !default;
|
|
11449
12169
|
|
|
11450
12170
|
/// The base background color of solid chip.
|
|
11451
12171
|
/// @group chip
|
|
11452
|
-
$kendo-chip-solid-bg: try-tint( $kendo-chip-base-bg, 92% ) !default;
|
|
12172
|
+
$kendo-chip-solid-bg: k-try-tint( $kendo-chip-base-bg, 92% ) !default;
|
|
11453
12173
|
/// The base text color of solid chip.
|
|
11454
12174
|
/// @group chip
|
|
11455
12175
|
$kendo-chip-solid-text: $kendo-chip-base-bg !default;
|
|
11456
12176
|
/// The base border color of solid chip.
|
|
11457
12177
|
/// @group chip
|
|
11458
|
-
$kendo-chip-solid-border: try-tint( $kendo-chip-base-bg, 70% ) !default;
|
|
12178
|
+
$kendo-chip-solid-border: k-try-tint( $kendo-chip-base-bg, 70% ) !default;
|
|
11459
12179
|
/// The base shadow of solid chip.
|
|
11460
12180
|
/// @group chip
|
|
11461
12181
|
$kendo-chip-solid-shadow: 0 0 0 2px rgba( $kendo-chip-base-bg, .16 ) !default;
|
|
11462
12182
|
|
|
11463
12183
|
/// The base background color of focused solid chip.
|
|
11464
12184
|
/// @group chip
|
|
11465
|
-
$kendo-chip-solid-focus-bg: try-tint( $kendo-chip-base-bg, 92% ) !default;
|
|
12185
|
+
$kendo-chip-solid-focus-bg: k-try-tint( $kendo-chip-base-bg, 92% ) !default;
|
|
11466
12186
|
/// The base text color of focused solid chip.
|
|
11467
12187
|
/// @group chip
|
|
11468
12188
|
$kendo-chip-solid-focus-text: null !default;
|
|
11469
12189
|
|
|
11470
12190
|
/// The base background color of hovered solid chip.
|
|
11471
12191
|
/// @group chip
|
|
11472
|
-
$kendo-chip-solid-hover-bg: try-tint( $kendo-chip-base-bg, 84% ) !default;
|
|
12192
|
+
$kendo-chip-solid-hover-bg: k-try-tint( $kendo-chip-base-bg, 84% ) !default;
|
|
11473
12193
|
/// The base text color of hovered solid chip.
|
|
11474
12194
|
/// @group chip
|
|
11475
12195
|
$kendo-chip-solid-hover-text: null !default;
|
|
11476
12196
|
|
|
11477
12197
|
/// The base background color of selected solid chip.
|
|
11478
12198
|
/// @group chip
|
|
11479
|
-
$kendo-chip-solid-selected-bg: try-tint( $kendo-chip-base-bg, 76% ) !default;
|
|
12199
|
+
$kendo-chip-solid-selected-bg: k-try-tint( $kendo-chip-base-bg, 76% ) !default;
|
|
11480
12200
|
/// The base text color of selected solid chip.
|
|
11481
12201
|
/// @group chip
|
|
11482
12202
|
$kendo-chip-solid-selected-text: null !default;
|
|
@@ -11499,7 +12219,7 @@ $kendo-chip-outline-shadow: 0 0 0 2px rgba( $kendo-chip-base-bg, .16 ) !default;
|
|
|
11499
12219
|
$kendo-chip-outline-hover-bg: $kendo-chip-base-bg !default;
|
|
11500
12220
|
/// The base text color of hovered outline chip.
|
|
11501
12221
|
/// @group chip
|
|
11502
|
-
$kendo-chip-outline-hover-text: contrast-
|
|
12222
|
+
$kendo-chip-outline-hover-text: k-contrast-color( $kendo-chip-base-bg ) !default;
|
|
11503
12223
|
|
|
11504
12224
|
/// The base background color of selected outline chip.
|
|
11505
12225
|
/// @group chip
|
|
@@ -11513,9 +12233,9 @@ $kendo-chip-outline-selected-text: $kendo-chip-outline-hover-text !default;
|
|
|
11513
12233
|
/// The sizes of the chip list.
|
|
11514
12234
|
/// @group chip
|
|
11515
12235
|
$kendo-chip-list-sizes: (
|
|
11516
|
-
sm: map-get( $spacing, 1 ),
|
|
11517
|
-
md: map-get( $spacing, 1 ),
|
|
11518
|
-
lg: map-get( $spacing, 1 )
|
|
12236
|
+
sm: k-map-get( $spacing, 1 ),
|
|
12237
|
+
md: k-map-get( $spacing, 1 ),
|
|
12238
|
+
lg: k-map-get( $spacing, 1 )
|
|
11519
12239
|
) !default;
|
|
11520
12240
|
|
|
11521
12241
|
// #endregion
|
|
@@ -11979,13 +12699,13 @@ $color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAA
|
|
|
11979
12699
|
// #region @import "_variables.scss"; -> packages/classic/scss/loader/_variables.scss
|
|
11980
12700
|
// Loader
|
|
11981
12701
|
$loader-segment-border-radius: 50% !default;
|
|
11982
|
-
$loader-segment-size-sm: map-get( $spacing, 1 ) !default;
|
|
11983
|
-
$loader-segment-size-md: map-get( $spacing, 2 ) !default;
|
|
11984
|
-
$loader-segment-size-lg: map-get( $spacing, 4 ) !default;
|
|
12702
|
+
$loader-segment-size-sm: k-map-get( $spacing, 1 ) !default;
|
|
12703
|
+
$loader-segment-size-md: k-map-get( $spacing, 2 ) !default;
|
|
12704
|
+
$loader-segment-size-lg: k-map-get( $spacing, 4 ) !default;
|
|
11985
12705
|
|
|
11986
|
-
$loader-padding-sm: ( $loader-segment-size-sm
|
|
11987
|
-
$loader-padding-md: ( $loader-segment-size-md
|
|
11988
|
-
$loader-padding-lg: ( $loader-segment-size-lg
|
|
12706
|
+
$loader-padding-sm: k-math-div( $loader-segment-size-sm, 2 ) !default;
|
|
12707
|
+
$loader-padding-md: k-math-div( $loader-segment-size-md, 2 ) !default;
|
|
12708
|
+
$loader-padding-lg: k-math-div( $loader-segment-size-lg, 2 ) !default;
|
|
11989
12709
|
|
|
11990
12710
|
$loader-spinner-3-width-sm: ( $loader-segment-size-sm * 4 ) !default;
|
|
11991
12711
|
$loader-spinner-3-height-sm: ( $loader-spinner-3-width-sm * $equilateral-height ) !default;
|
|
@@ -12010,15 +12730,15 @@ $loader-container-panel-border-radius: $kendo-border-radius-md !default;
|
|
|
12010
12730
|
$loader-container-panel-bg: $white !default;
|
|
12011
12731
|
|
|
12012
12732
|
$loader-container-padding-sm: 15px !default;
|
|
12013
|
-
$loader-container-gap-sm: map-get( $spacing, 1 ) !default;
|
|
12733
|
+
$loader-container-gap-sm: k-map-get( $spacing, 1 ) !default;
|
|
12014
12734
|
$loader-container-font-size-sm: $font-size-xs !default;
|
|
12015
12735
|
|
|
12016
12736
|
$loader-container-padding-md: 20px !default;
|
|
12017
|
-
$loader-container-gap-md: map-get( $spacing, 2 ) !default;
|
|
12737
|
+
$loader-container-gap-md: k-map-get( $spacing, 2 ) !default;
|
|
12018
12738
|
$loader-container-font-size-md: $font-size-md !default;
|
|
12019
12739
|
|
|
12020
12740
|
$loader-container-padding-lg: 25px !default;
|
|
12021
|
-
$loader-container-gap-lg: map-get( $spacing, 3 ) !default;
|
|
12741
|
+
$loader-container-gap-lg: k-map-get( $spacing, 3 ) !default;
|
|
12022
12742
|
$loader-container-font-size-lg: $font-size-lg !default;
|
|
12023
12743
|
|
|
12024
12744
|
// #endregion
|
|
@@ -12703,24 +13423,24 @@ $tooltip-title-line-height: 1 !default;
|
|
|
12703
13423
|
|
|
12704
13424
|
$tooltip-callout-size: 6px !default;
|
|
12705
13425
|
|
|
12706
|
-
$tooltip-bg: rgba( contrast-
|
|
12707
|
-
$tooltip-text: contrast-
|
|
13426
|
+
$tooltip-bg: rgba( k-contrast-color( $body-bg ), .75 ) !default;
|
|
13427
|
+
$tooltip-text: k-contrast-color( $tooltip-bg ) !default;
|
|
12708
13428
|
$tooltip-border: $tooltip-bg !default;
|
|
12709
13429
|
|
|
12710
13430
|
$tooltip-primary-bg: $primary !default;
|
|
12711
13431
|
$tooltip-primary-text: contrast-wcag( $tooltip-primary-bg ) !default;
|
|
12712
13432
|
$tooltip-primary-border: $tooltip-primary-bg !default;
|
|
12713
13433
|
$tooltip-info-bg: $info !default;
|
|
12714
|
-
$tooltip-info-text: contrast-
|
|
13434
|
+
$tooltip-info-text: k-contrast-color( $tooltip-info-bg ) !default;
|
|
12715
13435
|
$tooltip-info-border: $tooltip-info-bg !default;
|
|
12716
13436
|
$tooltip-success-bg: $success !default;
|
|
12717
|
-
$tooltip-success-text: contrast-
|
|
13437
|
+
$tooltip-success-text: k-contrast-color( $tooltip-success-bg ) !default;
|
|
12718
13438
|
$tooltip-success-border: $tooltip-success-bg !default;
|
|
12719
13439
|
$tooltip-warning-bg: $warning !default;
|
|
12720
|
-
$tooltip-warning-text: contrast-
|
|
13440
|
+
$tooltip-warning-text: k-contrast-color( $tooltip-warning-bg ) !default;
|
|
12721
13441
|
$tooltip-warning-border: $tooltip-warning-bg !default;
|
|
12722
13442
|
$tooltip-error-bg: $error !default;
|
|
12723
|
-
$tooltip-error-text: contrast-
|
|
13443
|
+
$tooltip-error-text: k-contrast-color( $tooltip-error-bg ) !default;
|
|
12724
13444
|
$tooltip-error-border: $tooltip-error-bg !default;
|
|
12725
13445
|
|
|
12726
13446
|
// #endregion
|
|
@@ -13400,7 +14120,8 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13400
14120
|
}
|
|
13401
14121
|
|
|
13402
14122
|
// Template item
|
|
13403
|
-
.k-toolbar-item:focus
|
|
14123
|
+
.k-toolbar-item:focus,
|
|
14124
|
+
.k-toolbar-item.k-focus {
|
|
13404
14125
|
text-decoration: none;
|
|
13405
14126
|
outline: 0;
|
|
13406
14127
|
}
|
|
@@ -13572,7 +14293,7 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13572
14293
|
// Template item
|
|
13573
14294
|
.k-toolbar-item:focus,
|
|
13574
14295
|
.k-toolbar-item.k-focus {
|
|
13575
|
-
@include box-shadow( $
|
|
14296
|
+
@include box-shadow( $toolbar-item-shadow );
|
|
13576
14297
|
}
|
|
13577
14298
|
|
|
13578
14299
|
|
|
@@ -13665,11 +14386,11 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13665
14386
|
// Component
|
|
13666
14387
|
// #region @import "_variables.scss"; -> packages/classic/scss/action-buttons/_variables.scss
|
|
13667
14388
|
// Actions
|
|
13668
|
-
$actions-margin-top: map-get( $spacing, 4 ) !default;
|
|
13669
|
-
$actions-padding-x: map-get( $spacing, 2 ) !default;
|
|
13670
|
-
$actions-padding-y: map-get( $spacing, 2 ) !default;
|
|
14389
|
+
$actions-margin-top: k-map-get( $spacing, 4 ) !default;
|
|
14390
|
+
$actions-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
14391
|
+
$actions-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
13671
14392
|
$actions-border-width: 0px !default;
|
|
13672
|
-
$actions-button-spacing: map-get( $spacing, 2 ) !default;
|
|
14393
|
+
$actions-button-spacing: k-map-get( $spacing, 2 ) !default;
|
|
13673
14394
|
|
|
13674
14395
|
$actions-bg: null !default;
|
|
13675
14396
|
$actions-text: null !default;
|
|
@@ -13783,13 +14504,13 @@ $actions-gradient: null !default;
|
|
|
13783
14504
|
// #region @import "../window/_variables.scss"; -> packages/classic/scss/window/_variables.scss
|
|
13784
14505
|
// Window
|
|
13785
14506
|
$window-border-width: 1px !default;
|
|
13786
|
-
$window-border-radius: map-get( $spacing, 1 ) !default;
|
|
14507
|
+
$window-border-radius: k-map-get( $spacing, 1 ) !default;
|
|
13787
14508
|
$window-font-family: $font-family !default;
|
|
13788
14509
|
$window-font-size: $font-size !default;
|
|
13789
14510
|
$window-line-height: $line-height !default;
|
|
13790
14511
|
|
|
13791
|
-
$window-titlebar-padding-x: map-get( $spacing, 3 ) !default;
|
|
13792
|
-
$window-titlebar-padding-y: map-get( $spacing, 2 ) !default;
|
|
14512
|
+
$window-titlebar-padding-x: k-map-get( $spacing, 3 ) !default;
|
|
14513
|
+
$window-titlebar-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
13793
14514
|
$window-titlebar-border-width: 0 0 1px !default;
|
|
13794
14515
|
$window-titlebar-border-style: solid !default;
|
|
13795
14516
|
|
|
@@ -13801,8 +14522,8 @@ $window-actions-gap: null !default;
|
|
|
13801
14522
|
$window-action-opacity: null !default;
|
|
13802
14523
|
$window-action-hover-opacity: null !default;
|
|
13803
14524
|
|
|
13804
|
-
$window-inner-padding-x: map-get( $spacing, 3 ) !default;
|
|
13805
|
-
$window-inner-padding-y: map-get( $spacing, 3 ) !default;
|
|
14525
|
+
$window-inner-padding-x: k-map-get( $spacing, 3 ) !default;
|
|
14526
|
+
$window-inner-padding-y: k-map-get( $spacing, 3 ) !default;
|
|
13806
14527
|
|
|
13807
14528
|
$window-buttongroup-padding-x: $actions-padding-x !default;
|
|
13808
14529
|
$window-buttongroup-padding-y: $actions-padding-y !default;
|
|
@@ -13817,8 +14538,8 @@ $window-titlebar-text: $header-text !default;
|
|
|
13817
14538
|
$window-titlebar-border: $header-border !default;
|
|
13818
14539
|
$window-titlebar-gradient: $header-gradient !default;
|
|
13819
14540
|
|
|
13820
|
-
$window-shadow: 1px 1px 7px 1px rgba(
|
|
13821
|
-
$window-focused-shadow: 1px 1px 7px 1px rgba(
|
|
14541
|
+
$window-shadow: 1px 1px 7px 1px rgba( black, .12 ) !default;
|
|
14542
|
+
$window-focused-shadow: 1px 1px 7px 1px rgba( black, .25 ) !default;
|
|
13822
14543
|
|
|
13823
14544
|
$window-sizes: (
|
|
13824
14545
|
sm: 300px,
|
|
@@ -13892,7 +14613,7 @@ $fieldset-text: null !default;
|
|
|
13892
14613
|
$fieldset-border: null !default;
|
|
13893
14614
|
|
|
13894
14615
|
$fieldset-legend-bg: null !default;
|
|
13895
|
-
$fieldset-legend-text: try-shade( $body-text, 2 ) !default;
|
|
14616
|
+
$fieldset-legend-text: k-try-shade( $body-text, 2 ) !default;
|
|
13896
14617
|
$fieldset-legend-border: null !default;
|
|
13897
14618
|
|
|
13898
14619
|
// #endregion
|
|
@@ -15121,14 +15842,14 @@ $progressbar-font-family: $font-family !default;
|
|
|
15121
15842
|
$progressbar-font-size: $font-size-sm !default;
|
|
15122
15843
|
$progressbar-line-height: 1 !default;
|
|
15123
15844
|
|
|
15124
|
-
$progressbar-bg: try-shade( $component-bg, 1 ) !default;
|
|
15845
|
+
$progressbar-bg: k-try-shade( $component-bg, 1 ) !default;
|
|
15125
15846
|
$progressbar-text: $component-text !default;
|
|
15126
15847
|
$progressbar-border: $component-border !default;
|
|
15127
15848
|
$progressbar-gradient: null !default;
|
|
15128
15849
|
|
|
15129
15850
|
$progressbar-fill-bg: $primary !default;
|
|
15130
15851
|
$progressbar-fill-text: contrast-wcag( $progressbar-fill-bg ) !default;
|
|
15131
|
-
$progressbar-fill-border: try-shade( $progressbar-fill-bg ) !default;
|
|
15852
|
+
$progressbar-fill-border: k-try-shade( $progressbar-fill-bg ) !default;
|
|
15132
15853
|
$progressbar-fill-gradient: null !default;
|
|
15133
15854
|
|
|
15134
15855
|
$progressbar-indeterminate-bg: $progressbar-bg !default;
|
|
@@ -15526,19 +16247,19 @@ $kendo-radio-border-width: 1px !default;
|
|
|
15526
16247
|
// Radio button sizes
|
|
15527
16248
|
$kendo-radio-sizes: (
|
|
15528
16249
|
sm: (
|
|
15529
|
-
size: map-get( $spacing, 3 ),
|
|
15530
|
-
glyph-size: ( map-get( $spacing, 3 ) - map-get( $spacing, thin ) ),
|
|
15531
|
-
ripple-size: map-get( $spacing, 3 ) * 3
|
|
16250
|
+
size: k-map-get( $spacing, 3 ),
|
|
16251
|
+
glyph-size: ( k-map-get( $spacing, 3 ) - k-map-get( $spacing, thin ) ),
|
|
16252
|
+
ripple-size: k-map-get( $spacing, 3 ) * 3
|
|
15532
16253
|
),
|
|
15533
16254
|
md: (
|
|
15534
|
-
size: map-get( $spacing, 4 ),
|
|
15535
|
-
glyph-size: ( map-get( $spacing, 4 ) - map-get( $spacing, thin ) ),
|
|
15536
|
-
ripple-size: map-get( $spacing, 4 ) * 3
|
|
16255
|
+
size: k-map-get( $spacing, 4 ),
|
|
16256
|
+
glyph-size: ( k-map-get( $spacing, 4 ) - k-map-get( $spacing, thin ) ),
|
|
16257
|
+
ripple-size: k-map-get( $spacing, 4 ) * 3
|
|
15537
16258
|
),
|
|
15538
16259
|
lg: (
|
|
15539
|
-
size: map-get( $spacing, 5 ),
|
|
15540
|
-
glyph-size: ( map-get( $spacing, 5 ) - map-get( $spacing, thin ) ),
|
|
15541
|
-
ripple-size: map-get( $spacing, 5 ) * 3
|
|
16260
|
+
size: k-map-get( $spacing, 5 ),
|
|
16261
|
+
glyph-size: ( k-map-get( $spacing, 5 ) - k-map-get( $spacing, thin ) ),
|
|
16262
|
+
ripple-size: k-map-get( $spacing, 5 ) * 3
|
|
15542
16263
|
)
|
|
15543
16264
|
) !default;
|
|
15544
16265
|
|
|
@@ -15641,14 +16362,14 @@ $kendo-radio-disabled-checked-image: null !default;
|
|
|
15641
16362
|
|
|
15642
16363
|
/// The horizontal margin of the radio button inside of a label.
|
|
15643
16364
|
/// @group radio
|
|
15644
|
-
$kendo-radio-label-margin-x: map-get( $spacing, 1 ) !default;
|
|
16365
|
+
$kendo-radio-label-margin-x: k-map-get( $spacing, 1 ) !default;
|
|
15645
16366
|
|
|
15646
16367
|
|
|
15647
16368
|
// Radio list
|
|
15648
16369
|
|
|
15649
16370
|
/// Spacing between items of horizontal radio button list.
|
|
15650
16371
|
/// @group radio
|
|
15651
|
-
$kendo-radio-list-spacing: map-get( $spacing, 4 ) !default;
|
|
16372
|
+
$kendo-radio-list-spacing: k-map-get( $spacing, 4 ) !default;
|
|
15652
16373
|
/// Horizontal padding of radio button list items.
|
|
15653
16374
|
/// @group radio
|
|
15654
16375
|
$kendo-radio-list-item-padding-x: 0px !default;
|
|
@@ -16024,17 +16745,17 @@ $slider-draghandle-active-size: null !default;
|
|
|
16024
16745
|
|
|
16025
16746
|
$slider-draghandle-bg: $primary !default;
|
|
16026
16747
|
$slider-draghandle-text: contrast-wcag( $primary ) !default;
|
|
16027
|
-
$slider-draghandle-border: try-shade( $primary, 2 ) !default;
|
|
16748
|
+
$slider-draghandle-border: k-try-shade( $primary, 2 ) !default;
|
|
16028
16749
|
$slider-draghandle-gradient: null !default;
|
|
16029
16750
|
|
|
16030
|
-
$slider-draghandle-hovered-bg: try-shade( $primary, 1 ) !default;
|
|
16751
|
+
$slider-draghandle-hovered-bg: k-try-shade( $primary, 1 ) !default;
|
|
16031
16752
|
$slider-draghandle-hovered-text: null !default;
|
|
16032
|
-
$slider-draghandle-hovered-border: try-shade( $slider-draghandle-hovered-bg, 2 ) !default;
|
|
16753
|
+
$slider-draghandle-hovered-border: k-try-shade( $slider-draghandle-hovered-bg, 2 ) !default;
|
|
16033
16754
|
$slider-draghandle-hovered-gradient: null !default;
|
|
16034
16755
|
|
|
16035
|
-
$slider-draghandle-pressed-bg: try-shade( $primary, 2 ) !default;
|
|
16756
|
+
$slider-draghandle-pressed-bg: k-try-shade( $primary, 2 ) !default;
|
|
16036
16757
|
$slider-draghandle-pressed-text: null !default;
|
|
16037
|
-
$slider-draghandle-pressed-border: try-shade( $slider-draghandle-pressed-bg, 2 ) !default;
|
|
16758
|
+
$slider-draghandle-pressed-border: k-try-shade( $slider-draghandle-pressed-bg, 2 ) !default;
|
|
16038
16759
|
$slider-draghandle-pressed-gradient: null !default;
|
|
16039
16760
|
|
|
16040
16761
|
$slider-draghandle-focused-shadow: 0 0 4px 0 rgba( $slider-draghandle-border, .75 ) !default;
|
|
@@ -16044,7 +16765,7 @@ $slider-transition-function: ease-out !default;
|
|
|
16044
16765
|
$slider-draghandle-transition-speed: .4s !default;
|
|
16045
16766
|
$slider-draghandle-transition-function: cubic-bezier(.25, .8, .25, 1) !default;
|
|
16046
16767
|
|
|
16047
|
-
$slider-track-bg: try-shade( $component-bg, 1 ) !default;
|
|
16768
|
+
$slider-track-bg: k-try-shade( $component-bg, 1 ) !default;
|
|
16048
16769
|
$slider-selection-bg: $primary !default;
|
|
16049
16770
|
$slider-disabled-opacity: null !default;
|
|
16050
16771
|
|
|
@@ -16633,8 +17354,8 @@ $calendar-bg: $component-bg !default;
|
|
|
16633
17354
|
$calendar-text: $component-text !default;
|
|
16634
17355
|
$calendar-border: $component-border !default;
|
|
16635
17356
|
|
|
16636
|
-
$calendar-header-padding-x: map-get( $spacing, 1 ) !default;
|
|
16637
|
-
$calendar-header-padding-y: map-get( $spacing, 1 ) !default;
|
|
17357
|
+
$calendar-header-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
17358
|
+
$calendar-header-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
16638
17359
|
$calendar-header-border-width: 1px !default;
|
|
16639
17360
|
|
|
16640
17361
|
$calendar-header-bg: $header-bg !default;
|
|
@@ -16643,15 +17364,15 @@ $calendar-header-border: $header-border !default;
|
|
|
16643
17364
|
$calendar-header-gradient: $header-gradient !default;
|
|
16644
17365
|
$calendar-header-shadow: null !default;
|
|
16645
17366
|
|
|
16646
|
-
$calendar-nav-gap: map-get( $spacing, 1 ) !default;
|
|
17367
|
+
$calendar-nav-gap: k-map-get( $spacing, 1 ) !default;
|
|
16647
17368
|
|
|
16648
17369
|
$calendar-today-nav-text: $link-text !default;
|
|
16649
17370
|
$calendar-today-nav-hover-text: $link-hover-text !default;
|
|
16650
17371
|
|
|
16651
|
-
$calendar-footer-padding-x: map-get( $spacing, 4 ) !default;
|
|
16652
|
-
$calendar-footer-padding-y: map-get( $spacing, 2 ) !default;
|
|
17372
|
+
$calendar-footer-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
17373
|
+
$calendar-footer-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
16653
17374
|
|
|
16654
|
-
$calendar-cell-padding-x: map-get( $spacing, 1 ) !default;
|
|
17375
|
+
$calendar-cell-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
16655
17376
|
$calendar-cell-padding-y: $calendar-cell-padding-x !default;
|
|
16656
17377
|
$calendar-cell-line-height: $calendar-line-height !default;
|
|
16657
17378
|
$calendar-cell-border-radius: $kendo-border-radius-md !default;
|
|
@@ -16666,8 +17387,8 @@ $calendar-header-cell-bg: null !default;
|
|
|
16666
17387
|
$calendar-header-cell-text: $subtle-text !default;
|
|
16667
17388
|
$calendar-header-cell-opacity: null !default;
|
|
16668
17389
|
|
|
16669
|
-
$calendar-caption-padding-x: map-get( $spacing, 2 ) !default;
|
|
16670
|
-
$calendar-caption-padding-y: map-get( $spacing, 1 ) !default;
|
|
17390
|
+
$calendar-caption-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
17391
|
+
$calendar-caption-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
16671
17392
|
$calendar-caption-height: $calendar-cell-size !default;
|
|
16672
17393
|
$calendar-caption-font-size: null !default;
|
|
16673
17394
|
$calendar-caption-line-height: null !default;
|
|
@@ -16675,7 +17396,7 @@ $calendar-caption-font-weight: bold !default;
|
|
|
16675
17396
|
|
|
16676
17397
|
$calendar-view-width: ($calendar-cell-size * 7) !default;
|
|
16677
17398
|
$calendar-view-height: ($calendar-cell-size * 7) !default;
|
|
16678
|
-
$calendar-view-gap: map-get( $spacing, 4 ) !default;
|
|
17399
|
+
$calendar-view-gap: k-map-get( $spacing, 4 ) !default;
|
|
16679
17400
|
|
|
16680
17401
|
$calendar-weekend-bg: null !default;
|
|
16681
17402
|
$calendar-weekend-text: null !default;
|
|
@@ -16709,7 +17430,7 @@ $calendar-cell-selected-hover-text: $selected-hover-text !default;
|
|
|
16709
17430
|
$calendar-cell-selected-hover-border: $selected-hover-border !default;
|
|
16710
17431
|
$calendar-cell-selected-hover-gradient: null !default;
|
|
16711
17432
|
|
|
16712
|
-
$calendar-cell-focused-shadow: inset 0 0 0 2px rgba(
|
|
17433
|
+
$calendar-cell-focused-shadow: inset 0 0 0 2px rgba( black, .08 ) !default;
|
|
16713
17434
|
$calendar-cell-selected-focus-shadow: $calendar-cell-focused-shadow !default;
|
|
16714
17435
|
|
|
16715
17436
|
|
|
@@ -16723,10 +17444,10 @@ $calendar-navigation-border: $calendar-header-border !default;
|
|
|
16723
17444
|
|
|
16724
17445
|
|
|
16725
17446
|
// Infinite calendar
|
|
16726
|
-
$infinite-calendar-header-padding-x: map-get( $spacing, 4 ) !default;
|
|
16727
|
-
$infinite-calendar-header-padding-y: map-get( $spacing, 2 ) !default;
|
|
17447
|
+
$infinite-calendar-header-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
17448
|
+
$infinite-calendar-header-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
16728
17449
|
|
|
16729
|
-
$infinite-calendar-view-padding-x: map-get( $spacing, 4 ) !default;
|
|
17450
|
+
$infinite-calendar-view-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
16730
17451
|
$infinite-calendar-view-padding-y: 0px !default;
|
|
16731
17452
|
$infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
16732
17453
|
|
|
@@ -16738,20 +17459,20 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
16738
17459
|
$kendo-calendar-sm-font-size: $font-size-md !default;
|
|
16739
17460
|
$kendo-calendar-sm-line-height: $line-height-md !default;
|
|
16740
17461
|
$kendo-calendar-sm-cell-size: 28px !default;
|
|
16741
|
-
$kendo-calendar-sm-cell-padding-x: map-get( $spacing, 1) - map-get( $spacing, thin ) !default;
|
|
16742
|
-
$kendo-calendar-sm-cell-padding-y: map-get( $spacing, 1) - map-get( $spacing, thin ) !default;
|
|
17462
|
+
$kendo-calendar-sm-cell-padding-x: k-map-get( $spacing, 1) - k-map-get( $spacing, thin ) !default;
|
|
17463
|
+
$kendo-calendar-sm-cell-padding-y: k-map-get( $spacing, 1) - k-map-get( $spacing, thin ) !default;
|
|
16743
17464
|
|
|
16744
17465
|
$kendo-calendar-md-font-size: $font-size-md !default;
|
|
16745
17466
|
$kendo-calendar-md-line-height: $line-height-md !default;
|
|
16746
17467
|
$kendo-calendar-md-cell-size: 32px !default;
|
|
16747
|
-
$kendo-calendar-md-cell-padding-x: map-get( $spacing, 1 ) !default;
|
|
16748
|
-
$kendo-calendar-md-cell-padding-y: map-get( $spacing, 1 ) !default;
|
|
17468
|
+
$kendo-calendar-md-cell-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
17469
|
+
$kendo-calendar-md-cell-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
16749
17470
|
|
|
16750
17471
|
$kendo-calendar-lg-font-size: $font-size-lg !default;
|
|
16751
17472
|
$kendo-calendar-lg-line-height: $line-height-lg !default;
|
|
16752
17473
|
$kendo-calendar-lg-cell-size: 40px !default;
|
|
16753
|
-
$kendo-calendar-lg-cell-padding-x: map-get( $spacing, 2 ) !default;
|
|
16754
|
-
$kendo-calendar-lg-cell-padding-y: map-get( $spacing, 2 ) !default;
|
|
17474
|
+
$kendo-calendar-lg-cell-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
17475
|
+
$kendo-calendar-lg-cell-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
16755
17476
|
|
|
16756
17477
|
$kendo-calendar-sizes: (
|
|
16757
17478
|
sm: (
|
|
@@ -17594,8 +18315,8 @@ $time-selector-bg: $component-bg !default;
|
|
|
17594
18315
|
$time-selector-text: $component-text !default;
|
|
17595
18316
|
$time-selector-border: $component-border !default;
|
|
17596
18317
|
|
|
17597
|
-
$time-selector-header-padding-x: map-get( $spacing, 1 ) !default;
|
|
17598
|
-
$time-selector-header-padding-y: map-get( $spacing, 1 ) !default;
|
|
18318
|
+
$time-selector-header-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
18319
|
+
$time-selector-header-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
17599
18320
|
$time-selector-header-border-width: 0px !default;
|
|
17600
18321
|
|
|
17601
18322
|
$time-list-width: 4em !default;
|
|
@@ -17615,7 +18336,7 @@ $time-list-highlight-height: calc( #{$time-selector-font-size * $time-selector-l
|
|
|
17615
18336
|
$time-list-highlight-bg: $component-bg !default;
|
|
17616
18337
|
$time-list-highlight-border: $component-border !default;
|
|
17617
18338
|
|
|
17618
|
-
$time-list-focused-bg: rgba(
|
|
18339
|
+
$time-list-focused-bg: rgba( black, .04 ) !default;
|
|
17619
18340
|
|
|
17620
18341
|
|
|
17621
18342
|
// Time selector sizes
|
|
@@ -18072,7 +18793,7 @@ $kendo-time-selector-sizes: (
|
|
|
18072
18793
|
// Component
|
|
18073
18794
|
// #region @import "_variables.scss"; -> packages/classic/scss/captcha/_variables.scss
|
|
18074
18795
|
// Captcha
|
|
18075
|
-
$captcha-spacer: map-get( $spacing, 2 ) !default;
|
|
18796
|
+
$captcha-spacer: k-map-get( $spacing, 2 ) !default;
|
|
18076
18797
|
|
|
18077
18798
|
$captcha-width: 280px !default;
|
|
18078
18799
|
$captcha-font-family: $font-family !default;
|
|
@@ -18087,7 +18808,7 @@ $captcha-image-wrap-gap: $captcha-spacer !default;
|
|
|
18087
18808
|
|
|
18088
18809
|
$captcha-image-controls-gap: $captcha-spacer !default;
|
|
18089
18810
|
|
|
18090
|
-
$captcha-validation-message-margin-top: $captcha-spacer
|
|
18811
|
+
$captcha-validation-message-margin-top: k-math-div( $captcha-spacer, 2 ) !default;
|
|
18091
18812
|
$captcha-validation-message-font-size: $font-size-sm !default;
|
|
18092
18813
|
$captcha-validation-message-font-style: italic !default;
|
|
18093
18814
|
|
|
@@ -18202,7 +18923,7 @@ $colorpalette-font-family: $font-family !default;
|
|
|
18202
18923
|
$colorpalette-font-size: $font-size !default;
|
|
18203
18924
|
$colorpalette-line-height: 0 !default;
|
|
18204
18925
|
|
|
18205
|
-
$colorpalette-tile-width: map-get( $spacing, 6 ) !default;
|
|
18926
|
+
$colorpalette-tile-width: k-map-get( $spacing, 6 ) !default;
|
|
18206
18927
|
$colorpalette-tile-height: $colorpalette-tile-width !default;
|
|
18207
18928
|
$colorpalette-tile-focus-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .5 ) !default;
|
|
18208
18929
|
$colorpalette-tile-hover-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .8 ) !default;
|
|
@@ -18393,7 +19114,7 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
18393
19114
|
// #endregion
|
|
18394
19115
|
// #region @import "_variables.scss"; -> packages/classic/scss/colorgradient/_variables.scss
|
|
18395
19116
|
// ColorGradient
|
|
18396
|
-
$colorgradient-spacer: map-get( $spacing, 3 ) !default;
|
|
19117
|
+
$colorgradient-spacer: k-map-get( $spacing, 3 ) !default;
|
|
18397
19118
|
|
|
18398
19119
|
$colorgradient-width: 272px !default;
|
|
18399
19120
|
$colorgradient-border-width: 1px !default;
|
|
@@ -18409,7 +19130,7 @@ $colorgradient-text: $component-text !default;
|
|
|
18409
19130
|
$colorgradient-border: $component-border !default;
|
|
18410
19131
|
|
|
18411
19132
|
$colorgradient-focus-border: null !default;
|
|
18412
|
-
$colorgradient-focus-shadow: 1px 1px 7px 1px rgba(
|
|
19133
|
+
$colorgradient-focus-shadow: 1px 1px 7px 1px rgba( black, .3 ) !default;
|
|
18413
19134
|
|
|
18414
19135
|
|
|
18415
19136
|
$colorgradient-canvas-border-radius: $kendo-border-radius-md !default;
|
|
@@ -18429,21 +19150,21 @@ $colorgradient-draghandle-border-width: 1px !default;
|
|
|
18429
19150
|
$colorgradient-draghandle-border-radius: 50% !default;
|
|
18430
19151
|
$colorgradient-draghandle-bg: transparent !default;
|
|
18431
19152
|
$colorgradient-draghandle-text: null !default;
|
|
18432
|
-
$colorgradient-draghandle-border: rgba(
|
|
18433
|
-
$colorgradient-draghandle-shadow: 0 1px 4px rgba(
|
|
19153
|
+
$colorgradient-draghandle-border: rgba( white, .8) !default;
|
|
19154
|
+
$colorgradient-draghandle-shadow: 0 1px 4px rgba( black, .5 ) !default;
|
|
18434
19155
|
$colorgradient-draghandle-focus-shadow: 0 1px 4px black !default;
|
|
18435
19156
|
$colorgradient-draghandle-hover-shadow: $colorgradient-draghandle-focus-shadow !default;
|
|
18436
19157
|
|
|
18437
|
-
$colorgradient-canvas-draghandle-margin-y: -( $colorgradient-draghandle-height
|
|
18438
|
-
$colorgradient-canvas-draghandle-margin-x: -( $colorgradient-draghandle-width
|
|
19158
|
+
$colorgradient-canvas-draghandle-margin-y: - k-math-div( $colorgradient-draghandle-height, 2 ) !default;
|
|
19159
|
+
$colorgradient-canvas-draghandle-margin-x: - k-math-div( $colorgradient-draghandle-width, 2 ) !default;
|
|
18439
19160
|
|
|
18440
19161
|
$colorgradient-input-width: 46px !default;
|
|
18441
|
-
$colorgradient-input-gap: ( $colorgradient-spacer
|
|
18442
|
-
$colorgradient-input-label-gap: ( $colorgradient-spacer
|
|
19162
|
+
$colorgradient-input-gap: k-math-div( $colorgradient-spacer, 1.5 ) !default;
|
|
19163
|
+
$colorgradient-input-label-gap: k-math-div( $colorgradient-spacer, 3 ) !default;
|
|
18443
19164
|
$colorgradient-input-label-text: $subtle-text !default;
|
|
18444
19165
|
|
|
18445
19166
|
$colorgradient-contrast-ratio-font-weight: $font-weight-bold !default;
|
|
18446
|
-
$colorgradient-contrast-spacer: ( $colorgradient-spacer
|
|
19167
|
+
$colorgradient-contrast-spacer: k-math-div( $colorgradient-spacer, 1.5 ) !default;
|
|
18447
19168
|
|
|
18448
19169
|
// #endregion
|
|
18449
19170
|
// #region @import "_layout.scss"; -> packages/classic/scss/colorgradient/_layout.scss
|
|
@@ -18767,7 +19488,7 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 1.5 ) !default;
|
|
|
18767
19488
|
// Component
|
|
18768
19489
|
// #region @import "_variables.scss"; -> packages/classic/scss/coloreditor/_variables.scss
|
|
18769
19490
|
// Coloreditor/FlatColorPicker
|
|
18770
|
-
$coloreditor-spacer: map-get( $spacing, 3 ) !default;
|
|
19491
|
+
$coloreditor-spacer: k-map-get( $spacing, 3 ) !default;
|
|
18771
19492
|
|
|
18772
19493
|
$coloreditor-min-width: 272px !default;
|
|
18773
19494
|
$coloreditor-border-width: 1px !default;
|
|
@@ -18780,13 +19501,13 @@ $coloreditor-text: $component-text !default;
|
|
|
18780
19501
|
$coloreditor-border: $component-border !default;
|
|
18781
19502
|
|
|
18782
19503
|
$coloreditor-focus-border: null !default;
|
|
18783
|
-
$coloreditor-focus-shadow: 1px 1px 7px 1px rgba(
|
|
19504
|
+
$coloreditor-focus-shadow: 1px 1px 7px 1px rgba( black, .3 ) !default;
|
|
18784
19505
|
|
|
18785
19506
|
$coloreditor-header-padding-y: $coloreditor-spacer !default;
|
|
18786
19507
|
$coloreditor-header-padding-x: $coloreditor-header-padding-y !default;
|
|
18787
|
-
$coloreditor-header-actions-gap: ( $coloreditor-spacer
|
|
19508
|
+
$coloreditor-header-actions-gap: k-math-div( $coloreditor-spacer, 1.5 ) !default;
|
|
18788
19509
|
|
|
18789
|
-
$coloreditor-preview-gap: map-get( $spacing, 1 ) !default;
|
|
19510
|
+
$coloreditor-preview-gap: k-map-get( $spacing, 1 ) !default;
|
|
18790
19511
|
$coloreditor-color-preview-width: 32px !default;
|
|
18791
19512
|
$coloreditor-color-preview-height: 12px !default;
|
|
18792
19513
|
|
|
@@ -19616,16 +20337,16 @@ $kendo-treeview-indent: 16px !default;
|
|
|
19616
20337
|
|
|
19617
20338
|
/// Horizontal padding of treeview items.
|
|
19618
20339
|
/// @group treeview
|
|
19619
|
-
$kendo-treeview-item-padding-x: map-get( $spacing, 2 ) !default;
|
|
19620
|
-
$kendo-treeview-item-padding-x-sm: map-get( $spacing, 2 ) !default;
|
|
19621
|
-
$kendo-treeview-item-padding-x-md: map-get( $spacing, 2 ) !default;
|
|
19622
|
-
$kendo-treeview-item-padding-x-lg: map-get( $spacing, 3 ) !default;
|
|
20340
|
+
$kendo-treeview-item-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
20341
|
+
$kendo-treeview-item-padding-x-sm: k-map-get( $spacing, 2 ) !default;
|
|
20342
|
+
$kendo-treeview-item-padding-x-md: k-map-get( $spacing, 2 ) !default;
|
|
20343
|
+
$kendo-treeview-item-padding-x-lg: k-map-get( $spacing, 3 ) !default;
|
|
19623
20344
|
/// Vertical padding of treeview items.
|
|
19624
20345
|
/// @group treeview
|
|
19625
|
-
$kendo-treeview-item-padding-y: map-get( $spacing, 1 ) !default;
|
|
19626
|
-
$kendo-treeview-item-padding-y-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
19627
|
-
$kendo-treeview-item-padding-y-md: map-get( $spacing, 1 ) !default;
|
|
19628
|
-
$kendo-treeview-item-padding-y-lg: map-get( $spacing, 2 ) !default;
|
|
20346
|
+
$kendo-treeview-item-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
20347
|
+
$kendo-treeview-item-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
20348
|
+
$kendo-treeview-item-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
20349
|
+
$kendo-treeview-item-padding-y-lg: k-map-get( $spacing, 2 ) !default;
|
|
19629
20350
|
/// Border width of treeview items.
|
|
19630
20351
|
/// @group treeview
|
|
19631
20352
|
$kendo-treeview-item-border-width: 0px !default;
|
|
@@ -20017,8 +20738,8 @@ $kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !defaul
|
|
|
20017
20738
|
// Component
|
|
20018
20739
|
// #region @import "_variables.scss"; -> packages/classic/scss/dropdowntree/_variables.scss
|
|
20019
20740
|
// Dropdowntree
|
|
20020
|
-
$dropdowntree-popup-padding-x: map-get( $spacing, 2 ) !default;
|
|
20021
|
-
$dropdowntree-popup-padding-y: map-get( $spacing, 2 ) !default;
|
|
20741
|
+
$dropdowntree-popup-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
20742
|
+
$dropdowntree-popup-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
20022
20743
|
|
|
20023
20744
|
// #endregion
|
|
20024
20745
|
// #region @import "_layout.scss"; -> packages/classic/scss/dropdowntree/_layout.scss
|
|
@@ -20156,8 +20877,8 @@ $rating-icon-selected-text: $selected-bg !default;
|
|
|
20156
20877
|
$rating-icon-hover-text: $selected-bg !default;
|
|
20157
20878
|
$rating-icon-focused-text: $selected-bg !default;
|
|
20158
20879
|
|
|
20159
|
-
$rating-icon-focused-shadow: 0 2px 4px rgba(
|
|
20160
|
-
$rating-icon-focused-selected-shadow: 0 2px 4px rgba(
|
|
20880
|
+
$rating-icon-focused-shadow: 0 2px 4px rgba( black, .1 ) !default;
|
|
20881
|
+
$rating-icon-focused-selected-shadow: 0 2px 4px rgba( black, .1) !default;
|
|
20161
20882
|
|
|
20162
20883
|
// #endregion
|
|
20163
20884
|
// #region @import "_layout.scss"; -> packages/classic/scss/rating/_layout.scss
|
|
@@ -20435,7 +21156,7 @@ $kendo-switch-off-track-focus-border: null !default;
|
|
|
20435
21156
|
$kendo-switch-off-track-focus-gradient: null !default;
|
|
20436
21157
|
/// The ring around the track when the focused switch is not checked.
|
|
20437
21158
|
/// @group switch
|
|
20438
|
-
$kendo-switch-off-track-focus-ring: 0 0 3px 1px rgba( if($dark-theme, $white, $black), .25 ) !default;
|
|
21159
|
+
$kendo-switch-off-track-focus-ring: 0 0 3px 1px rgba( if( $dark-theme, $white, $black ), .25 ) !default;
|
|
20439
21160
|
|
|
20440
21161
|
/// The background of the track when the disabled switch is not checked.
|
|
20441
21162
|
/// @group switch
|
|
@@ -20452,7 +21173,7 @@ $kendo-switch-off-track-disabled-gradient: null !default;
|
|
|
20452
21173
|
|
|
20453
21174
|
/// The background of the thumb when the switch is not checked.
|
|
20454
21175
|
/// @group switch
|
|
20455
|
-
$kendo-switch-off-thumb-bg: try-shade( $kendo-switch-off-track-bg ) !default;
|
|
21176
|
+
$kendo-switch-off-thumb-bg: k-try-shade( $kendo-switch-off-track-bg ) !default;
|
|
20456
21177
|
/// The text color of the thumb when the switch is not checked.
|
|
20457
21178
|
/// @group switch
|
|
20458
21179
|
$kendo-switch-off-thumb-text: null !default;
|
|
@@ -20465,7 +21186,7 @@ $kendo-switch-off-thumb-gradient: $base-gradient !default;
|
|
|
20465
21186
|
|
|
20466
21187
|
/// The background of the thumb when the hovered switch is not checked.
|
|
20467
21188
|
/// @group switch
|
|
20468
|
-
$kendo-switch-off-thumb-hover-bg: try-shade( $kendo-switch-off-thumb-bg ) !default;
|
|
21189
|
+
$kendo-switch-off-thumb-hover-bg: k-try-shade( $kendo-switch-off-thumb-bg ) !default;
|
|
20469
21190
|
/// The text color of the thumb when the hovered switch is not checked.
|
|
20470
21191
|
/// @group switch
|
|
20471
21192
|
$kendo-switch-off-thumb-hover-text: null !default;
|
|
@@ -20517,7 +21238,7 @@ $kendo-switch-on-track-focus-border: null !default;
|
|
|
20517
21238
|
$kendo-switch-on-track-focus-gradient: null !default;
|
|
20518
21239
|
/// The ring around the track wen the focused switch is checked.
|
|
20519
21240
|
/// @group switch
|
|
20520
|
-
$kendo-switch-on-track-focus-ring: 0 0 3px 1px rgba( if($dark-theme, $white, $black), .25 ) !default;
|
|
21241
|
+
$kendo-switch-on-track-focus-ring: 0 0 3px 1px rgba( if( $dark-theme, $white, $black ), .25 ) !default;
|
|
20521
21242
|
|
|
20522
21243
|
/// The background of the track when the disabled switch is checked.
|
|
20523
21244
|
/// @group switch
|
|
@@ -20540,20 +21261,20 @@ $kendo-switch-on-thumb-bg: $primary !default;
|
|
|
20540
21261
|
$kendo-switch-on-thumb-text: null !default;
|
|
20541
21262
|
/// The border color of the thumb when the switch is checked.
|
|
20542
21263
|
/// @group switch
|
|
20543
|
-
$kendo-switch-on-thumb-border: try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
21264
|
+
$kendo-switch-on-thumb-border: k-try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
20544
21265
|
/// The background gradient of the thumb when the switch is checked.
|
|
20545
21266
|
/// @group switch
|
|
20546
21267
|
$kendo-switch-on-thumb-gradient: $base-gradient !default;
|
|
20547
21268
|
|
|
20548
21269
|
/// The background of the thumb when the hovered switch is checked.
|
|
20549
21270
|
/// @group switch
|
|
20550
|
-
$kendo-switch-on-thumb-hover-bg: try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
21271
|
+
$kendo-switch-on-thumb-hover-bg: k-try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
20551
21272
|
/// The text color of the thumb when the hovered switch is checked.
|
|
20552
21273
|
/// @group switch
|
|
20553
21274
|
$kendo-switch-on-thumb-hover-text: null !default;
|
|
20554
21275
|
/// The border color of the thumb when the hovered switch is checked.
|
|
20555
21276
|
/// @group switch
|
|
20556
|
-
$kendo-switch-on-thumb-hover-border: try-shade( $kendo-switch-on-thumb-hover-bg ) !default;
|
|
21277
|
+
$kendo-switch-on-thumb-hover-border: k-try-shade( $kendo-switch-on-thumb-hover-bg ) !default;
|
|
20557
21278
|
/// The background gradient of the thumb when the hovered switch is checked.
|
|
20558
21279
|
/// @group switch
|
|
20559
21280
|
$kendo-switch-on-thumb-hover-gradient: null !default;
|
|
@@ -20920,8 +21641,8 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
20920
21641
|
// Component
|
|
20921
21642
|
// #region @import "_variables.scss"; -> packages/classic/scss/dropzone/_variables.scss
|
|
20922
21643
|
// Dropzone
|
|
20923
|
-
$dropzone-padding-x: map-get( $spacing, 2 ) !default;
|
|
20924
|
-
$dropzone-padding-y: map-get( $spacing, 2 ) !default;
|
|
21644
|
+
$dropzone-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
21645
|
+
$dropzone-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
20925
21646
|
$dropzone-border-width: 1px !default;
|
|
20926
21647
|
$dropzone-min-height: 220px !default;
|
|
20927
21648
|
|
|
@@ -20934,12 +21655,12 @@ $dropzone-text: $base-text !default;
|
|
|
20934
21655
|
$dropzone-border: $base-border !default;
|
|
20935
21656
|
|
|
20936
21657
|
$dropzone-icon-size: ( $icon-size * 3 ) !default;
|
|
20937
|
-
$dropzone-icon-spacing: map-get( $spacing, 6 ) !default;
|
|
20938
|
-
$dropzone-icon-text: try-tint( $dropzone-text, 4 ) !default;
|
|
21658
|
+
$dropzone-icon-spacing: k-map-get( $spacing, 6 ) !default;
|
|
21659
|
+
$dropzone-icon-text: k-try-tint( $dropzone-text, 4 ) !default;
|
|
20939
21660
|
$dropzone-icon-hover-text: $primary !default;
|
|
20940
21661
|
|
|
20941
21662
|
$dropzone-hint-font-size: null !default;
|
|
20942
|
-
$dropzone-hint-spacing: map-get( $spacing, 2 ) !default;
|
|
21663
|
+
$dropzone-hint-spacing: k-map-get( $spacing, 2 ) !default;
|
|
20943
21664
|
$dropzone-hint-text: null !default;
|
|
20944
21665
|
|
|
20945
21666
|
$dropzone-note-font-size: $font-size-sm !default;
|
|
@@ -21056,8 +21777,8 @@ $upload-bg: $component-bg !default;
|
|
|
21056
21777
|
$upload-text: $component-text !default;
|
|
21057
21778
|
$upload-border: $component-border !default;
|
|
21058
21779
|
|
|
21059
|
-
$upload-dropzone-padding-x: map-get( $spacing, 2 ) !default;
|
|
21060
|
-
$upload-dropzone-padding-y: map-get( $spacing, 2 ) !default;
|
|
21780
|
+
$upload-dropzone-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
21781
|
+
$upload-dropzone-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
21061
21782
|
$upload-dropzone-bg: $header-bg !default;
|
|
21062
21783
|
$upload-dropzone-text: $header-text !default;
|
|
21063
21784
|
$upload-dropzone-border: $upload-border !default;
|
|
@@ -21066,8 +21787,8 @@ $upload-dropzone-hover-bg: $hovered-bg !default;
|
|
|
21066
21787
|
$upload-status-text: $subtle-text !default;
|
|
21067
21788
|
$upload-status-text-opacity: null !default;
|
|
21068
21789
|
|
|
21069
|
-
$upload-item-padding-x: map-get( $spacing, 2 ) !default;
|
|
21070
|
-
$upload-item-padding-y: map-get( $spacing, 2 ) !default;
|
|
21790
|
+
$upload-item-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
21791
|
+
$upload-item-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
21071
21792
|
|
|
21072
21793
|
$upload-multiple-items-spacing: 12px !default;
|
|
21073
21794
|
|
|
@@ -21092,7 +21813,7 @@ $upload-error-bg: $error !default;
|
|
|
21092
21813
|
$upload-error-text: $error !default;
|
|
21093
21814
|
$upload-error-border: $error !default;
|
|
21094
21815
|
|
|
21095
|
-
$upload-focused-shadow: 0 0 0 2px rgba(
|
|
21816
|
+
$upload-focused-shadow: 0 0 0 2px rgba( black, .13 ) !default;
|
|
21096
21817
|
|
|
21097
21818
|
// #endregion
|
|
21098
21819
|
// #region @import "_layout.scss"; -> packages/classic/scss/upload/_layout.scss
|
|
@@ -21703,8 +22424,8 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
21703
22424
|
// Appbar
|
|
21704
22425
|
$appbar-margin-y: null !default;
|
|
21705
22426
|
$appbar-margin-x: null !default;
|
|
21706
|
-
$appbar-padding-y: map-get( $spacing, 2 ) !default;
|
|
21707
|
-
$appbar-padding-x: map-get( $spacing, 2 ) !default;
|
|
22427
|
+
$appbar-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
22428
|
+
$appbar-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
21708
22429
|
$appbar-border-width: 0px !default;
|
|
21709
22430
|
|
|
21710
22431
|
$appbar-zindex: 1000 !default;
|
|
@@ -21712,16 +22433,16 @@ $appbar-zindex: 1000 !default;
|
|
|
21712
22433
|
$appbar-font-size: $font-size !default;
|
|
21713
22434
|
$appbar-line-height: $line-height !default;
|
|
21714
22435
|
$appbar-font-family: $font-family !default;
|
|
21715
|
-
$appbar-gap: map-get( $spacing, 2 ) !default;
|
|
22436
|
+
$appbar-gap: k-map-get( $spacing, 2 ) !default;
|
|
21716
22437
|
|
|
21717
22438
|
$appbar-light-bg: $light !default;
|
|
21718
|
-
$appbar-light-text: contrast-
|
|
22439
|
+
$appbar-light-text: k-contrast-color( $light ) !default;
|
|
21719
22440
|
|
|
21720
22441
|
$appbar-dark-bg: $dark !default;
|
|
21721
|
-
$appbar-dark-text: contrast-
|
|
22442
|
+
$appbar-dark-text: k-contrast-color( $dark ) !default;
|
|
21722
22443
|
|
|
21723
|
-
$appbar-box-shadow: 0px 1px 1px rgba(
|
|
21724
|
-
$appbar-bottom-box-shadow: 0px -1px 1px rgba(
|
|
22444
|
+
$appbar-box-shadow: 0px 1px 1px rgba( black, .16 ) !default;
|
|
22445
|
+
$appbar-bottom-box-shadow: 0px -1px 1px rgba( black, .16 ) !default;
|
|
21725
22446
|
|
|
21726
22447
|
// #endregion
|
|
21727
22448
|
// #region @import "_layout.scss"; -> packages/classic/scss/appbar/_layout.scss
|
|
@@ -21922,15 +22643,15 @@ $kendo-fab-line-height: $line-height !default;
|
|
|
21922
22643
|
|
|
21923
22644
|
/// Horizontal padding of the FAB.
|
|
21924
22645
|
/// @group floating-action-button
|
|
21925
|
-
$kendo-fab-padding-x: map-get( $spacing, 4 ) !default;
|
|
21926
|
-
$kendo-fab-padding-x-sm: ( $kendo-fab-padding-x
|
|
22646
|
+
$kendo-fab-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
22647
|
+
$kendo-fab-padding-x-sm: k-math-div( $kendo-fab-padding-x, 2 ) !default;
|
|
21927
22648
|
$kendo-fab-padding-x-md: $kendo-fab-padding-x !default;
|
|
21928
22649
|
$kendo-fab-padding-x-lg: ( $kendo-fab-padding-x * 1.5 ) !default;
|
|
21929
22650
|
|
|
21930
22651
|
/// Vertical padding of the FAB.
|
|
21931
22652
|
/// @group floating-action-button
|
|
21932
22653
|
$kendo-fab-padding-y: $kendo-fab-padding-x !default;
|
|
21933
|
-
$kendo-fab-padding-y-sm: ( $kendo-fab-padding-y
|
|
22654
|
+
$kendo-fab-padding-y-sm: k-math-div( $kendo-fab-padding-y, 2 ) !default;
|
|
21934
22655
|
$kendo-fab-padding-y-md: $kendo-fab-padding-y !default;
|
|
21935
22656
|
$kendo-fab-padding-y-lg: ( $kendo-fab-padding-y * 1.5 ) !default;
|
|
21936
22657
|
|
|
@@ -21942,18 +22663,18 @@ $kendo-fab-icon-width: 20px !default;
|
|
|
21942
22663
|
$kendo-fab-icon-height: $kendo-fab-icon-width !default;
|
|
21943
22664
|
/// FAB icon spacing.
|
|
21944
22665
|
/// @group floating-action-button
|
|
21945
|
-
$kendo-fab-icon-spacing: map-get( $spacing, 1 )
|
|
22666
|
+
$kendo-fab-icon-spacing: k-math-div( k-map-get( $spacing, 1 ), 2 ) !default;
|
|
21946
22667
|
|
|
21947
22668
|
/// FAB items horizontal padding.
|
|
21948
22669
|
/// @group floating-action-button
|
|
21949
22670
|
$kendo-fab-items-padding-x: 0px !default;
|
|
21950
22671
|
/// FAB items vertical padding.
|
|
21951
22672
|
/// @group floating-action-button
|
|
21952
|
-
$kendo-fab-items-padding-y: map-get( $spacing, 4 ) !default;
|
|
22673
|
+
$kendo-fab-items-padding-y: k-map-get( $spacing, 4 ) !default;
|
|
21953
22674
|
|
|
21954
22675
|
/// FAB item text horizontal padding.
|
|
21955
22676
|
/// @group floating-action-button
|
|
21956
|
-
$kendo-fab-item-text-padding-x: map-get( $spacing, 1 ) !default;
|
|
22677
|
+
$kendo-fab-item-text-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
21957
22678
|
/// FAB item text vertical padding.
|
|
21958
22679
|
/// @group floating-action-button
|
|
21959
22680
|
$kendo-fab-item-text-padding-y: $kendo-fab-item-text-padding-x !default;
|
|
@@ -21972,7 +22693,7 @@ $kendo-fab-item-text-line-height: 1.2 !default;
|
|
|
21972
22693
|
|
|
21973
22694
|
/// FAB item icon horizontal padding.
|
|
21974
22695
|
/// @group floating-action-button
|
|
21975
|
-
$kendo-fab-item-icon-padding-x: map-get( $spacing, 2 ) !default;
|
|
22696
|
+
$kendo-fab-item-icon-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
21976
22697
|
/// FAB item icon vertical padding.
|
|
21977
22698
|
/// @group floating-action-button
|
|
21978
22699
|
$kendo-fab-item-icon-padding-y: $kendo-fab-item-icon-padding-x !default;
|
|
@@ -21995,10 +22716,10 @@ $kendo-fab-theme-colors: $kendo-theme-colors !default;
|
|
|
21995
22716
|
|
|
21996
22717
|
/// The base shadow of the FAB.
|
|
21997
22718
|
/// @group floating-action-button
|
|
21998
|
-
$kendo-fab-shadow: 0 6px 10px rgba(
|
|
22719
|
+
$kendo-fab-shadow: 0 6px 10px rgba( black, .14 ), 0 1px 18px rgba( black, .12 ), 0 3px 5px rgba( black, .2 ) !default;
|
|
21999
22720
|
/// The disabled shadow of the FAB.
|
|
22000
22721
|
/// @group floating-action-button
|
|
22001
|
-
$kendo-fab-disabled-shadow: 0 6px 10px try-tint( rgba(
|
|
22722
|
+
$kendo-fab-disabled-shadow: 0 6px 10px k-try-tint( rgba( black, .14 ), .5 ), 0 1px 18px k-try-tint( rgba( black, .12 ), .5 ), 0 3px 5px k-try-tint( rgba( black, .2 ), .5 ) !default;
|
|
22002
22723
|
/// The active shadow of the FAB.
|
|
22003
22724
|
/// @group floating-action-button
|
|
22004
22725
|
$kendo-fab-active-shadow: null !default;
|
|
@@ -22382,12 +23103,12 @@ $actionsheet-line-height: $line-height !default;
|
|
|
22382
23103
|
$actionsheet-bg: $component-bg !default;
|
|
22383
23104
|
$actionsheet-text: $component-text !default;
|
|
22384
23105
|
$actionsheet-border: $component-border !default;
|
|
22385
|
-
$actionsheet-shadow: 0 8px 10px -5px rgba(
|
|
23106
|
+
$actionsheet-shadow: 0 8px 10px -5px rgba( black, .2 ), 0 16px 24px 2px rgba( black, .14 ), 0 6px 30px 5px rgba( black, .12 ) !default;
|
|
22386
23107
|
|
|
22387
23108
|
|
|
22388
23109
|
// Actionsheet header
|
|
22389
|
-
$actionsheet-header-padding-x: map-get( $spacing, 4 ) !default;
|
|
22390
|
-
$actionsheet-header-padding-y: map-get( $spacing, 2 ) !default;
|
|
23110
|
+
$actionsheet-header-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
23111
|
+
$actionsheet-header-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
22391
23112
|
$actionsheet-header-border-width: null !default;
|
|
22392
23113
|
$actionsheet-header-font-size: null !default;
|
|
22393
23114
|
$actionsheet-header-font-family: null !default;
|
|
@@ -22402,8 +23123,8 @@ $actionsheet-header-shadow: null !default;
|
|
|
22402
23123
|
|
|
22403
23124
|
// Actionsheet item
|
|
22404
23125
|
$actionsheet-item-min-height: 40px !default;
|
|
22405
|
-
$actionsheet-item-padding-x: map-get( $spacing, 4 ) !default;
|
|
22406
|
-
$actionsheet-item-padding-y: map-get( $spacing, 2 ) !default;
|
|
23126
|
+
$actionsheet-item-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
23127
|
+
$actionsheet-item-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
22407
23128
|
$actionsheet-item-border-width: 1px !default;
|
|
22408
23129
|
$actionsheet-item-spacing: 12px !default;
|
|
22409
23130
|
|
|
@@ -23147,15 +23868,15 @@ $drawer-font-size: $font-size !default;
|
|
|
23147
23868
|
$drawer-line-height: $line-height !default;
|
|
23148
23869
|
$drawer-content-padding-x: $padding-x !default;
|
|
23149
23870
|
$drawer-content-padding-y: $padding-y !default;
|
|
23150
|
-
$drawer-item-level-padding-x: map-get( $spacing, 4 ) !default;
|
|
23871
|
+
$drawer-item-level-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
23151
23872
|
|
|
23152
23873
|
$drawer-item-level-count: 5 !default;
|
|
23153
23874
|
|
|
23154
23875
|
$drawer-scrollbar-width: 7px !default;
|
|
23155
|
-
$drawer-scrollbar-color: rgba(156, 156, 156, .7) !default;
|
|
23876
|
+
$drawer-scrollbar-color: rgba( 156, 156, 156, .7 ) !default;
|
|
23156
23877
|
$drawer-scrollbar-bg: #dedede !default;
|
|
23157
23878
|
$drawer-scrollbar-radius: 20px !default;
|
|
23158
|
-
$drawer-scrollbar-hovered-color: rgba(156, 156, 156, 1) !default;
|
|
23879
|
+
$drawer-scrollbar-hovered-color: rgba( 156, 156, 156, 1 ) !default;
|
|
23159
23880
|
|
|
23160
23881
|
$drawer-item-padding-x: $padding-x !default;
|
|
23161
23882
|
$drawer-item-padding-y: $padding-x !default;
|
|
@@ -23163,7 +23884,7 @@ $drawer-item-font-size: 16px !default;
|
|
|
23163
23884
|
$drawer-item-line-height: $line-height-lg !default;
|
|
23164
23885
|
$drawer-icon-size: $icon-size !default;
|
|
23165
23886
|
|
|
23166
|
-
$drawer-mini-initial-width: calc(4 * #{$drawer-item-padding-x} + #{$drawer-icon-size}) !default;
|
|
23887
|
+
$drawer-mini-initial-width: calc( 4 * #{$drawer-item-padding-x} + #{$drawer-icon-size} ) !default;
|
|
23167
23888
|
|
|
23168
23889
|
$drawer-hovered-bg: $hovered-bg !default;
|
|
23169
23890
|
$drawer-hovered-text: $hovered-text !default;
|
|
@@ -23534,7 +24255,7 @@ $notification-border: $component-border !default;
|
|
|
23534
24255
|
|
|
23535
24256
|
// sass-lint:disable-block indentation
|
|
23536
24257
|
@each $name, $color in $colors {
|
|
23537
|
-
$_theme: map-merge(( $name: (
|
|
24258
|
+
$_theme: k-map-merge(( $name: (
|
|
23538
24259
|
color: contrast-wcag( $color ),
|
|
23539
24260
|
background-color: $color,
|
|
23540
24261
|
border: $color,
|
|
@@ -23725,8 +24446,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
23725
24446
|
// Component
|
|
23726
24447
|
// #region @import "_variables.scss"; -> packages/classic/scss/card/_variables.scss
|
|
23727
24448
|
// Card
|
|
23728
|
-
$card-padding-x: map-get( $spacing, lg ) !default;
|
|
23729
|
-
$card-padding-y: map-get( $spacing, md ) !default;
|
|
24449
|
+
$card-padding-x: k-map-get( $spacing, lg ) !default;
|
|
24450
|
+
$card-padding-y: k-map-get( $spacing, md ) !default;
|
|
23730
24451
|
$card-border-width: 1px !default;
|
|
23731
24452
|
$card-border-radius: $kendo-border-radius-lg !default;
|
|
23732
24453
|
$card-inner-border-radius: calc( #{$card-border-radius} - #{$card-border-width} ) !default;
|
|
@@ -23734,7 +24455,7 @@ $card-font-family: $font-family !default;
|
|
|
23734
24455
|
$card-font-size: $font-size !default;
|
|
23735
24456
|
$card-line-height: $line-height !default;
|
|
23736
24457
|
|
|
23737
|
-
$card-deck-gap: map-get( $spacing, lg ) !default;
|
|
24458
|
+
$card-deck-gap: k-map-get( $spacing, lg ) !default;
|
|
23738
24459
|
|
|
23739
24460
|
$card-bg: $component-bg !default;
|
|
23740
24461
|
$card-text: $component-text !default;
|
|
@@ -23753,8 +24474,8 @@ $card-header-bg: null !default;
|
|
|
23753
24474
|
$card-header-text: $header-text !default;
|
|
23754
24475
|
$card-header-border: $header-border !default;
|
|
23755
24476
|
|
|
23756
|
-
$card-body-padding-x: map-get( $spacing, lg ) !default;
|
|
23757
|
-
$card-body-padding-y: map-get( $spacing, lg ) !default;
|
|
24477
|
+
$card-body-padding-x: k-map-get( $spacing, lg ) !default;
|
|
24478
|
+
$card-body-padding-y: k-map-get( $spacing, lg ) !default;
|
|
23758
24479
|
|
|
23759
24480
|
$card-footer-padding-x: $card-padding-x !default;
|
|
23760
24481
|
$card-footer-padding-y: $card-padding-y !default;
|
|
@@ -23763,14 +24484,14 @@ $card-footer-bg: null !default;
|
|
|
23763
24484
|
$card-footer-text: $header-text !default;
|
|
23764
24485
|
$card-footer-border: $header-border !default;
|
|
23765
24486
|
|
|
23766
|
-
$card-title-margin-bottom: map-get( $spacing, sm ) !default;
|
|
24487
|
+
$card-title-margin-bottom: k-map-get( $spacing, sm ) !default;
|
|
23767
24488
|
$card-title-font-size: $h5-font-size !default;
|
|
23768
24489
|
$card-title-font-family: null !default;
|
|
23769
24490
|
$card-title-line-height: 1.25 !default;
|
|
23770
24491
|
$card-title-font-weight: $font-weight-normal !default;
|
|
23771
24492
|
$card-title-letter-spacing: null !default;
|
|
23772
24493
|
|
|
23773
|
-
$card-subtitle-margin-bottom: map-get( $spacing, sm ) !default;
|
|
24494
|
+
$card-subtitle-margin-bottom: k-map-get( $spacing, sm ) !default;
|
|
23774
24495
|
$card-subtitle-font-size: $font-size-sm !default;
|
|
23775
24496
|
$card-subtitle-font-family: null !default;
|
|
23776
24497
|
$card-subtitle-line-height: normal !default;
|
|
@@ -23782,10 +24503,10 @@ $card-img-max-width: 100px !default;
|
|
|
23782
24503
|
$card-avatar-size: 45px !default;
|
|
23783
24504
|
$card-avatar-spacing: $card-header-padding-x !default;
|
|
23784
24505
|
|
|
23785
|
-
$card-actions-padding-x: map-get( $spacing, 2 ) !default;
|
|
23786
|
-
$card-actions-padding-y: map-get( $spacing, 2 ) !default;
|
|
24506
|
+
$card-actions-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
24507
|
+
$card-actions-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
23787
24508
|
$card-actions-border-width: 1px !default;
|
|
23788
|
-
$card-actions-gap: map-get( $spacing, 2 ) !default;
|
|
24509
|
+
$card-actions-gap: k-map-get( $spacing, 2 ) !default;
|
|
23789
24510
|
|
|
23790
24511
|
$card-deck-scroll-button-radius: 0px !default;
|
|
23791
24512
|
$card-deck-scroll-button-offset: -$kendo-button-border-width !default;
|
|
@@ -24597,7 +25318,7 @@ $popover-callout-border: $popover-border !default;
|
|
|
24597
25318
|
// Component
|
|
24598
25319
|
// #region @import "_variables.scss"; -> packages/classic/scss/bottom-navigation/_variables.scss
|
|
24599
25320
|
// Bottom-navigation
|
|
24600
|
-
$bottom-nav-padding-x: map-get( $spacing, 1 ) !default;
|
|
25321
|
+
$bottom-nav-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
24601
25322
|
$bottom-nav-padding-y: $bottom-nav-padding-x !default;
|
|
24602
25323
|
$bottom-nav-gap: $bottom-nav-padding-x !default;
|
|
24603
25324
|
$bottom-nav-border-width: 1px 0px 0px 0px !default;
|
|
@@ -24607,20 +25328,20 @@ $bottom-nav-font-size: $font-size !default;
|
|
|
24607
25328
|
$bottom-nav-line-height: normal !default;
|
|
24608
25329
|
$bottom-nav-letter-spacing: .2px !default;
|
|
24609
25330
|
|
|
24610
|
-
$bottom-nav-item-padding-x: map-get( $spacing, 2 ) !default;
|
|
25331
|
+
$bottom-nav-item-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
24611
25332
|
$bottom-nav-item-padding-y: 0 !default;
|
|
24612
25333
|
$bottom-nav-item-min-width: 72px !default;
|
|
24613
25334
|
$bottom-nav-item-max-width: null !default;
|
|
24614
25335
|
$bottom-nav-item-min-height: calc( #{$icon-size * 2.5} + #{$padding-x * 2} - #{$bottom-nav-padding-x * 2} ) !default;
|
|
24615
25336
|
$bottom-nav-item-border-radius: $kendo-border-radius-md !default;
|
|
24616
|
-
$bottom-nav-item-gap: 0 map-get( $spacing, 1 ) !default;
|
|
25337
|
+
$bottom-nav-item-gap: 0 k-map-get( $spacing, 1 ) !default;
|
|
24617
25338
|
|
|
24618
|
-
$bottom-nav-item-icon-margin-y: map-get( $spacing, 2 ) !default;
|
|
25339
|
+
$bottom-nav-item-icon-margin-y: k-map-get( $spacing, 2 ) !default;
|
|
24619
25340
|
$bottom-nav-item-icon-margin-x: $bottom-nav-item-icon-margin-y !default;
|
|
24620
|
-
$bottom-nav-item-icon-size: map-get( $spacing, 6 ) !default;
|
|
25341
|
+
$bottom-nav-item-icon-size: k-map-get( $spacing, 6 ) !default;
|
|
24621
25342
|
$bottom-nav-item-disabled-opacity: .5 !default;
|
|
24622
25343
|
|
|
24623
|
-
$bottom-nav-shadow: 0px 0px 5px rgba(
|
|
25344
|
+
$bottom-nav-shadow: 0px 0px 5px rgba( black, .12 ) !default;
|
|
24624
25345
|
|
|
24625
25346
|
$bottom-nav-flat-bg: $component-bg !default;
|
|
24626
25347
|
$bottom-nav-flat-text: $component-text !default;
|
|
@@ -24884,7 +25605,7 @@ $breadcrumb-root-link-focused-text: null !default;
|
|
|
24884
25605
|
$breadcrumb-root-link-focused-border: null !default;
|
|
24885
25606
|
$breadcrumb-root-link-focused-shadow: $breadcrumb-link-focused-shadow !default;
|
|
24886
25607
|
|
|
24887
|
-
$breadcrumb-focused-shadow: 0 0 2px 1px rgba(
|
|
25608
|
+
$breadcrumb-focused-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
|
|
24888
25609
|
|
|
24889
25610
|
// #endregion
|
|
24890
25611
|
// #region @import "_layout.scss"; -> packages/classic/scss/breadcrumb/_layout.scss
|
|
@@ -25143,8 +25864,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
25143
25864
|
// Component
|
|
25144
25865
|
// #region @import "_variables.scss"; -> packages/classic/scss/pager/_variables.scss
|
|
25145
25866
|
// Pager
|
|
25146
|
-
$pager-padding-x: map-get( $spacing, 2 ) !default;
|
|
25147
|
-
$pager-padding-y: map-get( $spacing, 2 ) !default;
|
|
25867
|
+
$pager-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
25868
|
+
$pager-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
25148
25869
|
$pager-border-width: 1px !default;
|
|
25149
25870
|
|
|
25150
25871
|
$pager-font-family: $font-family !default;
|
|
@@ -25193,18 +25914,18 @@ $pager-number-text: $primary !default;
|
|
|
25193
25914
|
$pager-number-border: null !default;
|
|
25194
25915
|
|
|
25195
25916
|
$pager-number-hover-opacity: .08 !default;
|
|
25196
|
-
$pager-number-hover-bg: rgba($pager-item-selected-bg, $pager-number-hover-opacity) !default;
|
|
25917
|
+
$pager-number-hover-bg: rgba( $pager-item-selected-bg, $pager-number-hover-opacity ) !default;
|
|
25197
25918
|
$pager-number-hover-text: $pager-number-text !default;
|
|
25198
25919
|
$pager-number-hover-border: $pager-item-hover-border !default;
|
|
25199
25920
|
|
|
25200
25921
|
$pager-number-selected-opacity: .2 !default;
|
|
25201
|
-
$pager-number-selected-bg: rgba($pager-item-selected-bg, $pager-number-selected-opacity) !default;
|
|
25922
|
+
$pager-number-selected-bg: rgba( $pager-item-selected-bg, $pager-number-selected-opacity ) !default;
|
|
25202
25923
|
$pager-number-selected-text: $pager-number-text !default;
|
|
25203
25924
|
$pager-number-selected-border: $pager-item-selected-border !default;
|
|
25204
25925
|
|
|
25205
25926
|
$pager-number-focus-opacity: .12 !default;
|
|
25206
25927
|
$pager-number-focus-bg: transparent !default;
|
|
25207
|
-
$pager-number-focus-shadow: inset 0 0 0 2px rgba($pager-number-selected-bg, $pager-number-focus-opacity) !default;
|
|
25928
|
+
$pager-number-focus-shadow: inset 0 0 0 2px rgba( $pager-number-selected-bg, $pager-number-focus-opacity ) !default;
|
|
25208
25929
|
|
|
25209
25930
|
$pager-input-width: 5em !default;
|
|
25210
25931
|
$pager-dropdown-width: 5em !default;
|
|
@@ -25701,7 +26422,7 @@ $stepper-indicator-bg: $component-bg !default;
|
|
|
25701
26422
|
$stepper-indicator-text: $component-text !default;
|
|
25702
26423
|
$stepper-indicator-border: $component-border !default;
|
|
25703
26424
|
|
|
25704
|
-
$stepper-indicator-hover-bg: try-shade( $stepper-indicator-bg ) !default;
|
|
26425
|
+
$stepper-indicator-hover-bg: k-try-shade( $stepper-indicator-bg ) !default;
|
|
25705
26426
|
$stepper-indicator-hover-text: null !default;
|
|
25706
26427
|
$stepper-indicator-hover-border: null !default;
|
|
25707
26428
|
|
|
@@ -25713,11 +26434,11 @@ $stepper-indicator-done-bg: $primary !default;
|
|
|
25713
26434
|
$stepper-indicator-done-text: contrast-wcag( $stepper-indicator-done-bg ) !default;
|
|
25714
26435
|
$stepper-indicator-done-border: $stepper-indicator-done-bg !default;
|
|
25715
26436
|
|
|
25716
|
-
$stepper-indicator-done-hover-bg: try-shade( $stepper-indicator-done-bg ) !default;
|
|
26437
|
+
$stepper-indicator-done-hover-bg: k-try-shade( $stepper-indicator-done-bg ) !default;
|
|
25717
26438
|
$stepper-indicator-done-hover-text: null !default;
|
|
25718
26439
|
$stepper-indicator-done-hover-border: null !default;
|
|
25719
26440
|
|
|
25720
|
-
$stepper-indicator-done-disabled-bg: mix( $stepper-indicator-done-bg, $component-bg, 60%) !default;
|
|
26441
|
+
$stepper-indicator-done-disabled-bg: k-color-mix( $stepper-indicator-done-bg, $component-bg, 60% ) !default;
|
|
25721
26442
|
$stepper-indicator-done-disabled-text: contrast-wcag( $stepper-indicator-done-bg ) !default;
|
|
25722
26443
|
$stepper-indicator-done-disabled-border: $stepper-indicator-done-disabled-bg !default;
|
|
25723
26444
|
|
|
@@ -26347,17 +27068,17 @@ $tabstrip-item-selected-gradient: false !default;
|
|
|
26347
27068
|
|
|
26348
27069
|
$tabstrip-item-focused-shadow: $kendo-list-item-focus-shadow !default;
|
|
26349
27070
|
|
|
26350
|
-
$tabstrip-item-dragging-shadow: 0px 3px 4px rgba(
|
|
27071
|
+
$tabstrip-item-dragging-shadow: 0px 3px 4px rgba( black, .15 ) !default;
|
|
26351
27072
|
|
|
26352
27073
|
$tabstrip-indicator-size: null !default;
|
|
26353
27074
|
$tabstrip-indicator-color: null !default;
|
|
26354
27075
|
|
|
26355
27076
|
/// Horizontal padding of tabstrip content
|
|
26356
27077
|
/// @group tabstrip
|
|
26357
|
-
$tabstrip-content-padding-x: map-get( $spacing, 4 ) !default;
|
|
27078
|
+
$tabstrip-content-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
26358
27079
|
/// Vertical padding of tabstrip content
|
|
26359
27080
|
/// @group tabstrip
|
|
26360
|
-
$tabstrip-content-padding-y: map-get( $spacing, 4 ) !default;
|
|
27081
|
+
$tabstrip-content-padding-y: k-map-get( $spacing, 4 ) !default;
|
|
26361
27082
|
/// Width of border around tabstrip content
|
|
26362
27083
|
/// @group tabstrip
|
|
26363
27084
|
$tabstrip-content-border-width: 1px !default;
|
|
@@ -26893,7 +27614,7 @@ $wizard-line-height: $line-height !default;
|
|
|
26893
27614
|
$wizard-font-family: $font-family !default;
|
|
26894
27615
|
|
|
26895
27616
|
$wizard-step-border-focused: #656565 !default;
|
|
26896
|
-
$wizard-focused-shadow: inset 0 0 0 2px rgba(
|
|
27617
|
+
$wizard-focused-shadow: inset 0 0 0 2px rgba( black, .13 ) !default;
|
|
26897
27618
|
|
|
26898
27619
|
// #endregion
|
|
26899
27620
|
// #region @import "_layout.scss"; -> packages/classic/scss/wizard/_layout.scss
|
|
@@ -27100,7 +27821,7 @@ $expander-header-bg: transparent !default;
|
|
|
27100
27821
|
$expander-header-text: $expander-text !default;
|
|
27101
27822
|
$expander-header-border: null !default;
|
|
27102
27823
|
|
|
27103
|
-
$expander-header-hover-bg: shade($expander-bg) !default;
|
|
27824
|
+
$expander-header-hover-bg: k-color-shade( $expander-bg, 1 ) !default;
|
|
27104
27825
|
|
|
27105
27826
|
$expander-header-focused-bg: null !default;
|
|
27106
27827
|
$expander-header-focused-shadow: $kendo-list-item-focus-shadow !default;
|
|
@@ -27311,7 +28032,7 @@ $panelbar-header-selected-text: $selected-text !default;
|
|
|
27311
28032
|
$panelbar-header-selected-border: $selected-border !default;
|
|
27312
28033
|
$panelbar-header-selected-gradient: null !default;
|
|
27313
28034
|
|
|
27314
|
-
$panelbar-header-selected-hovered-bg: try-shade( $panelbar-header-selected-bg ) !default;
|
|
28035
|
+
$panelbar-header-selected-hovered-bg: k-try-shade( $panelbar-header-selected-bg ) !default;
|
|
27315
28036
|
$panelbar-header-selected-hovered-text: null !default;
|
|
27316
28037
|
$panelbar-header-selected-hovered-border: null !default;
|
|
27317
28038
|
$panelbar-header-selected-hovered-gradient: null !default;
|
|
@@ -27327,7 +28048,7 @@ $panelbar-header-selected-hovered-focused-border: null !default;
|
|
|
27327
28048
|
$panelbar-header-selected-hovered-focused-gradient: null !default;
|
|
27328
28049
|
|
|
27329
28050
|
|
|
27330
|
-
$panelbar-item-hovered-bg: try-shade( $panelbar-bg, .5 ) !default;
|
|
28051
|
+
$panelbar-item-hovered-bg: k-try-shade( $panelbar-bg, .5 ) !default;
|
|
27331
28052
|
$panelbar-item-hovered-text: null !default;
|
|
27332
28053
|
$panelbar-item-hovered-border: null !default;
|
|
27333
28054
|
$panelbar-item-hovered-gradient: null !default;
|
|
@@ -27348,7 +28069,7 @@ $panelbar-item-selected-text: $selected-text !default;
|
|
|
27348
28069
|
$panelbar-item-selected-border: null !default;
|
|
27349
28070
|
$panelbar-item-selected-gradient: null !default;
|
|
27350
28071
|
|
|
27351
|
-
$panelbar-item-selected-hovered-bg: try-shade( $panelbar-item-selected-bg ) !default;
|
|
28072
|
+
$panelbar-item-selected-hovered-bg: k-try-shade( $panelbar-item-selected-bg ) !default;
|
|
27352
28073
|
$panelbar-item-selected-hovered-text: null !default;
|
|
27353
28074
|
$panelbar-item-selected-hovered-border: null !default;
|
|
27354
28075
|
$panelbar-item-selected-hovered-gradient: null !default;
|
|
@@ -27821,7 +28542,7 @@ $splitter-drag-icon-margin: 7px !default;
|
|
|
27821
28542
|
$splitbar-bg: $base-bg !default;
|
|
27822
28543
|
$splitbar-text: $base-text !default;
|
|
27823
28544
|
|
|
27824
|
-
$splitbar-hover-bg: try-shade( $splitbar-bg, .5 ) !default;
|
|
28545
|
+
$splitbar-hover-bg: k-try-shade( $splitbar-bg, .5 ) !default;
|
|
27825
28546
|
$splitbar-hover-text: $splitbar-text !default;
|
|
27826
28547
|
|
|
27827
28548
|
$splitbar-selected-bg: $selected-bg !default;
|
|
@@ -28107,7 +28828,7 @@ $tilelayout-hint-border-radius: $kendo-border-radius-lg !default;
|
|
|
28107
28828
|
|
|
28108
28829
|
$tilelayout-bg: $base-bg !default;
|
|
28109
28830
|
|
|
28110
|
-
$tilelayout-hint-bg: rgba(
|
|
28831
|
+
$tilelayout-hint-bg: rgba( white, .2 ) !default;
|
|
28111
28832
|
$tilelayout-hint-border: $component-border !default;
|
|
28112
28833
|
|
|
28113
28834
|
// #endregion
|
|
@@ -30884,8 +31605,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30884
31605
|
// Component
|
|
30885
31606
|
// #region @import "_variables.scss"; -> packages/classic/scss/listview/_variables.scss
|
|
30886
31607
|
// Listview
|
|
30887
|
-
$listview-padding-x: map-get( $spacing, 1 ) !default;
|
|
30888
|
-
$listview-padding-y: map-get( $spacing, 1 ) !default;
|
|
31608
|
+
$listview-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
31609
|
+
$listview-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
30889
31610
|
$listview-border-width: 1px !default;
|
|
30890
31611
|
$listview-font-family: $font-family !default;
|
|
30891
31612
|
$listview-font-size: $font-size !default;
|
|
@@ -30897,8 +31618,8 @@ $listview-border: $component-border !default;
|
|
|
30897
31618
|
|
|
30898
31619
|
$listview-grid-gap: 10px !default;
|
|
30899
31620
|
|
|
30900
|
-
$listview-item-padding-x: map-get( $spacing, 1 ) !default;
|
|
30901
|
-
$listview-item-padding-y: map-get( $spacing, 1 ) !default;
|
|
31621
|
+
$listview-item-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
31622
|
+
$listview-item-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
30902
31623
|
|
|
30903
31624
|
$listview-item-selected-bg: rgba( $selected-bg, .25 ) !default;
|
|
30904
31625
|
$listview-item-selected-text: null !default;
|
|
@@ -30907,7 +31628,7 @@ $listview-item-selected-border: null !default;
|
|
|
30907
31628
|
$listview-item-focus-bg: null !default;
|
|
30908
31629
|
$listview-item-focus-text: null !default;
|
|
30909
31630
|
$listview-item-focus-border: null !default;
|
|
30910
|
-
$listview-item-focus-shadow: inset 0 0 0 2px rgba(
|
|
31631
|
+
$listview-item-focus-shadow: inset 0 0 0 2px rgba( black, .13 ) !default;
|
|
30911
31632
|
|
|
30912
31633
|
// #endregion
|
|
30913
31634
|
// #region @import "_layout.scss"; -> packages/classic/scss/listview/_layout.scss
|
|
@@ -31170,7 +31891,7 @@ $spreadsheet-insert-image-dialog-preview-height: 230px !default;
|
|
|
31170
31891
|
$spreadsheet-insert-image-dialog-preview-img: "image-default.png" !default;
|
|
31171
31892
|
$spreadsheet-insert-image-dialog-preview-border: $component-border !default;
|
|
31172
31893
|
$spreadsheet-insert-image-dialog-preview-border-radius: $kendo-border-radius-md !default;
|
|
31173
|
-
$spreadsheet-insert-image-dialog-preview-overlay-shadow: inset 0 0 0 2000px rgba(
|
|
31894
|
+
$spreadsheet-insert-image-dialog-preview-overlay-shadow: inset 0 0 0 2000px rgba( black, .5 ) !default;
|
|
31174
31895
|
$spreadsheet-insert-image-dialog-preview-overlay-border-radius: $kendo-border-radius-md !default;
|
|
31175
31896
|
$spreadsheet-insert-image-dialog-overlay-hovered-text: $component-bg !default;
|
|
31176
31897
|
|
|
@@ -32434,7 +33155,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32434
33155
|
// Component
|
|
32435
33156
|
// #region @import "_variables.scss"; -> packages/classic/scss/pivotgrid/_variables.scss
|
|
32436
33157
|
// Pivot grid
|
|
32437
|
-
$pivotgrid-spacer: map-get( $spacing, 4 ) !default;
|
|
33158
|
+
$pivotgrid-spacer: k-map-get( $spacing, 4 ) !default;
|
|
32438
33159
|
$pivotgrid-padding-x: null !default;
|
|
32439
33160
|
$pivotgrid-padding-y: null !default;
|
|
32440
33161
|
$pivotgrid-font-family: $font-family !default;
|
|
@@ -32454,21 +33175,21 @@ $pivotgrid-bg: $component-bg !default;
|
|
|
32454
33175
|
$pivotgrid-text: $component-text !default;
|
|
32455
33176
|
$pivotgrid-border: $component-border !default;
|
|
32456
33177
|
|
|
32457
|
-
$pivotgrid-alt-border: try-shade($pivotgrid-border, 2) !default;
|
|
33178
|
+
$pivotgrid-alt-border: k-try-shade( $pivotgrid-border, 2 ) !default;
|
|
32458
33179
|
|
|
32459
33180
|
$pivotgrid-headers-bg: $header-bg !default;
|
|
32460
33181
|
$pivotgrid-headers-text: $header-text !default;
|
|
32461
33182
|
$pivotgrid-headers-border: $header-border !default;
|
|
32462
33183
|
|
|
32463
|
-
$pivotgrid-total-bg: try-shade( $pivotgrid-bg, 1 ) !default;
|
|
33184
|
+
$pivotgrid-total-bg: k-try-shade( $pivotgrid-bg, 1 ) !default;
|
|
32464
33185
|
$pivotgrid-total-text: $header-text !default;
|
|
32465
33186
|
$pivotgrid-total-border: $header-border !default;
|
|
32466
33187
|
|
|
32467
|
-
$pivotgrid-hover-bg: darken($pivotgrid-bg, 7%) !default;
|
|
33188
|
+
$pivotgrid-hover-bg: k-color-darken( $pivotgrid-bg, 7% ) !default;
|
|
32468
33189
|
$pivotgrid-hover-text: null !default;
|
|
32469
33190
|
$pivotgrid-hover-border: null !default;
|
|
32470
33191
|
|
|
32471
|
-
$pivotgrid-selected-bg: rgba($selected-bg, .25) !default;
|
|
33192
|
+
$pivotgrid-selected-bg: rgba( $selected-bg, .25 ) !default;
|
|
32472
33193
|
$pivotgrid-selected-text: null !default;
|
|
32473
33194
|
$pivotgrid-selected-border: null !default;
|
|
32474
33195
|
|
|
@@ -32488,7 +33209,7 @@ $pivotgrid-configurator-content-padding-x: $pivotgrid-spacer !default;
|
|
|
32488
33209
|
$pivotgrid-configurator-content-padding-y: 0px !default;
|
|
32489
33210
|
|
|
32490
33211
|
$pivotgrid-configurator-fields-margin-x: 0px !default;
|
|
32491
|
-
$pivotgrid-configurator-fields-margin-y: ( $pivotgrid-spacer
|
|
33212
|
+
$pivotgrid-configurator-fields-margin-y: k-math-div( $pivotgrid-spacer, 2 ) !default;
|
|
32492
33213
|
|
|
32493
33214
|
$pivotgrid-configurator-vertical-width: 320px !default;
|
|
32494
33215
|
$pivotgrid-configurator-horizontal-height: 420px !default;
|
|
@@ -32501,13 +33222,13 @@ $pivotgrid-configurator-header-bg: null !default;
|
|
|
32501
33222
|
$pivotgrid-configurator-header-text: $header-text !default;
|
|
32502
33223
|
$pivotgrid-configurator-header-border: null !default;
|
|
32503
33224
|
|
|
32504
|
-
$pivotgrid-configurator-end-shadow: -3px 0px 6px rgba(
|
|
32505
|
-
$pivotgrid-configurator-start-shadow: 3px 0px 6px rgba(
|
|
32506
|
-
$pivotgrid-configurator-top-shadow: 0px -3px 6px rgba(
|
|
32507
|
-
$pivotgrid-configurator-bottom-shadow: 0px 3px 6px rgba(
|
|
33225
|
+
$pivotgrid-configurator-end-shadow: -3px 0px 6px rgba( black, .16 ) !default;
|
|
33226
|
+
$pivotgrid-configurator-start-shadow: 3px 0px 6px rgba( black, .16 ) !default;
|
|
33227
|
+
$pivotgrid-configurator-top-shadow: 0px -3px 6px rgba( black, .16 ) !default;
|
|
33228
|
+
$pivotgrid-configurator-bottom-shadow: 0px 3px 6px rgba( black, .16 ) !default;
|
|
32508
33229
|
|
|
32509
|
-
$pivotgrid-configurator-button-padding-x: map-get($spacing, 1) !default;
|
|
32510
|
-
$pivotgrid-configurator-button-padding-y: map-get($spacing, 1) !default;
|
|
33230
|
+
$pivotgrid-configurator-button-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
33231
|
+
$pivotgrid-configurator-button-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
32511
33232
|
$pivotgrid-configurator-button-border-width: 1px !default;
|
|
32512
33233
|
$pivotgrid-configurator-button-size: calc( #{$pivotgrid-line-height * 1em} + #{$pivotgrid-configurator-button-padding-y * 2} + #{$pivotgrid-configurator-button-border-width * 2} ) !default;
|
|
32513
33234
|
|
|
@@ -32527,7 +33248,7 @@ $pivotgrid-calculated-field-header-text: $header-text !default;
|
|
|
32527
33248
|
$pivotgrid-calculated-field-header-border: null !default;
|
|
32528
33249
|
|
|
32529
33250
|
|
|
32530
|
-
$pivotgrid-treeview-padding-x: ( $pivotgrid-spacer
|
|
33251
|
+
$pivotgrid-treeview-padding-x: k-math-div( $pivotgrid-spacer, 2) !default;
|
|
32531
33252
|
$pivotgrid-treeview-padding-y: 0px !default;
|
|
32532
33253
|
|
|
32533
33254
|
// Legacy variables
|
|
@@ -32536,7 +33257,7 @@ $pivotgrid-alt-text: $grid-header-text !default;
|
|
|
32536
33257
|
$pivotgrid-chrome-border: $grid-border !default;
|
|
32537
33258
|
|
|
32538
33259
|
$pivotgrid-container-bg: $component-bg !default;
|
|
32539
|
-
$pivotgrid-row-headers-bg: try-shade( $component-bg, 2 ) !default;
|
|
33260
|
+
$pivotgrid-row-headers-bg: k-try-shade( $component-bg, 2 ) !default;
|
|
32540
33261
|
|
|
32541
33262
|
$pivotgrid-button-bg: null !default;
|
|
32542
33263
|
$pivotgrid-button-text: null !default;
|
|
@@ -33710,6 +34431,8 @@ $filter-operator-dropdown-width: 15em !default;
|
|
|
33710
34431
|
$filter-preview-field-text: $primary !default;
|
|
33711
34432
|
$filter-preview-operator-text: $subtle-text !default;
|
|
33712
34433
|
|
|
34434
|
+
$filter-toolbar-focus-shadow: 0 0 0 2px rgba(0, 0, 0, .08) !default;
|
|
34435
|
+
|
|
33713
34436
|
// #endregion
|
|
33714
34437
|
// #region @import "_layout.scss"; -> packages/classic/scss/filter/_layout.scss
|
|
33715
34438
|
// #region @import "~@progress/kendo-theme-default/scss/filter/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/filter/_layout.scss
|
|
@@ -33861,6 +34584,12 @@ $filter-preview-operator-text: $subtle-text !default;
|
|
|
33861
34584
|
.k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
|
|
33862
34585
|
background-color: $component-border;
|
|
33863
34586
|
}
|
|
34587
|
+
|
|
34588
|
+
// Focus
|
|
34589
|
+
.k-toolbar:focus,
|
|
34590
|
+
.k-toolbar.k-focus {
|
|
34591
|
+
@include box-shadow( $filter-toolbar-focus-shadow );
|
|
34592
|
+
}
|
|
33864
34593
|
}
|
|
33865
34594
|
|
|
33866
34595
|
}
|
|
@@ -33918,7 +34647,7 @@ $filter-preview-operator-text: $subtle-text !default;
|
|
|
33918
34647
|
// Component
|
|
33919
34648
|
// #region @import "_variables.scss"; -> packages/classic/scss/filemanager/_variables.scss
|
|
33920
34649
|
// File manager
|
|
33921
|
-
$filemanager-spacer: map-get( $spacing, 4 ) !default;
|
|
34650
|
+
$filemanager-spacer: k-map-get( $spacing, 4 ) !default;
|
|
33922
34651
|
$filemanager-border-width: 1px !default;
|
|
33923
34652
|
$filemanager-font-family: $font-family !default;
|
|
33924
34653
|
$filemanager-font-size: $font-size !default;
|
|
@@ -33941,8 +34670,8 @@ $filemanager-navigation-bg: null !default;
|
|
|
33941
34670
|
$filemanager-navigation-text: null !default;
|
|
33942
34671
|
$filemanager-navigation-border: null !default;
|
|
33943
34672
|
|
|
33944
|
-
$filemanager-breadcrumb-padding-x: map-get( $spacing, 2 ) !default;
|
|
33945
|
-
$filemanager-breadcrumb-padding-y: map-get( $spacing, 2 ) !default;
|
|
34673
|
+
$filemanager-breadcrumb-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
34674
|
+
$filemanager-breadcrumb-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
33946
34675
|
$filemanager-breadcrumb-border-width: $filemanager-border-width !default;
|
|
33947
34676
|
$filemanager-breadcrumb-bg: $toolbar-bg !default;
|
|
33948
34677
|
$filemanager-breadcrumb-text: null !default;
|
|
@@ -33952,8 +34681,8 @@ $filemanager-listview-bg: null !default;
|
|
|
33952
34681
|
$filemanager-listview-text: null !default;
|
|
33953
34682
|
$filemanager-listview-border: null !default;
|
|
33954
34683
|
|
|
33955
|
-
$filemanager-listview-item-padding-x: map-get( $spacing, 4 ) !default;
|
|
33956
|
-
$filemanager-listview-item-padding-y: map-get( $spacing, 4 ) !default;
|
|
34684
|
+
$filemanager-listview-item-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
34685
|
+
$filemanager-listview-item-padding-y: k-map-get( $spacing, 4 ) !default;
|
|
33957
34686
|
$filemanager-listview-item-width: 120px !default;
|
|
33958
34687
|
$filemanager-listview-item-height: 120px !default;
|
|
33959
34688
|
$filemanager-listview-item-bg: null !default;
|
|
@@ -33962,7 +34691,7 @@ $filemanager-listview-item-border: null !default;
|
|
|
33962
34691
|
|
|
33963
34692
|
$filemanager-listview-item-icon-size: ($icon-size * 3) !default;
|
|
33964
34693
|
$filemanager-listview-item-icon-bg: null !default;
|
|
33965
|
-
$filemanager-listview-item-icon-text: try-tint($filemanager-text, 4) !default;
|
|
34694
|
+
$filemanager-listview-item-icon-text: k-try-tint($filemanager-text, 4) !default;
|
|
33966
34695
|
$filemanager-listview-item-icon-border: null !default;
|
|
33967
34696
|
$filemanager-listview-item-icon-selected-bg: null !default;
|
|
33968
34697
|
$filemanager-listview-item-icon-selected-text: inherit !default;
|
|
@@ -33983,7 +34712,7 @@ $filemanager-preview-border: null !default;
|
|
|
33983
34712
|
|
|
33984
34713
|
$filemanager-preview-icon-size: ($icon-size * 6) !default;
|
|
33985
34714
|
$filemanager-preview-icon-bg: null !default;
|
|
33986
|
-
$filemanager-preview-icon-text: try-tint($filemanager-text, 4) !default;
|
|
34715
|
+
$filemanager-preview-icon-text: k-try-tint($filemanager-text, 4) !default;
|
|
33987
34716
|
$filemanager-preview-icon-border: null !default;
|
|
33988
34717
|
|
|
33989
34718
|
// #endregion
|
|
@@ -34386,7 +35115,7 @@ $filemanager-preview-icon-border: null !default;
|
|
|
34386
35115
|
// Component
|
|
34387
35116
|
// #region @import "_variables.scss"; -> packages/classic/scss/taskboard/_variables.scss
|
|
34388
35117
|
// TaskBoard
|
|
34389
|
-
$taskboard-spacer: map-get( $spacing, 4 ) !default;
|
|
35118
|
+
$taskboard-spacer: k-map-get( $spacing, 4 ) !default;
|
|
34390
35119
|
$taskboard-padding-y: null !default;
|
|
34391
35120
|
$taskboard-padding-x: null !default;
|
|
34392
35121
|
$taskboard-font-family: $font-family !default;
|
|
@@ -34406,9 +35135,9 @@ $taskboard-toolbar-gradient: null !default;
|
|
|
34406
35135
|
$taskboard-content-padding-y: $taskboard-spacer !default;
|
|
34407
35136
|
$taskboard-content-padding-x: $taskboard-content-padding-y !default;
|
|
34408
35137
|
|
|
34409
|
-
$taskboard-column-container-spacing-y: ( $taskboard-spacer
|
|
35138
|
+
$taskboard-column-container-spacing-y: k-math-div( $taskboard-spacer, 2 ) !default;
|
|
34410
35139
|
$taskboard-column-container-padding-y: 0px !default;
|
|
34411
|
-
$taskboard-column-container-padding-x: ( $taskboard-spacer
|
|
35140
|
+
$taskboard-column-container-padding-x: k-math-div( $taskboard-spacer, 2 ) !default;
|
|
34412
35141
|
$taskboard-columns-container-gap: $taskboard-spacer !default;
|
|
34413
35142
|
|
|
34414
35143
|
$taskboard-column-width: 320px !default;
|
|
@@ -34420,18 +35149,18 @@ $taskboard-column-border: transparent !default;
|
|
|
34420
35149
|
|
|
34421
35150
|
$taskboard-column-focus-bg: null !default;
|
|
34422
35151
|
$taskboard-column-focus-text: null !default;
|
|
34423
|
-
$taskboard-column-focus-border: try-shade( $base-border, 2.5 ) !default;
|
|
35152
|
+
$taskboard-column-focus-border: k-try-shade( $base-border, 2.5 ) !default;
|
|
34424
35153
|
|
|
34425
|
-
$taskboard-column-header-padding-y: ( $taskboard-spacer
|
|
35154
|
+
$taskboard-column-header-padding-y: k-math-div( $taskboard-spacer, 2 ) !default;
|
|
34426
35155
|
$taskboard-column-header-padding-x: $taskboard-column-header-padding-y !default;
|
|
34427
|
-
$taskboard-column-header-gap: ( $taskboard-spacer
|
|
34428
|
-
$taskboard-column-header-actions-gap: ( $taskboard-spacer
|
|
35156
|
+
$taskboard-column-header-gap: k-math-div( $taskboard-spacer, 4 ) !default;
|
|
35157
|
+
$taskboard-column-header-actions-gap: k-math-div( $taskboard-spacer, 2 ) !default;
|
|
34429
35158
|
$taskboard-column-header-font-weight: 500 !default;
|
|
34430
35159
|
$taskboard-column-header-text: $header-text !default;
|
|
34431
35160
|
|
|
34432
35161
|
$taskboard-column-cards-padding-y: null !default;
|
|
34433
35162
|
$taskboard-column-cards-padding-x: null !default;
|
|
34434
|
-
$taskboard-column-cards-gap: ( $taskboard-spacer
|
|
35163
|
+
$taskboard-column-cards-gap: k-math-div( $taskboard-spacer, 2 ) !default;
|
|
34435
35164
|
|
|
34436
35165
|
$taskboard-pane-width: $taskboard-column-width !default;
|
|
34437
35166
|
$taskboard-pane-padding-y: null !default;
|
|
@@ -34463,12 +35192,12 @@ $taskboard-card-shadow: $card-shadow !default;
|
|
|
34463
35192
|
|
|
34464
35193
|
$taskboard-card-category-border-width: 4px !default;
|
|
34465
35194
|
|
|
34466
|
-
$taskboard-card-focus-border: try-shade( $taskboard-card-border, 18% ) !default;
|
|
35195
|
+
$taskboard-card-focus-border: k-try-shade( $taskboard-card-border, 18% ) !default;
|
|
34467
35196
|
$taskboard-card-focus-shadow: none !default;
|
|
34468
35197
|
|
|
34469
|
-
$taskboard-card-hover-border: try-shade( $taskboard-card-border, 10% ) !default;
|
|
35198
|
+
$taskboard-card-hover-border: k-try-shade( $taskboard-card-border, 10% ) !default;
|
|
34470
35199
|
|
|
34471
|
-
$taskboard-card-selected-border: tint( $primary-lighter, 5 ) !default;
|
|
35200
|
+
$taskboard-card-selected-border: k-color-tint( $primary-lighter, 5 ) !default;
|
|
34472
35201
|
$taskboard-card-selected-shadow: none !default;
|
|
34473
35202
|
|
|
34474
35203
|
$taskboard-card-header-text: $primary !default;
|
|
@@ -34477,7 +35206,7 @@ $taskboard-card-header-hover-text: $primary-darker !default;
|
|
|
34477
35206
|
|
|
34478
35207
|
$taskboard-drag-placeholder-border-width: 1px !default;
|
|
34479
35208
|
$taskboard-drag-placeholder-border-radius: $taskboard-card-border-radius !default;
|
|
34480
|
-
$taskboard-drag-placeholder-bg: rgba(
|
|
35209
|
+
$taskboard-drag-placeholder-bg: rgba( white, .2 ) !default;
|
|
34481
35210
|
$taskboard-drag-placeholder-border: $component-border !default;
|
|
34482
35211
|
|
|
34483
35212
|
// #endregion
|
|
@@ -34897,7 +35626,7 @@ $editor-placeholder-opacity: $kendo-input-placeholder-opacity !default;
|
|
|
34897
35626
|
$editor-selected-text: $primary-contrast !default;
|
|
34898
35627
|
$editor-selected-bg: $primary !default;
|
|
34899
35628
|
|
|
34900
|
-
$editor-highlighted-bg: mix($primary, #ffffff, 20%) !default;
|
|
35629
|
+
$editor-highlighted-bg: k-color-mix( $primary, #ffffff, 20% ) !default;
|
|
34901
35630
|
|
|
34902
35631
|
$editor-export-tool-icon-margin-x: .25em !default;
|
|
34903
35632
|
|
|
@@ -35760,8 +36489,8 @@ $imageeditor-font-family: $font-family !default;
|
|
|
35760
36489
|
|
|
35761
36490
|
$imageeditor-content-border-width: 1px !default;
|
|
35762
36491
|
|
|
35763
|
-
$imageeditor-action-pane-padding-y: map-get( $spacing, 8 ) !default;
|
|
35764
|
-
$imageeditor-action-pane-padding-x: map-get( $spacing, 4 ) !default;
|
|
36492
|
+
$imageeditor-action-pane-padding-y: k-map-get( $spacing, 8 ) !default;
|
|
36493
|
+
$imageeditor-action-pane-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
35765
36494
|
$imageeditor-action-pane-width: if( $imageeditor-content-border-width == null, 240px, calc(240px + #{$imageeditor-content-border-width}) );
|
|
35766
36495
|
|
|
35767
36496
|
$imageeditor-crop-border-width: 1px !default;
|
|
@@ -35788,7 +36517,7 @@ $imageeditor-crop-bg: null !default;
|
|
|
35788
36517
|
$imageeditor-crop-text: null !default;
|
|
35789
36518
|
$imageeditor-crop-border: white !default;
|
|
35790
36519
|
|
|
35791
|
-
$imageeditor-crop-overlay-bg: rgba(black, .3) !default;
|
|
36520
|
+
$imageeditor-crop-overlay-bg: rgba( black, .3 ) !default;
|
|
35792
36521
|
|
|
35793
36522
|
// #endregion
|
|
35794
36523
|
// #region @import "_layout.scss"; -> packages/classic/scss/imageeditor/_layout.scss
|
|
@@ -36077,12 +36806,12 @@ $gantt-treelist-bg: null !default;
|
|
|
36077
36806
|
$gantt-treelist-text: null !default;
|
|
36078
36807
|
$gantt-treelist-border: null !default;
|
|
36079
36808
|
|
|
36080
|
-
$gantt-nonwork-bg: rgba( contrast-
|
|
36809
|
+
$gantt-nonwork-bg: rgba( k-contrast-color( $gantt-bg ), .025 ) !default;
|
|
36081
36810
|
$gantt-nonwork-text: null !default;
|
|
36082
36811
|
$gantt-nonwork-border: null !default;
|
|
36083
36812
|
|
|
36084
36813
|
$gantt-line-size: 2px !default;
|
|
36085
|
-
$gantt-line-fill: contrast-
|
|
36814
|
+
$gantt-line-fill: k-contrast-color( $gantt-bg ) !default;
|
|
36086
36815
|
$gantt-line-selected-fill: $primary !default;
|
|
36087
36816
|
|
|
36088
36817
|
$gantt-dot-size: 8px !default;
|
|
@@ -36097,19 +36826,19 @@ $gantt-milestone-border: $gantt-border !default;
|
|
|
36097
36826
|
$gantt-milestone-selected-bg: $selected-bg !default;
|
|
36098
36827
|
$gantt-milestone-selected-border: $selected-border !default;
|
|
36099
36828
|
|
|
36100
|
-
$gantt-summary-bg: try-tint( $gantt-text, 1 ) !default;
|
|
36101
|
-
$gantt-summary-progress-bg: try-shade( $gantt-text, 5 ) !default;
|
|
36102
|
-
$gantt-summary-selected-bg: try-tint( $selected-bg, 6 ) !default;
|
|
36829
|
+
$gantt-summary-bg: k-try-tint( $gantt-text, 1 ) !default;
|
|
36830
|
+
$gantt-summary-progress-bg: k-try-shade( $gantt-text, 5 ) !default;
|
|
36831
|
+
$gantt-summary-selected-bg: k-try-tint( $selected-bg, 6 ) !default;
|
|
36103
36832
|
$gantt-summary-progress-selected-bg: $selected-bg !default;
|
|
36104
36833
|
|
|
36105
36834
|
$gantt-task-border-width: 0px !default;
|
|
36106
|
-
$gantt-task-padding-x: map-get( $spacing, 2 ) !default;
|
|
36107
|
-
$gantt-task-padding-y: map-get( $spacing, 1 ) !default;
|
|
36108
|
-
$gantt-task-bg: try-tint( $gantt-text, 2 ) !default;
|
|
36109
|
-
$gantt-task-text: contrast-
|
|
36835
|
+
$gantt-task-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
36836
|
+
$gantt-task-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
36837
|
+
$gantt-task-bg: k-try-tint( $gantt-text, 2 ) !default;
|
|
36838
|
+
$gantt-task-text: k-contrast-color( $gantt-text ) !default;
|
|
36110
36839
|
$gantt-task-border: null !default;
|
|
36111
36840
|
$gantt-task-progress-bg: $gantt-text !default;
|
|
36112
|
-
$gantt-task-selected-bg: try-tint( $selected-bg, 6 ) !default;
|
|
36841
|
+
$gantt-task-selected-bg: k-try-tint( $selected-bg, 6 ) !default;
|
|
36113
36842
|
$gantt-task-selected-text: $selected-text !default;
|
|
36114
36843
|
$gantt-task-selected-border: null !default;
|
|
36115
36844
|
$gantt-task-progress-selected-bg: $selected-bg !default;
|
|
@@ -36143,10 +36872,10 @@ $gantt-planned-bg: $primary !default;
|
|
|
36143
36872
|
$gantt-planned-border: $gantt-planned-bg !default;
|
|
36144
36873
|
|
|
36145
36874
|
$gantt-delayed-bg: $error !default;
|
|
36146
|
-
$gantt-delayed-bg-lighter: tint($gantt-delayed-bg, 5) !default;
|
|
36875
|
+
$gantt-delayed-bg-lighter: k-color-tint($gantt-delayed-bg, 5) !default;
|
|
36147
36876
|
|
|
36148
36877
|
$gantt-advanced-bg: $success !default;
|
|
36149
|
-
$gantt-advanced-bg-lighter: tint($gantt-advanced-bg, 5) !default;
|
|
36878
|
+
$gantt-advanced-bg-lighter: k-color-tint($gantt-advanced-bg, 5) !default;
|
|
36150
36879
|
|
|
36151
36880
|
$gantt-action-on-offset-text: #000000 !default;
|
|
36152
36881
|
$gantt-offset-resize-handler-top: 50% !default;
|
|
@@ -37381,7 +38110,7 @@ $scheduler-event-min-height: 25px !default;
|
|
|
37381
38110
|
$scheduler-event-border-radius: $kendo-border-radius-md !default;
|
|
37382
38111
|
$scheduler-event-line-height: calc( #{$scheduler-event-min-height} - (2 * #{$padding-y}) ) !default;
|
|
37383
38112
|
|
|
37384
|
-
$scheduler-event-bg: tint( $selected-bg, 2 ) !default;
|
|
38113
|
+
$scheduler-event-bg: k-color-tint( $selected-bg, 2 ) !default;
|
|
37385
38114
|
$scheduler-event-text: $selected-text !default;
|
|
37386
38115
|
$scheduler-event-border: null !default;
|
|
37387
38116
|
$scheduler-event-gradient: null !default;
|
|
@@ -37397,31 +38126,31 @@ $scheduler-event-selected-bg: $selected-bg !default;
|
|
|
37397
38126
|
$scheduler-event-selected-text: $selected-text !default;
|
|
37398
38127
|
$scheduler-event-selected-border: null !default;
|
|
37399
38128
|
$scheduler-event-selected-gradient: null !default;
|
|
37400
|
-
$scheduler-event-selected-shadow: inset 0 0 0 2px rgba(
|
|
38129
|
+
$scheduler-event-selected-shadow: inset 0 0 0 2px rgba( black, .13 ) !default;
|
|
37401
38130
|
|
|
37402
38131
|
$scheduler-event-ongoing-shadow: inset 0px 0px 0px 1px #ff0000 !default;
|
|
37403
38132
|
|
|
37404
|
-
$scheduler-cell-padding-x: map-get( $spacing, 2 ) !default;
|
|
37405
|
-
$scheduler-cell-padding-y: map-get( $spacing, 2 ) !default;
|
|
38133
|
+
$scheduler-cell-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
38134
|
+
$scheduler-cell-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
37406
38135
|
$scheduler-cell-height: $line-height-em !default;
|
|
37407
38136
|
$scheduler-datecolumn-width: 12em !default;
|
|
37408
38137
|
$scheduler-timecolumn-width: 11em !default;
|
|
37409
38138
|
|
|
37410
38139
|
$scheduler-current-time-color: #ff0000 !default;
|
|
37411
38140
|
|
|
37412
|
-
$scheduler-nonwork-bg: try-shade( $scheduler-bg, .5 ) !default;
|
|
38141
|
+
$scheduler-nonwork-bg: k-try-shade( $scheduler-bg, .5 ) !default;
|
|
37413
38142
|
$scheduler-nonwork-text: null !default;
|
|
37414
38143
|
|
|
37415
38144
|
$scheduler-weekend-bg: null !default;
|
|
37416
38145
|
$scheduler-weekend-text: null !default;
|
|
37417
38146
|
|
|
37418
|
-
$scheduler-othermonth-bg: try-shade( $scheduler-bg, .5 ) !default;
|
|
38147
|
+
$scheduler-othermonth-bg: k-try-shade( $scheduler-bg, .5 ) !default;
|
|
37419
38148
|
$scheduler-othermonth-text: null !default;
|
|
37420
38149
|
|
|
37421
|
-
$scheduler-yearview-padding-x: map-get( $spacing, 3 ) !default;
|
|
38150
|
+
$scheduler-yearview-padding-x: k-map-get( $spacing, 3 ) !default;
|
|
37422
38151
|
$scheduler-yearview-padding-y: $scheduler-yearview-padding-x !default;
|
|
37423
38152
|
|
|
37424
|
-
$scheduler-yearview-calendar-gap: map-get( $spacing, 3 ) !default;
|
|
38153
|
+
$scheduler-yearview-calendar-gap: k-map-get( $spacing, 3 ) !default;
|
|
37425
38154
|
|
|
37426
38155
|
$scheduler-yearview-indicator-size: 3px !default;
|
|
37427
38156
|
$scheduler-yearview-indicator-calc-offset-top: calc( #{$calendar-cell-size} - (#{$calendar-cell-padding-y} * 2)) !default;
|
|
@@ -37436,7 +38165,7 @@ $scheduler-tooltip-border-width: 0 !default;
|
|
|
37436
38165
|
$scheduler-tooltip-bg: $primary-contrast !default;
|
|
37437
38166
|
$scheduler-tooltip-text: $base-text !default;
|
|
37438
38167
|
$scheduler-tooltip-border: null !default;
|
|
37439
|
-
$scheduler-tooltip-shadow: 0px 0px 10px rgba(
|
|
38168
|
+
$scheduler-tooltip-shadow: 0px 0px 10px rgba( black, .2 ) !default;
|
|
37440
38169
|
|
|
37441
38170
|
$scheduler-tooltip-title-margin-y: $padding-y !default;
|
|
37442
38171
|
$scheduler-tooltip-month-font-size: $font-size-sm !default;
|
|
@@ -38916,9 +39645,9 @@ $chat-border: $app-border !default;
|
|
|
38916
39645
|
$chat-bubble-bg: $component-bg !default;
|
|
38917
39646
|
$chat-bubble-text: $component-text !default;
|
|
38918
39647
|
$chat-bubble-border: $chat-bubble-bg !default;
|
|
38919
|
-
$chat-bubble-shadow: 0 1px 2px rgba(
|
|
38920
|
-
$chat-bubble-hover-shadow: 0 1px 2px rgba(
|
|
38921
|
-
$chat-bubble-selected-shadow: 0 3px 10px rgba(
|
|
39648
|
+
$chat-bubble-shadow: 0 1px 2px rgba( black, .08 ) !default;
|
|
39649
|
+
$chat-bubble-hover-shadow: 0 1px 2px rgba( black, .16 ) !default;
|
|
39650
|
+
$chat-bubble-selected-shadow: 0 3px 10px rgba( black, .16 ) !default;
|
|
38922
39651
|
|
|
38923
39652
|
$chat-alt-bubble-bg: $primary !default;
|
|
38924
39653
|
$chat-alt-bubble-text: contrast-wcag( $chat-alt-bubble-bg ) !default;
|
|
@@ -39625,8 +40354,8 @@ $mediaplayer-bg: $component-bg !default;
|
|
|
39625
40354
|
$mediaplayer-text: $component-text !default;
|
|
39626
40355
|
$mediaplayer-border: $component-border !default;
|
|
39627
40356
|
|
|
39628
|
-
$mediaplayer-titlebar-padding-x: map-get( $spacing, 2 ) !default;
|
|
39629
|
-
$mediaplayer-titlebar-padding-y: map-get( $spacing, 2 ) !default;
|
|
40357
|
+
$mediaplayer-titlebar-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
40358
|
+
$mediaplayer-titlebar-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
39630
40359
|
$mediaplayer-titlebar-bg: null !default;
|
|
39631
40360
|
$mediaplayer-titlebar-text: $mediaplayer-bg !default;
|
|
39632
40361
|
$mediaplayer-titlebar-border: null !default;
|
|
@@ -39811,9 +40540,9 @@ $timeline-mobile-spacing-y: 16px !default;
|
|
|
39811
40540
|
$timeline-track-arrow-width: 30px !default;
|
|
39812
40541
|
$timeline-track-arrow-height: 30px !default;
|
|
39813
40542
|
|
|
39814
|
-
$timeline-track-arrow-disabled-text: true-mix($kendo-button-text, $body-bg, 65%) !default;
|
|
39815
|
-
$timeline-track-arrow-disabled-bg: true-mix($kendo-button-bg, $body-bg, 65%) !default;
|
|
39816
|
-
$timeline-track-arrow-disabled-border: true-mix(#000000, $body-bg, 4.8%) !default;
|
|
40543
|
+
$timeline-track-arrow-disabled-text: k-true-mix( $kendo-button-text, $body-bg, 65% ) !default;
|
|
40544
|
+
$timeline-track-arrow-disabled-bg: k-true-mix( $kendo-button-bg, $body-bg, 65% ) !default;
|
|
40545
|
+
$timeline-track-arrow-disabled-border: k-true-mix( #000000, $body-bg, 4.8% ) !default;
|
|
39817
40546
|
|
|
39818
40547
|
$timeline-track-size: 6px !default;
|
|
39819
40548
|
$timeline-track-wrap-padding-bottom: $timeline-track-size / 2 !default;
|
|
@@ -39825,7 +40554,7 @@ $timeline-track-end-calc: calc(#{$timeline-track-arrow-width} - 2 * #{$timeline-
|
|
|
39825
40554
|
$timeline-track-bg: $kendo-button-bg !default;
|
|
39826
40555
|
$timeline-track-border-color: $kendo-button-border !default;
|
|
39827
40556
|
|
|
39828
|
-
$timeline-track-item-focus-shadow: 0 3px 4px 0 rgba($primary, .4) !default;
|
|
40557
|
+
$timeline-track-item-focus-shadow: 0 3px 4px 0 rgba( $primary, .4 ) !default;
|
|
39829
40558
|
|
|
39830
40559
|
$timeline-track-event-offset: 36px !default;
|
|
39831
40560
|
|
|
@@ -40441,10 +41170,10 @@ $pdf-viewer-page-spacing: 30px !default;
|
|
|
40441
41170
|
$pdf-viewer-page-bg: white !default;
|
|
40442
41171
|
$pdf-viewer-page-text: $component-text !default;
|
|
40443
41172
|
$pdf-viewer-page-border: $component-border !default;
|
|
40444
|
-
$pdf-viewer-page-shadow: 0 0 ($pdf-viewer-page-spacing
|
|
41173
|
+
$pdf-viewer-page-shadow: 0 0 k-math-div( $pdf-viewer-page-spacing, 2 ) $pdf-viewer-page-border !default;
|
|
40445
41174
|
|
|
40446
41175
|
$pdf-viewer-search-panel-border-width: 1px !default;
|
|
40447
|
-
$pdf-viewer-search-panel-border-radius: map-get( $spacing, 1 ) !default;
|
|
41176
|
+
$pdf-viewer-search-panel-border-radius: k-map-get( $spacing, 1 ) !default;
|
|
40448
41177
|
$pdf-viewer-search-panel-bg: $component-bg !default;
|
|
40449
41178
|
$pdf-viewer-search-panel-text: $component-text !default;
|
|
40450
41179
|
$pdf-viewer-search-panel-border: $component-border !default;
|
|
@@ -40452,7 +41181,7 @@ $pdf-viewer-search-panel-shadow: $window-shadow !default;
|
|
|
40452
41181
|
$pdf-viewer-search-panel-matches-spacing: $padding-x-sm !default;
|
|
40453
41182
|
|
|
40454
41183
|
$pdf-viewer-search-dialog-padding-x: $toolbar-padding-x !default;
|
|
40455
|
-
$pdf-viewer-search-dialog-padding-y: map-get( $spacing, 3 ) !default;
|
|
41184
|
+
$pdf-viewer-search-dialog-padding-y: k-map-get( $spacing, 3 ) !default;
|
|
40456
41185
|
$pdf-viewer-search-dialog-spacing: $toolbar-spacing !default;
|
|
40457
41186
|
|
|
40458
41187
|
$pdf-viewer-selection-line-height: $line-height-sm !default;
|
|
@@ -40888,8 +41617,8 @@ $scrollview-pagebutton-size: 10px !default;
|
|
|
40888
41617
|
$scrollview-pagebutton-bg: $kendo-button-bg !default;
|
|
40889
41618
|
$scrollview-pagebutton-border: $kendo-button-border !default;
|
|
40890
41619
|
$scrollview-pagebutton-primary-bg: $primary !default;
|
|
40891
|
-
$scrollview-pagebutton-primary-border: try-shade( $primary, 2 ) !default;
|
|
40892
|
-
$scrollview-pagebutton-shadow: 0 0 0 2px rgba(
|
|
41620
|
+
$scrollview-pagebutton-primary-border: k-try-shade( $primary, 2 ) !default;
|
|
41621
|
+
$scrollview-pagebutton-shadow: 0 0 0 2px rgba( black, .13 ) !default;
|
|
40893
41622
|
|
|
40894
41623
|
$scrollview-pager-offset: 0 !default;
|
|
40895
41624
|
$scrollview-pager-item-spacing: 20px !default;
|
|
@@ -40903,14 +41632,14 @@ $scrollview-pager-multidot-step: 1px !default;
|
|
|
40903
41632
|
$scrollview-arrow-icon-size: 4.5em !default;
|
|
40904
41633
|
$scrollview-arrow-tap-highlight-color: $rgba-transparent !default;
|
|
40905
41634
|
$scrollview-navigation-color: white !default;
|
|
40906
|
-
$scrollview-navigation-icon-shadow: rgba(
|
|
40907
|
-
$scrollview-navigation-bg: rgba(
|
|
41635
|
+
$scrollview-navigation-icon-shadow: rgba( black, .3 ) 0 0 15px !default;
|
|
41636
|
+
$scrollview-navigation-bg: rgba( black, 0 ) !default;
|
|
40908
41637
|
$scrollview-navigation-default-opacity: .7 !default;
|
|
40909
41638
|
$scrollview-navigation-hover-opacity: 1 !default;
|
|
40910
41639
|
$scrollview-navigation-hover-span-bg: null !default;
|
|
40911
41640
|
|
|
40912
|
-
$scrollview-light-bg: rgba(
|
|
40913
|
-
$scrollview-dark-bg: rgba(
|
|
41641
|
+
$scrollview-light-bg: rgba( white, .4 ) !default;
|
|
41642
|
+
$scrollview-dark-bg: rgba( black, .4 ) !default;
|
|
40914
41643
|
|
|
40915
41644
|
$scrollview-transition-duration: .3s !default;
|
|
40916
41645
|
$scrollview-transition-timing-function: ease-in-out !default;
|
|
@@ -41255,50 +41984,50 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
41255
41984
|
/// The first base series color and its light and dark shades.
|
|
41256
41985
|
/// @group charts
|
|
41257
41986
|
$series-a: #ff6358 !default;
|
|
41258
|
-
$series-a-dark: mix(black, $series-a, 25%) !default;
|
|
41259
|
-
$series-a-darker: mix(black, $series-a, 50%) !default;
|
|
41260
|
-
$series-a-light: mix(white, $series-a, 25%) !default;
|
|
41261
|
-
$series-a-lighter: mix(white, $series-a, 50%) !default;
|
|
41987
|
+
$series-a-dark: k-color-mix( black, $series-a, 25% ) !default;
|
|
41988
|
+
$series-a-darker: k-color-mix( black, $series-a, 50% ) !default;
|
|
41989
|
+
$series-a-light: k-color-mix( white, $series-a, 25% ) !default;
|
|
41990
|
+
$series-a-lighter: k-color-mix( white, $series-a, 50% ) !default;
|
|
41262
41991
|
|
|
41263
41992
|
/// The second base series color and its light and dark shades.
|
|
41264
41993
|
/// @group charts
|
|
41265
41994
|
$series-b: #ffd246 !default;
|
|
41266
|
-
$series-b-dark: mix(black, $series-b, 25%) !default;
|
|
41267
|
-
$series-b-darker: mix(black, $series-b, 50%) !default;
|
|
41268
|
-
$series-b-light: mix(white, $series-b, 25%) !default;
|
|
41269
|
-
$series-b-lighter: mix(white, $series-b, 50%) !default;
|
|
41995
|
+
$series-b-dark: k-color-mix( black, $series-b, 25% ) !default;
|
|
41996
|
+
$series-b-darker: k-color-mix( black, $series-b, 50% ) !default;
|
|
41997
|
+
$series-b-light: k-color-mix( white, $series-b, 25% ) !default;
|
|
41998
|
+
$series-b-lighter: k-color-mix( white, $series-b, 50% ) !default;
|
|
41270
41999
|
|
|
41271
42000
|
/// The third base series color and its light and dark shades.
|
|
41272
42001
|
/// @group charts
|
|
41273
42002
|
$series-c: #78d237 !default;
|
|
41274
|
-
$series-c-dark: mix(black, $series-c, 25%) !default;
|
|
41275
|
-
$series-c-darker: mix(black, $series-c, 50%) !default;
|
|
41276
|
-
$series-c-light: mix(white, $series-c, 25%) !default;
|
|
41277
|
-
$series-c-lighter: mix(white, $series-c, 50%) !default;
|
|
42003
|
+
$series-c-dark: k-color-mix( black, $series-c, 25% ) !default;
|
|
42004
|
+
$series-c-darker: k-color-mix( black, $series-c, 50% ) !default;
|
|
42005
|
+
$series-c-light: k-color-mix( white, $series-c, 25% ) !default;
|
|
42006
|
+
$series-c-lighter: k-color-mix( white, $series-c, 50% ) !default;
|
|
41278
42007
|
|
|
41279
42008
|
/// The fourth base series color and its light and dark shades.
|
|
41280
42009
|
/// @group charts
|
|
41281
42010
|
$series-d: #28b4c8 !default;
|
|
41282
|
-
$series-d-dark: mix(black, $series-d, 25%) !default;
|
|
41283
|
-
$series-d-darker: mix(black, $series-d, 50%) !default;
|
|
41284
|
-
$series-d-light: mix(white, $series-d, 25%) !default;
|
|
41285
|
-
$series-d-lighter: mix(white, $series-d, 50%) !default;
|
|
42011
|
+
$series-d-dark: k-color-mix( black, $series-d, 25% ) !default;
|
|
42012
|
+
$series-d-darker: k-color-mix( black, $series-d, 50% ) !default;
|
|
42013
|
+
$series-d-light: k-color-mix( white, $series-d, 25% ) !default;
|
|
42014
|
+
$series-d-lighter: k-color-mix( white, $series-d, 50% ) !default;
|
|
41286
42015
|
|
|
41287
42016
|
/// The fifth base series color and its light and dark shades.
|
|
41288
42017
|
/// @group charts
|
|
41289
42018
|
$series-e: #2d73f5 !default;
|
|
41290
|
-
$series-e-dark: mix(black, $series-e, 25%) !default;
|
|
41291
|
-
$series-e-darker: mix(black, $series-e, 50%) !default;
|
|
41292
|
-
$series-e-light: mix(white, $series-e, 25%) !default;
|
|
41293
|
-
$series-e-lighter: mix(white, $series-e, 50%) !default;
|
|
42019
|
+
$series-e-dark: k-color-mix( black, $series-e, 25% ) !default;
|
|
42020
|
+
$series-e-darker: k-color-mix( black, $series-e, 50% ) !default;
|
|
42021
|
+
$series-e-light: k-color-mix( white, $series-e, 25% ) !default;
|
|
42022
|
+
$series-e-lighter: k-color-mix( white, $series-e, 50% ) !default;
|
|
41294
42023
|
|
|
41295
42024
|
/// The sixth base series color and its light and dark shades.
|
|
41296
42025
|
/// @group charts
|
|
41297
42026
|
$series-f: #aa46be !default;
|
|
41298
|
-
$series-f-dark: mix(black, $series-f, 25%) !default;
|
|
41299
|
-
$series-f-darker: mix(black, $series-f, 50%) !default;
|
|
41300
|
-
$series-f-light: mix(white, $series-f, 25%) !default;
|
|
41301
|
-
$series-f-lighter: mix(white, $series-f, 50%) !default;
|
|
42027
|
+
$series-f-dark: k-color-mix( black, $series-f, 25% ) !default;
|
|
42028
|
+
$series-f-darker: k-color-mix( black, $series-f, 50% ) !default;
|
|
42029
|
+
$series-f-light: k-color-mix( white, $series-f, 25% ) !default;
|
|
42030
|
+
$series-f-lighter: k-color-mix( white, $series-f, 50% ) !default;
|
|
41302
42031
|
|
|
41303
42032
|
/// The series colors in order:
|
|
41304
42033
|
/// base, light, dark, lighter, darker
|
|
@@ -41367,7 +42096,7 @@ $chart-border: $component-border !default;
|
|
|
41367
42096
|
|
|
41368
42097
|
$chart-crosshair-background: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
41369
42098
|
$chart-crosshair-shared-tooltip-color: $chart-text !default;
|
|
41370
|
-
$chart-crosshair-shared-tooltip-background: try-shade( $chart-bg, 1 ) !default;
|
|
42099
|
+
$chart-crosshair-shared-tooltip-background: k-try-shade( $chart-bg, 1 ) !default;
|
|
41371
42100
|
$chart-crosshair-shared-tooltip-border: rgba( if( $dark-theme, $white, $black ), .08) !default;
|
|
41372
42101
|
|
|
41373
42102
|
$chart-notes-background: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
@@ -42319,7 +43048,7 @@ $map-marker-fill: $primary !default;
|
|
|
42319
43048
|
// Component
|
|
42320
43049
|
// #region @import "_variables.scss"; -> packages/classic/scss/orgchart/_variables.scss
|
|
42321
43050
|
// Orgchart
|
|
42322
|
-
$orgchart-spacer: map-get( $spacing, 6 ) !default;
|
|
43051
|
+
$orgchart-spacer: k-map-get( $spacing, 6 ) !default;
|
|
42323
43052
|
$orgchart-padding-y: $orgchart-spacer !default;
|
|
42324
43053
|
$orgchart-padding-x: $orgchart-padding-y !default;
|
|
42325
43054
|
$orgchart-font-family: $font-family !default;
|
|
@@ -42566,10 +43295,10 @@ $kendo-signature-lg-min-height: 110px;
|
|
|
42566
43295
|
$kendo-signature-maximized-width: 750px !default;
|
|
42567
43296
|
$kendo-signature-maximized-height: 252px !default;
|
|
42568
43297
|
|
|
42569
|
-
$kendo-signature-padding-x: map-get( $spacing, 1 ) !default;
|
|
42570
|
-
$kendo-signature-padding-x-sm: map-get( $spacing, 1 ) - map-get($spacing, thin) !default;
|
|
43298
|
+
$kendo-signature-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
43299
|
+
$kendo-signature-padding-x-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
42571
43300
|
$kendo-signature-padding-x-md: $kendo-signature-padding-x !default;
|
|
42572
|
-
$kendo-signature-padding-x-lg: map-get( $spacing, 2 ) !default;
|
|
43301
|
+
$kendo-signature-padding-x-lg: k-map-get( $spacing, 2 ) !default;
|
|
42573
43302
|
|
|
42574
43303
|
$kendo-signature-padding-y: $kendo-signature-padding-x !default;
|
|
42575
43304
|
$kendo-signature-padding-y-sm: $kendo-signature-padding-x-sm !default;
|
|
@@ -42605,8 +43334,8 @@ $kendo-signature-sizes: (
|
|
|
42605
43334
|
)
|
|
42606
43335
|
) !default;
|
|
42607
43336
|
|
|
42608
|
-
$kendo-signature-actions-gap: map-get( $spacing, 1 ) !default;
|
|
42609
|
-
$kendo-signature-maximized-line-width: map-get( $spacing, 1 ) - map-get( $spacing, hair ) !default;
|
|
43337
|
+
$kendo-signature-actions-gap: k-map-get( $spacing, 1 ) !default;
|
|
43338
|
+
$kendo-signature-maximized-line-width: k-map-get( $spacing, 1 ) - k-map-get( $spacing, hair ) !default;
|
|
42610
43339
|
|
|
42611
43340
|
// #endregion
|
|
42612
43341
|
// #region @import "_layout.scss"; -> packages/classic/scss/signature/_layout.scss
|