@progress/kendo-theme-classic 5.8.2-dev.4 → 5.8.2-dev.6
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 +191 -30
- package/dist/all.scss +1437 -519
- 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 +34 -15
- 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;
|
|
@@ -4835,6 +5553,27 @@ $utils-border-radius: (
|
|
|
4835
5553
|
}
|
|
4836
5554
|
}
|
|
4837
5555
|
|
|
5556
|
+
// Icon wrap
|
|
5557
|
+
.k-icon-wrap {
|
|
5558
|
+
flex: none;
|
|
5559
|
+
display: inline-flex;
|
|
5560
|
+
flex-flow: row nowrap;
|
|
5561
|
+
gap: 0;
|
|
5562
|
+
align-items: center;
|
|
5563
|
+
align-self: flex-start;
|
|
5564
|
+
vertical-align: middle;
|
|
5565
|
+
position: relative;
|
|
5566
|
+
|
|
5567
|
+
&::before {
|
|
5568
|
+
content: "\200b";
|
|
5569
|
+
width: 0;
|
|
5570
|
+
overflow: hidden;
|
|
5571
|
+
flex: none;
|
|
5572
|
+
display: inline-block;
|
|
5573
|
+
vertical-align: top;
|
|
5574
|
+
}
|
|
5575
|
+
}
|
|
5576
|
+
|
|
4838
5577
|
.k-icon {
|
|
4839
5578
|
width: 1em;
|
|
4840
5579
|
height: 1em;
|
|
@@ -6097,18 +6836,18 @@ $kendo-list-line-height-lg: $line-height-lg !default;
|
|
|
6097
6836
|
/// Horizontal padding of list header, if no size is set.
|
|
6098
6837
|
/// @group list
|
|
6099
6838
|
$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;
|
|
6839
|
+
$kendo-list-header-padding-x-base: k-map-get( $spacing, 2 ) !default;
|
|
6840
|
+
$kendo-list-header-padding-x-sm: k-map-get( $spacing, 2 ) !default;
|
|
6841
|
+
$kendo-list-header-padding-x-md: k-map-get( $spacing, 2 ) !default;
|
|
6842
|
+
$kendo-list-header-padding-x-lg: k-map-get( $spacing, 2 ) !default;
|
|
6104
6843
|
|
|
6105
6844
|
/// Vertical padding of list header, if no size is set.
|
|
6106
6845
|
/// @group list
|
|
6107
6846
|
$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;
|
|
6847
|
+
$kendo-list-header-padding-y-base: k-map-get( $spacing, 1 ) !default;
|
|
6848
|
+
$kendo-list-header-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
6849
|
+
$kendo-list-header-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
6850
|
+
$kendo-list-header-padding-y-lg: k-map-get( $spacing, 1 ) + k-map-get( $spacing, thin ) !default;
|
|
6112
6851
|
|
|
6113
6852
|
/// Border width of list header.
|
|
6114
6853
|
/// @group list
|
|
@@ -6135,18 +6874,18 @@ $kendo-list-header-font-weight: null !default;
|
|
|
6135
6874
|
/// Horizontal padding of list items, when no size is set.
|
|
6136
6875
|
/// @group list
|
|
6137
6876
|
$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;
|
|
6877
|
+
$kendo-list-item-padding-x-base: k-map-get( $spacing, 2 ) !default;
|
|
6878
|
+
$kendo-list-item-padding-x-sm: k-map-get( $spacing, 2 ) !default;
|
|
6879
|
+
$kendo-list-item-padding-x-md: k-map-get( $spacing, 2 ) !default;
|
|
6880
|
+
$kendo-list-item-padding-x-lg: k-map-get( $spacing, 3 ) !default;
|
|
6142
6881
|
|
|
6143
6882
|
/// Vertical padding of list items, when no size is set.
|
|
6144
6883
|
/// @group list
|
|
6145
6884
|
$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;
|
|
6885
|
+
$kendo-list-item-padding-y-base: k-map-get( $spacing, 1 ) !default;
|
|
6886
|
+
$kendo-list-item-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
6887
|
+
$kendo-list-item-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
6888
|
+
$kendo-list-item-padding-y-lg: k-map-get( $spacing, 2 ) !default;
|
|
6150
6889
|
|
|
6151
6890
|
/// Font size of list items, if no size is set.
|
|
6152
6891
|
/// @group list
|
|
@@ -6165,18 +6904,18 @@ $kendo-list-item-line-height-lg: null !default;
|
|
|
6165
6904
|
/// Horizontal padding of list group items, when no size is set.
|
|
6166
6905
|
/// @group list
|
|
6167
6906
|
$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;
|
|
6907
|
+
$kendo-list-group-item-padding-x-base: k-map-get( $spacing, 2 ) !default;
|
|
6908
|
+
$kendo-list-group-item-padding-x-sm: k-map-get( $spacing, 2 ) !default;
|
|
6909
|
+
$kendo-list-group-item-padding-x-md: k-map-get( $spacing, 2 ) !default;
|
|
6910
|
+
$kendo-list-group-item-padding-x-lg: k-map-get( $spacing, 2 ) !default;
|
|
6172
6911
|
|
|
6173
6912
|
/// Vertical padding of list group items, when no size is set.
|
|
6174
6913
|
/// @group list
|
|
6175
6914
|
$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;
|
|
6915
|
+
$kendo-list-group-item-padding-y-base: k-map-get( $spacing, 1 ) !default;
|
|
6916
|
+
$kendo-list-group-item-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
6917
|
+
$kendo-list-group-item-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
6918
|
+
$kendo-list-group-item-padding-y-lg: k-map-get( $spacing, 1 ) + k-map-get( $spacing, thin ) !default;
|
|
6180
6919
|
|
|
6181
6920
|
/// Border width of list group items.
|
|
6182
6921
|
/// @group list
|
|
@@ -6301,7 +7040,7 @@ $kendo-list-item-focus-bg: null !default;
|
|
|
6301
7040
|
$kendo-list-item-focus-text: null !default;
|
|
6302
7041
|
/// Box shadow of focused list items.
|
|
6303
7042
|
/// @group list
|
|
6304
|
-
$kendo-list-item-focus-shadow: inset 0 0 0 2px rgba(
|
|
7043
|
+
$kendo-list-item-focus-shadow: inset 0 0 0 2px rgba( black, .12 ) !default;
|
|
6305
7044
|
|
|
6306
7045
|
/// Background color of selected list items.
|
|
6307
7046
|
/// @group list
|
|
@@ -6341,19 +7080,19 @@ $kendo-checkbox-border-width: 1px !default;
|
|
|
6341
7080
|
// Checkbox sizes
|
|
6342
7081
|
$kendo-checkbox-sizes: (
|
|
6343
7082
|
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
|
|
7083
|
+
size: k-map-get( $spacing, 3 ),
|
|
7084
|
+
glyph-size: ( k-map-get( $spacing, 3 ) - k-map-get( $spacing, thin ) ),
|
|
7085
|
+
ripple-size: k-map-get( $spacing, 3 ) * 3
|
|
6347
7086
|
),
|
|
6348
7087
|
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
|
|
7088
|
+
size: k-map-get( $spacing, 4 ),
|
|
7089
|
+
glyph-size: ( k-map-get( $spacing, 4 ) - k-map-get( $spacing, thin ) ),
|
|
7090
|
+
ripple-size: k-map-get( $spacing, 4 ) * 3
|
|
6352
7091
|
),
|
|
6353
7092
|
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
|
|
7093
|
+
size: k-map-get( $spacing, 5 ),
|
|
7094
|
+
glyph-size: ( k-map-get( $spacing, 5 ) - k-map-get( $spacing, thin ) ),
|
|
7095
|
+
ripple-size: k-map-get( $spacing, 5 ) * 3
|
|
6357
7096
|
)
|
|
6358
7097
|
) !default;
|
|
6359
7098
|
|
|
@@ -6402,7 +7141,7 @@ $kendo-checkbox-indeterminate-border: $kendo-checkbox-border !default;
|
|
|
6402
7141
|
$kendo-checkbox-focus-border: null !default;
|
|
6403
7142
|
/// Box shadow of focused checkbox.
|
|
6404
7143
|
/// @group checkbox
|
|
6405
|
-
$kendo-checkbox-focus-shadow: 0 0 0 2px rgba(
|
|
7144
|
+
$kendo-checkbox-focus-shadow: 0 0 0 2px rgba( black, .06 ) !default;
|
|
6406
7145
|
/// Border color of focused and checked checkbox.
|
|
6407
7146
|
/// @group checkbox
|
|
6408
7147
|
$kendo-checkbox-focus-checked-border: null !default;
|
|
@@ -6469,14 +7208,14 @@ $kendo-checkbox-indeterminate-image: escape-svg( url("data:image/svg+xml,<svg xm
|
|
|
6469
7208
|
|
|
6470
7209
|
/// The horizontal margin of the checkbox inside a label.
|
|
6471
7210
|
/// @group checkbox
|
|
6472
|
-
$kendo-checkbox-label-margin-x: map-get( $spacing, 1 ) !default;
|
|
7211
|
+
$kendo-checkbox-label-margin-x: k-map-get( $spacing, 1 ) !default;
|
|
6473
7212
|
|
|
6474
7213
|
|
|
6475
7214
|
// Checkbox list
|
|
6476
7215
|
|
|
6477
7216
|
/// Spacing between items of horizontal checkbox list.
|
|
6478
7217
|
/// @group checkbox
|
|
6479
|
-
$kendo-checkbox-list-spacing: map-get( $spacing, 4 ) !default;
|
|
7218
|
+
$kendo-checkbox-list-spacing: k-map-get( $spacing, 4 ) !default;
|
|
6480
7219
|
/// Horizontal padding of checkbox list items.
|
|
6481
7220
|
/// @group checkbox
|
|
6482
7221
|
$kendo-checkbox-list-item-padding-x: 0px !default;
|
|
@@ -6833,6 +7572,17 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
6833
7572
|
// #region @import "~@progress/kendo-theme-default/scss/list/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/list/_layout.scss
|
|
6834
7573
|
@include exports( "list/layout" ) {
|
|
6835
7574
|
|
|
7575
|
+
// List container
|
|
7576
|
+
.k-list-container {
|
|
7577
|
+
display: flex;
|
|
7578
|
+
flex-flow: column nowrap;
|
|
7579
|
+
|
|
7580
|
+
> .k-list {
|
|
7581
|
+
flex: 1;
|
|
7582
|
+
height: 100%;
|
|
7583
|
+
}
|
|
7584
|
+
}
|
|
7585
|
+
|
|
6836
7586
|
// List
|
|
6837
7587
|
.k-list {
|
|
6838
7588
|
margin: 0;
|
|
@@ -7013,7 +7763,7 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
7013
7763
|
position: relative;
|
|
7014
7764
|
padding: $padding-x;
|
|
7015
7765
|
box-sizing: border-box;
|
|
7016
|
-
flex:
|
|
7766
|
+
flex: none;
|
|
7017
7767
|
}
|
|
7018
7768
|
|
|
7019
7769
|
|
|
@@ -7211,8 +7961,8 @@ $listgroup-bg: $component-bg !default;
|
|
|
7211
7961
|
$listgroup-text: $component-text !default;
|
|
7212
7962
|
$listgroup-border: $component-border !default;
|
|
7213
7963
|
|
|
7214
|
-
$listgroup-item-padding-x: map-get( $spacing, 2 ) !default;
|
|
7215
|
-
$listgroup-item-padding-y: map-get( $spacing, 2 ) !default;
|
|
7964
|
+
$listgroup-item-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
7965
|
+
$listgroup-item-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
7216
7966
|
$listgroup-item-border-width: 1px !default;
|
|
7217
7967
|
|
|
7218
7968
|
// #endregion
|
|
@@ -7524,13 +8274,13 @@ $popup-border-radius: null !default;
|
|
|
7524
8274
|
$popup-font-size: $font-size !default;
|
|
7525
8275
|
$popup-line-height: $line-height !default;
|
|
7526
8276
|
|
|
7527
|
-
$popup-content-padding-x: map-get( $spacing, 2 ) !default;
|
|
7528
|
-
$popup-content-padding-y: map-get( $spacing, 2 ) !default;
|
|
8277
|
+
$popup-content-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
8278
|
+
$popup-content-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
7529
8279
|
|
|
7530
8280
|
$popup-bg: $component-bg !default;
|
|
7531
8281
|
$popup-text: $component-text !default;
|
|
7532
8282
|
$popup-border: $component-border !default;
|
|
7533
|
-
$popup-shadow: 0 2px 4px 0 rgba(
|
|
8283
|
+
$popup-shadow: 0 2px 4px 0 rgba( black, .03 ), 0 4px 5px 0 rgba( black, .04 ) !default;
|
|
7534
8284
|
|
|
7535
8285
|
// #endregion
|
|
7536
8286
|
// #region @import "_layout.scss"; -> packages/classic/scss/popup/_layout.scss
|
|
@@ -7761,17 +8511,17 @@ $kendo-badge-border-radius: $kendo-border-radius-md !default;
|
|
|
7761
8511
|
|
|
7762
8512
|
/// Horizontal padding of the badge.
|
|
7763
8513
|
/// @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;
|
|
8514
|
+
$kendo-badge-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
8515
|
+
$kendo-badge-padding-x-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
8516
|
+
$kendo-badge-padding-x-md: k-map-get( $spacing, 1 ) !default;
|
|
8517
|
+
$kendo-badge-padding-x-lg: k-map-get( $spacing, 1 ) + k-map-get( $spacing, thin ) !default;
|
|
7768
8518
|
|
|
7769
8519
|
/// Vertical padding of the badge.
|
|
7770
8520
|
/// @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;
|
|
8521
|
+
$kendo-badge-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
8522
|
+
$kendo-badge-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
8523
|
+
$kendo-badge-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
8524
|
+
$kendo-badge-padding-y-lg: k-map-get( $spacing, 1 ) + k-map-get( $spacing, thin ) !default;
|
|
7775
8525
|
|
|
7776
8526
|
/// Font sizes of the badge.
|
|
7777
8527
|
/// @group badge
|
|
@@ -8023,10 +8773,10 @@ $kendo-button-border-radius: null !default;
|
|
|
8023
8773
|
|
|
8024
8774
|
/// Horizontal padding of the button.
|
|
8025
8775
|
/// @group button
|
|
8026
|
-
$kendo-button-padding-x: map-get( $spacing, 2 ) !default;
|
|
8776
|
+
$kendo-button-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
8027
8777
|
/// Vertical padding of the button.
|
|
8028
8778
|
/// @group button
|
|
8029
|
-
$kendo-button-padding-y: map-get( $spacing, 1 ) !default;
|
|
8779
|
+
$kendo-button-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
8030
8780
|
/// Font family of the button.
|
|
8031
8781
|
/// @group button
|
|
8032
8782
|
$kendo-button-font-family: $font-family !default;
|
|
@@ -8037,18 +8787,18 @@ $kendo-button-font-size: $font-size-md !default;
|
|
|
8037
8787
|
/// @group button
|
|
8038
8788
|
$kendo-button-line-height: $line-height-md !default;
|
|
8039
8789
|
|
|
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;
|
|
8790
|
+
$kendo-button-padding-x-sm: k-map-get( $spacing, 2 ) !default;
|
|
8791
|
+
$kendo-button-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
8042
8792
|
$kendo-button-font-size-sm: $font-size-md !default;
|
|
8043
8793
|
$kendo-button-line-height-sm: $line-height-md !default;
|
|
8044
8794
|
|
|
8045
|
-
$kendo-button-padding-x-md: map-get( $spacing, 2 ) !default;
|
|
8046
|
-
$kendo-button-padding-y-md: map-get( $spacing, 1 ) !default;
|
|
8795
|
+
$kendo-button-padding-x-md: k-map-get( $spacing, 2 ) !default;
|
|
8796
|
+
$kendo-button-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
8047
8797
|
$kendo-button-font-size-md: $font-size-md !default;
|
|
8048
8798
|
$kendo-button-line-height-md: $line-height-md !default;
|
|
8049
8799
|
|
|
8050
|
-
$kendo-button-padding-x-lg: map-get( $spacing, 3 ) !default;
|
|
8051
|
-
$kendo-button-padding-y-lg: map-get( $spacing, 2 ) !default;
|
|
8800
|
+
$kendo-button-padding-x-lg: k-map-get( $spacing, 3 ) !default;
|
|
8801
|
+
$kendo-button-padding-y-lg: k-map-get( $spacing, 2 ) !default;
|
|
8052
8802
|
$kendo-button-font-size-lg: $font-size-lg !default;
|
|
8053
8803
|
$kendo-button-line-height-lg: $line-height-lg !default;
|
|
8054
8804
|
|
|
@@ -8083,7 +8833,7 @@ $kendo-button-sizes: (
|
|
|
8083
8833
|
|
|
8084
8834
|
/// Theme colors map for the button.
|
|
8085
8835
|
/// @group button
|
|
8086
|
-
$kendo-button-theme-colors: map-merge(
|
|
8836
|
+
$kendo-button-theme-colors: k-map-merge(
|
|
8087
8837
|
$kendo-theme-colors,
|
|
8088
8838
|
( "base": $base-bg )
|
|
8089
8839
|
) !default;
|
|
@@ -8096,7 +8846,7 @@ $kendo-button-bg: $base-bg !default;
|
|
|
8096
8846
|
$kendo-button-text: $base-text !default;
|
|
8097
8847
|
/// The base border color of the button.
|
|
8098
8848
|
/// @group button
|
|
8099
|
-
$kendo-button-border: try-shade( $kendo-button-bg, 2 ) !default;
|
|
8849
|
+
$kendo-button-border: k-try-shade( $kendo-button-bg, 2 ) !default;
|
|
8100
8850
|
/// The base background gradient of the button.
|
|
8101
8851
|
/// @group button
|
|
8102
8852
|
$kendo-button-gradient: $base-gradient !default;
|
|
@@ -8106,13 +8856,13 @@ $kendo-button-shadow: null !default;
|
|
|
8106
8856
|
|
|
8107
8857
|
/// The base background of hovered button.
|
|
8108
8858
|
/// @group button
|
|
8109
|
-
$kendo-button-hover-bg: try-shade( $kendo-button-bg, 1 ) !default;
|
|
8859
|
+
$kendo-button-hover-bg: k-try-shade( $kendo-button-bg, 1 ) !default;
|
|
8110
8860
|
/// The base text color of hovered button.
|
|
8111
8861
|
/// @group button
|
|
8112
8862
|
$kendo-button-hover-text: null !default;
|
|
8113
8863
|
/// The base border color of hovered button.
|
|
8114
8864
|
/// @group button
|
|
8115
|
-
$kendo-button-hover-border: try-shade( $kendo-button-bg, 3 ) !default;
|
|
8865
|
+
$kendo-button-hover-border: k-try-shade( $kendo-button-bg, 3 ) !default;
|
|
8116
8866
|
/// The base background gradient of hovered button.
|
|
8117
8867
|
/// @group button
|
|
8118
8868
|
$kendo-button-hover-gradient: null !default;
|
|
@@ -8122,13 +8872,13 @@ $kendo-button-hover-shadow: null !default;
|
|
|
8122
8872
|
|
|
8123
8873
|
/// The base background color of active button.
|
|
8124
8874
|
/// @group button
|
|
8125
|
-
$kendo-button-active-bg: try-shade( $kendo-button-bg, 2 ) !default;
|
|
8875
|
+
$kendo-button-active-bg: k-try-shade( $kendo-button-bg, 2 ) !default;
|
|
8126
8876
|
/// The base text color of active button.
|
|
8127
8877
|
/// @group button
|
|
8128
8878
|
$kendo-button-active-text: null !default;
|
|
8129
8879
|
/// The base border color of active button.
|
|
8130
8880
|
/// @group button
|
|
8131
|
-
$kendo-button-active-border: try-shade( $kendo-button-bg, 4 ) !default;
|
|
8881
|
+
$kendo-button-active-border: k-try-shade( $kendo-button-bg, 4 ) !default;
|
|
8132
8882
|
/// The base background gradient of active button.
|
|
8133
8883
|
/// @group button
|
|
8134
8884
|
$kendo-button-active-gradient: null !default;
|
|
@@ -8186,7 +8936,7 @@ $kendo-button-disabled-shadow: null !default;
|
|
|
8186
8936
|
|
|
8187
8937
|
// Solid button
|
|
8188
8938
|
$kendo-solid-button-gradient: $base-gradient !default;
|
|
8189
|
-
$kendo-solid-button-shade-function: "try-shade" !default;
|
|
8939
|
+
$kendo-solid-button-shade-function: "k-try-shade" !default;
|
|
8190
8940
|
$kendo-solid-button-shade-text-amount: 0 !default;
|
|
8191
8941
|
$kendo-solid-button-shade-bg-amount: 0 !default;
|
|
8192
8942
|
$kendo-solid-button-shade-border-amount: 2 !default;
|
|
@@ -8869,10 +9619,10 @@ $kendo-input-border-radius: null !default;
|
|
|
8869
9619
|
|
|
8870
9620
|
/// Horizontal padding of input components.
|
|
8871
9621
|
/// @group input
|
|
8872
|
-
$kendo-input-padding-x: map-get( $spacing, 2 ) !default;
|
|
9622
|
+
$kendo-input-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
8873
9623
|
/// Vertical padding of input components.
|
|
8874
9624
|
/// @group input
|
|
8875
|
-
$kendo-input-padding-y: map-get( $spacing, 1 ) !default;
|
|
9625
|
+
$kendo-input-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
8876
9626
|
/// Font family of input components.
|
|
8877
9627
|
/// @group input
|
|
8878
9628
|
$kendo-input-font-family: $font-family !default;
|
|
@@ -8883,18 +9633,18 @@ $kendo-input-font-size: $font-size-md !default;
|
|
|
8883
9633
|
/// @group input
|
|
8884
9634
|
$kendo-input-line-height: $line-height-md !default;
|
|
8885
9635
|
|
|
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;
|
|
9636
|
+
$kendo-input-padding-x-sm: k-map-get( $spacing, 2 ) !default;
|
|
9637
|
+
$kendo-input-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
8888
9638
|
$kendo-input-font-size-sm: $font-size-md !default;
|
|
8889
9639
|
$kendo-input-line-height-sm: $line-height-md !default;
|
|
8890
9640
|
|
|
8891
|
-
$kendo-input-padding-x-md: map-get( $spacing, 2 ) !default;
|
|
8892
|
-
$kendo-input-padding-y-md: map-get( $spacing, 1 ) !default;
|
|
9641
|
+
$kendo-input-padding-x-md: k-map-get( $spacing, 2 ) !default;
|
|
9642
|
+
$kendo-input-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
8893
9643
|
$kendo-input-font-size-md: $font-size-md !default;
|
|
8894
9644
|
$kendo-input-line-height-md: $line-height-md !default;
|
|
8895
9645
|
|
|
8896
|
-
$kendo-input-padding-x-lg: map-get( $spacing, 3 ) !default;
|
|
8897
|
-
$kendo-input-padding-y-lg: map-get( $spacing, 2 ) !default;
|
|
9646
|
+
$kendo-input-padding-x-lg: k-map-get( $spacing, 3 ) !default;
|
|
9647
|
+
$kendo-input-padding-y-lg: k-map-get( $spacing, 2 ) !default;
|
|
8898
9648
|
$kendo-input-font-size-lg: $font-size-lg !default;
|
|
8899
9649
|
$kendo-input-line-height-lg: $line-height-lg !default;
|
|
8900
9650
|
|
|
@@ -8940,8 +9690,8 @@ $kendo-input-hover-shadow: null !default;
|
|
|
8940
9690
|
|
|
8941
9691
|
$kendo-input-focus-bg: null !default;
|
|
8942
9692
|
$kendo-input-focus-text: null !default;
|
|
8943
|
-
$kendo-input-focus-border: rgba(
|
|
8944
|
-
$kendo-input-focus-shadow: 0 2px 4px 0 rgba(
|
|
9693
|
+
$kendo-input-focus-border: rgba( black, .1 ) !default;
|
|
9694
|
+
$kendo-input-focus-shadow: 0 2px 4px 0 rgba( black, .03 ), 0 4px 5px 0 rgba( black, .04 ) !default;
|
|
8945
9695
|
|
|
8946
9696
|
$kendo-input-disabled-bg: null !default;
|
|
8947
9697
|
$kendo-input-disabled-text: null !default;
|
|
@@ -9004,7 +9754,7 @@ $kendo-picker-outline-text: $kendo-button-text !default;
|
|
|
9004
9754
|
$kendo-picker-outline-border: rgba( $kendo-picker-outline-text, .5) !default;
|
|
9005
9755
|
|
|
9006
9756
|
$kendo-picker-outline-hover-bg: $kendo-picker-outline-text !default;
|
|
9007
|
-
$kendo-picker-outline-hover-text: contrast-
|
|
9757
|
+
$kendo-picker-outline-hover-text: k-contrast-color( $kendo-picker-outline-hover-bg ) !default;
|
|
9008
9758
|
$kendo-picker-outline-hover-border: $kendo-picker-outline-hover-bg !default;
|
|
9009
9759
|
|
|
9010
9760
|
$kendo-picker-outline-focus-bg: null !default;
|
|
@@ -9044,7 +9794,7 @@ $kendo-input-clear-value-opacity: .5 !default;
|
|
|
9044
9794
|
$kendo-input-clear-value-hover-text: null !default;
|
|
9045
9795
|
$kendo-input-clear-value-hover-opacity: 1 !default;
|
|
9046
9796
|
|
|
9047
|
-
$kendo-input-values-margin-y: map-get( $spacing, thin ) !default;
|
|
9797
|
+
$kendo-input-values-margin-y: k-map-get( $spacing, thin ) !default;
|
|
9048
9798
|
$kendo-input-values-margin-x: $kendo-input-values-margin-y !default;
|
|
9049
9799
|
|
|
9050
9800
|
|
|
@@ -10234,10 +10984,10 @@ $floating-label-focus-text: null !default;
|
|
|
10234
10984
|
|
|
10235
10985
|
/// The horizontal padding of the container.
|
|
10236
10986
|
/// @group toolbar
|
|
10237
|
-
$toolbar-padding-x: map-get( $spacing, 2 ) !default;
|
|
10987
|
+
$toolbar-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
10238
10988
|
/// The vertical padding of the container.
|
|
10239
10989
|
/// @group toolbar
|
|
10240
|
-
$toolbar-padding-y: map-get( $spacing, 2 ) !default;
|
|
10990
|
+
$toolbar-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
10241
10991
|
$toolbar-border-width: 1px !default;
|
|
10242
10992
|
$toolbar-border-radius: null !default;
|
|
10243
10993
|
$toolbar-spacing: $toolbar-padding-x !default;
|
|
@@ -10258,6 +11008,8 @@ $toolbar-separator-border: inherit !default;
|
|
|
10258
11008
|
|
|
10259
11009
|
$toolbar-input-width: 10em !default;
|
|
10260
11010
|
|
|
11011
|
+
$toolbar-item-shadow: $kendo-button-focus-shadow !default;
|
|
11012
|
+
|
|
10261
11013
|
// #endregion
|
|
10262
11014
|
// #region @import "../menu/_variables.scss"; -> packages/classic/scss/menu/_variables.scss
|
|
10263
11015
|
// Menu
|
|
@@ -10295,7 +11047,7 @@ $menu-item-expanded-gradient: null !default;
|
|
|
10295
11047
|
|
|
10296
11048
|
$menu-item-focus-shadow: inset 0 0 3px 1px rgba( $menu-text, .25 ) !default;
|
|
10297
11049
|
|
|
10298
|
-
$menu-separator-spacing: map-get( $spacing, 1 ) !default;
|
|
11050
|
+
$menu-separator-spacing: k-map-get( $spacing, 1 ) !default;
|
|
10299
11051
|
|
|
10300
11052
|
$menu-scroll-button-bg: $component-bg !default;
|
|
10301
11053
|
$menu-scroll-button-text: $link-text !default;
|
|
@@ -10354,17 +11106,17 @@ $kendo-menu-popup-gradient: null !default;
|
|
|
10354
11106
|
|
|
10355
11107
|
/// Horizontal padding of the menu item in popup.
|
|
10356
11108
|
/// @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;
|
|
11109
|
+
$kendo-menu-popup-item-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
11110
|
+
$kendo-menu-popup-item-padding-x-sm: k-map-get( $spacing, 2 ) !default;
|
|
11111
|
+
$kendo-menu-popup-item-padding-x-md: k-map-get( $spacing, 2 ) !default;
|
|
11112
|
+
$kendo-menu-popup-item-padding-x-lg: k-map-get( $spacing, 2 ) !default;
|
|
10361
11113
|
|
|
10362
11114
|
/// Vertical padding of the menu item in popup.
|
|
10363
11115
|
/// @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;
|
|
11116
|
+
$kendo-menu-popup-item-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
11117
|
+
$kendo-menu-popup-item-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
11118
|
+
$kendo-menu-popup-item-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
11119
|
+
$kendo-menu-popup-item-padding-y-lg: k-map-get( $spacing, 1 ) + k-map-get( $spacing, thin ) !default;
|
|
10368
11120
|
|
|
10369
11121
|
/// The end padding of the menu item in popup.
|
|
10370
11122
|
/// @group menu
|
|
@@ -10503,7 +11255,7 @@ $grid-footer-border: $grid-header-border !default;
|
|
|
10503
11255
|
|
|
10504
11256
|
/// Background color of alternating rows in grid
|
|
10505
11257
|
/// @group grid
|
|
10506
|
-
$grid-alt-bg: try-shade( $grid-bg, .5 ) !default;
|
|
11258
|
+
$grid-alt-bg: k-try-shade( $grid-bg, .5 ) !default;
|
|
10507
11259
|
/// Text color of alternating rows in grid
|
|
10508
11260
|
/// @group grid
|
|
10509
11261
|
$grid-alt-text: null !default;
|
|
@@ -10513,7 +11265,7 @@ $grid-alt-border: null !default;
|
|
|
10513
11265
|
|
|
10514
11266
|
/// Background color of hovered rows in grid
|
|
10515
11267
|
/// @group grid
|
|
10516
|
-
$grid-hovered-bg: try-shade( $grid-bg, 1 ) !default;
|
|
11268
|
+
$grid-hovered-bg: k-try-shade( $grid-bg, 1 ) !default;
|
|
10517
11269
|
/// Text color of hovered rows in grid
|
|
10518
11270
|
/// @group grid
|
|
10519
11271
|
$grid-hovered-text: null !default;
|
|
@@ -10531,17 +11283,17 @@ $grid-selected-text: null !default;
|
|
|
10531
11283
|
/// @group grid
|
|
10532
11284
|
$grid-selected-border: null !default;
|
|
10533
11285
|
|
|
10534
|
-
$grid-selected-alt-bg: try-shade( $grid-selected-bg, .5 ) !default;
|
|
10535
|
-
$grid-selected-hovered-bg: try-shade( $grid-selected-bg, 1 ) !default;
|
|
11286
|
+
$grid-selected-alt-bg: k-try-shade( $grid-selected-bg, .5 ) !default;
|
|
11287
|
+
$grid-selected-hovered-bg: k-try-shade( $grid-selected-bg, 1 ) !default;
|
|
10536
11288
|
|
|
10537
|
-
$grid-grouping-row-bg: try-shade( $grid-bg, 1 ) !default;
|
|
11289
|
+
$grid-grouping-row-bg: k-try-shade( $grid-bg, 1 ) !default;
|
|
10538
11290
|
$grid-grouping-row-text: $grid-text !default;
|
|
10539
11291
|
|
|
10540
|
-
$grid-sorted-bg: rgba( contrast-
|
|
11292
|
+
$grid-sorted-bg: rgba( k-contrast-color( $grid-bg ), .02 ) !default;
|
|
10541
11293
|
$grid-sorting-indicator-text: $primary !default;
|
|
10542
11294
|
$grid-sorting-index-font-size: $font-size-sm !default;
|
|
10543
11295
|
$grid-sorting-index-height: $icon-size !default;
|
|
10544
|
-
$grid-sorting-index-spacing-y: ($icon-spacing
|
|
11296
|
+
$grid-sorting-index-spacing-y: k-math-div( $icon-spacing, 2 ) !default;
|
|
10545
11297
|
$grid-sorting-index-spacing-x: -$grid-sorting-index-spacing-y !default;
|
|
10546
11298
|
|
|
10547
11299
|
|
|
@@ -10550,7 +11302,7 @@ $grid-focused-shadow: $kendo-list-item-focus-shadow !default;
|
|
|
10550
11302
|
$grid-edit-cell-padding-x: $grid-cell-padding-x !default;
|
|
10551
11303
|
$grid-edit-cell-padding-y: 3px !default;
|
|
10552
11304
|
|
|
10553
|
-
$grid-command-cell-button-spacing: map-get( $spacing, 2 ) !default;
|
|
11305
|
+
$grid-command-cell-button-spacing: k-map-get( $spacing, 2 ) !default;
|
|
10554
11306
|
|
|
10555
11307
|
$grid-sticky-bg: $grid-bg !default;
|
|
10556
11308
|
$grid-sticky-text: $grid-text !default;
|
|
@@ -10575,7 +11327,7 @@ $grid-column-menu-width: 230px !default;
|
|
|
10575
11327
|
|
|
10576
11328
|
$grid-filter-menu-check-all-border-bottom-width: 1px !default;
|
|
10577
11329
|
|
|
10578
|
-
$grid-filter-menu-item-spacing-x: map-get( $spacing, 2 ) !default;
|
|
11330
|
+
$grid-filter-menu-item-spacing-x: k-map-get( $spacing, 2 ) !default;
|
|
10579
11331
|
$grid-filter-menu-item-spacing-y: $grid-filter-menu-item-spacing-x !default;
|
|
10580
11332
|
|
|
10581
11333
|
$grid-column-menu-popup-padding-x: null !default;
|
|
@@ -10646,20 +11398,20 @@ $kendo-table-sizes: (
|
|
|
10646
11398
|
sm: (
|
|
10647
11399
|
font-size: $font-size-md,
|
|
10648
11400
|
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 )
|
|
11401
|
+
cell-padding-x: k-map-get( $spacing, 2 ),
|
|
11402
|
+
cell-padding-y: k-map-get( $spacing, 2 ) + k-map-get( $spacing, thin )
|
|
10651
11403
|
),
|
|
10652
11404
|
md: (
|
|
10653
11405
|
font-size: $font-size-md,
|
|
10654
11406
|
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 )
|
|
11407
|
+
cell-padding-x: k-map-get( $spacing, 2 ),
|
|
11408
|
+
cell-padding-y: k-map-get( $spacing, 2 ) + k-map-get( $spacing, thin )
|
|
10657
11409
|
),
|
|
10658
11410
|
lg: (
|
|
10659
11411
|
font-size: $font-size-md,
|
|
10660
11412
|
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 )
|
|
11413
|
+
cell-padding-x: k-map-get( $spacing, 2 ),
|
|
11414
|
+
cell-padding-y: k-map-get( $spacing, 2 ) + k-map-get( $spacing, thin )
|
|
10663
11415
|
)
|
|
10664
11416
|
) !default;
|
|
10665
11417
|
|
|
@@ -11229,9 +11981,9 @@ $kendo-avatar-line-height: $line-height !default;
|
|
|
11229
11981
|
/// The sizes of the avatar.
|
|
11230
11982
|
/// @group avatar
|
|
11231
11983
|
$kendo-avatar-sizes: (
|
|
11232
|
-
sm: map-get( $spacing, 4 ),
|
|
11233
|
-
md: map-get( $spacing, 8 ),
|
|
11234
|
-
lg: map-get( $spacing, 16 )
|
|
11984
|
+
sm: k-map-get( $spacing, 4 ),
|
|
11985
|
+
md: k-map-get( $spacing, 8 ),
|
|
11986
|
+
lg: k-map-get( $spacing, 16 )
|
|
11235
11987
|
) !default;
|
|
11236
11988
|
|
|
11237
11989
|
/// Theme colors map of the avatar.
|
|
@@ -11380,21 +12132,21 @@ $kendo-avatar-theme-colors: $kendo-theme-colors !default;
|
|
|
11380
12132
|
$kendo-chip-border-width: 1px !default;
|
|
11381
12133
|
/// The spacing between the text and the icons of the chip.
|
|
11382
12134
|
/// @group chip
|
|
11383
|
-
$kendo-chip-spacing: map-get( $spacing, 1 ) !default;
|
|
12135
|
+
$kendo-chip-spacing: k-map-get( $spacing, 1 ) !default;
|
|
11384
12136
|
|
|
11385
12137
|
/// Horizontal padding of the chip.
|
|
11386
12138
|
/// @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;
|
|
12139
|
+
$kendo-chip-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
12140
|
+
$kendo-chip-padding-x-sm: k-map-get( $spacing, 1 ) !default;
|
|
12141
|
+
$kendo-chip-padding-x-md: k-map-get( $spacing, 1 ) !default;
|
|
12142
|
+
$kendo-chip-padding-x-lg: k-map-get( $spacing, 1 ) !default;
|
|
11391
12143
|
|
|
11392
12144
|
/// Vertical padding of the chip.
|
|
11393
12145
|
/// @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;
|
|
12146
|
+
$kendo-chip-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
12147
|
+
$kendo-chip-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
12148
|
+
$kendo-chip-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
12149
|
+
$kendo-chip-padding-y-lg: k-map-get( $spacing, 1 ) + k-map-get( $spacing, thin ) !default;
|
|
11398
12150
|
|
|
11399
12151
|
/// Font sizes of the chip.
|
|
11400
12152
|
/// @group chip
|
|
@@ -11441,42 +12193,42 @@ $kendo-chip-base-bg: $base-text !default;
|
|
|
11441
12193
|
/// @group chip
|
|
11442
12194
|
$kendo-chip-theme-colors: (
|
|
11443
12195
|
"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" )
|
|
12196
|
+
"error": k-map-get( $kendo-theme-colors, "error" ),
|
|
12197
|
+
"info": k-map-get( $kendo-theme-colors, "info" ),
|
|
12198
|
+
"warning": k-map-get( $kendo-theme-colors, "warning" ),
|
|
12199
|
+
"success": k-map-get( $kendo-theme-colors, "success" )
|
|
11448
12200
|
) !default;
|
|
11449
12201
|
|
|
11450
12202
|
/// The base background color of solid chip.
|
|
11451
12203
|
/// @group chip
|
|
11452
|
-
$kendo-chip-solid-bg: try-tint( $kendo-chip-base-bg, 92% ) !default;
|
|
12204
|
+
$kendo-chip-solid-bg: k-try-tint( $kendo-chip-base-bg, 92% ) !default;
|
|
11453
12205
|
/// The base text color of solid chip.
|
|
11454
12206
|
/// @group chip
|
|
11455
12207
|
$kendo-chip-solid-text: $kendo-chip-base-bg !default;
|
|
11456
12208
|
/// The base border color of solid chip.
|
|
11457
12209
|
/// @group chip
|
|
11458
|
-
$kendo-chip-solid-border: try-tint( $kendo-chip-base-bg, 70% ) !default;
|
|
12210
|
+
$kendo-chip-solid-border: k-try-tint( $kendo-chip-base-bg, 70% ) !default;
|
|
11459
12211
|
/// The base shadow of solid chip.
|
|
11460
12212
|
/// @group chip
|
|
11461
12213
|
$kendo-chip-solid-shadow: 0 0 0 2px rgba( $kendo-chip-base-bg, .16 ) !default;
|
|
11462
12214
|
|
|
11463
12215
|
/// The base background color of focused solid chip.
|
|
11464
12216
|
/// @group chip
|
|
11465
|
-
$kendo-chip-solid-focus-bg: try-tint( $kendo-chip-base-bg, 92% ) !default;
|
|
12217
|
+
$kendo-chip-solid-focus-bg: k-try-tint( $kendo-chip-base-bg, 92% ) !default;
|
|
11466
12218
|
/// The base text color of focused solid chip.
|
|
11467
12219
|
/// @group chip
|
|
11468
12220
|
$kendo-chip-solid-focus-text: null !default;
|
|
11469
12221
|
|
|
11470
12222
|
/// The base background color of hovered solid chip.
|
|
11471
12223
|
/// @group chip
|
|
11472
|
-
$kendo-chip-solid-hover-bg: try-tint( $kendo-chip-base-bg, 84% ) !default;
|
|
12224
|
+
$kendo-chip-solid-hover-bg: k-try-tint( $kendo-chip-base-bg, 84% ) !default;
|
|
11473
12225
|
/// The base text color of hovered solid chip.
|
|
11474
12226
|
/// @group chip
|
|
11475
12227
|
$kendo-chip-solid-hover-text: null !default;
|
|
11476
12228
|
|
|
11477
12229
|
/// The base background color of selected solid chip.
|
|
11478
12230
|
/// @group chip
|
|
11479
|
-
$kendo-chip-solid-selected-bg: try-tint( $kendo-chip-base-bg, 76% ) !default;
|
|
12231
|
+
$kendo-chip-solid-selected-bg: k-try-tint( $kendo-chip-base-bg, 76% ) !default;
|
|
11480
12232
|
/// The base text color of selected solid chip.
|
|
11481
12233
|
/// @group chip
|
|
11482
12234
|
$kendo-chip-solid-selected-text: null !default;
|
|
@@ -11499,7 +12251,7 @@ $kendo-chip-outline-shadow: 0 0 0 2px rgba( $kendo-chip-base-bg, .16 ) !default;
|
|
|
11499
12251
|
$kendo-chip-outline-hover-bg: $kendo-chip-base-bg !default;
|
|
11500
12252
|
/// The base text color of hovered outline chip.
|
|
11501
12253
|
/// @group chip
|
|
11502
|
-
$kendo-chip-outline-hover-text: contrast-
|
|
12254
|
+
$kendo-chip-outline-hover-text: k-contrast-color( $kendo-chip-base-bg ) !default;
|
|
11503
12255
|
|
|
11504
12256
|
/// The base background color of selected outline chip.
|
|
11505
12257
|
/// @group chip
|
|
@@ -11513,9 +12265,9 @@ $kendo-chip-outline-selected-text: $kendo-chip-outline-hover-text !default;
|
|
|
11513
12265
|
/// The sizes of the chip list.
|
|
11514
12266
|
/// @group chip
|
|
11515
12267
|
$kendo-chip-list-sizes: (
|
|
11516
|
-
sm: map-get( $spacing, 1 ),
|
|
11517
|
-
md: map-get( $spacing, 1 ),
|
|
11518
|
-
lg: map-get( $spacing, 1 )
|
|
12268
|
+
sm: k-map-get( $spacing, 1 ),
|
|
12269
|
+
md: k-map-get( $spacing, 1 ),
|
|
12270
|
+
lg: k-map-get( $spacing, 1 )
|
|
11519
12271
|
) !default;
|
|
11520
12272
|
|
|
11521
12273
|
// #endregion
|
|
@@ -11979,13 +12731,13 @@ $color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAA
|
|
|
11979
12731
|
// #region @import "_variables.scss"; -> packages/classic/scss/loader/_variables.scss
|
|
11980
12732
|
// Loader
|
|
11981
12733
|
$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;
|
|
12734
|
+
$loader-segment-size-sm: k-map-get( $spacing, 1 ) !default;
|
|
12735
|
+
$loader-segment-size-md: k-map-get( $spacing, 2 ) !default;
|
|
12736
|
+
$loader-segment-size-lg: k-map-get( $spacing, 4 ) !default;
|
|
11985
12737
|
|
|
11986
|
-
$loader-padding-sm: ( $loader-segment-size-sm
|
|
11987
|
-
$loader-padding-md: ( $loader-segment-size-md
|
|
11988
|
-
$loader-padding-lg: ( $loader-segment-size-lg
|
|
12738
|
+
$loader-padding-sm: k-math-div( $loader-segment-size-sm, 2 ) !default;
|
|
12739
|
+
$loader-padding-md: k-math-div( $loader-segment-size-md, 2 ) !default;
|
|
12740
|
+
$loader-padding-lg: k-math-div( $loader-segment-size-lg, 2 ) !default;
|
|
11989
12741
|
|
|
11990
12742
|
$loader-spinner-3-width-sm: ( $loader-segment-size-sm * 4 ) !default;
|
|
11991
12743
|
$loader-spinner-3-height-sm: ( $loader-spinner-3-width-sm * $equilateral-height ) !default;
|
|
@@ -12010,15 +12762,15 @@ $loader-container-panel-border-radius: $kendo-border-radius-md !default;
|
|
|
12010
12762
|
$loader-container-panel-bg: $white !default;
|
|
12011
12763
|
|
|
12012
12764
|
$loader-container-padding-sm: 15px !default;
|
|
12013
|
-
$loader-container-gap-sm: map-get( $spacing, 1 ) !default;
|
|
12765
|
+
$loader-container-gap-sm: k-map-get( $spacing, 1 ) !default;
|
|
12014
12766
|
$loader-container-font-size-sm: $font-size-xs !default;
|
|
12015
12767
|
|
|
12016
12768
|
$loader-container-padding-md: 20px !default;
|
|
12017
|
-
$loader-container-gap-md: map-get( $spacing, 2 ) !default;
|
|
12769
|
+
$loader-container-gap-md: k-map-get( $spacing, 2 ) !default;
|
|
12018
12770
|
$loader-container-font-size-md: $font-size-md !default;
|
|
12019
12771
|
|
|
12020
12772
|
$loader-container-padding-lg: 25px !default;
|
|
12021
|
-
$loader-container-gap-lg: map-get( $spacing, 3 ) !default;
|
|
12773
|
+
$loader-container-gap-lg: k-map-get( $spacing, 3 ) !default;
|
|
12022
12774
|
$loader-container-font-size-lg: $font-size-lg !default;
|
|
12023
12775
|
|
|
12024
12776
|
// #endregion
|
|
@@ -12703,24 +13455,24 @@ $tooltip-title-line-height: 1 !default;
|
|
|
12703
13455
|
|
|
12704
13456
|
$tooltip-callout-size: 6px !default;
|
|
12705
13457
|
|
|
12706
|
-
$tooltip-bg: rgba( contrast-
|
|
12707
|
-
$tooltip-text: contrast-
|
|
13458
|
+
$tooltip-bg: rgba( k-contrast-color( $body-bg ), .75 ) !default;
|
|
13459
|
+
$tooltip-text: k-contrast-color( $tooltip-bg ) !default;
|
|
12708
13460
|
$tooltip-border: $tooltip-bg !default;
|
|
12709
13461
|
|
|
12710
13462
|
$tooltip-primary-bg: $primary !default;
|
|
12711
13463
|
$tooltip-primary-text: contrast-wcag( $tooltip-primary-bg ) !default;
|
|
12712
13464
|
$tooltip-primary-border: $tooltip-primary-bg !default;
|
|
12713
13465
|
$tooltip-info-bg: $info !default;
|
|
12714
|
-
$tooltip-info-text: contrast-
|
|
13466
|
+
$tooltip-info-text: k-contrast-color( $tooltip-info-bg ) !default;
|
|
12715
13467
|
$tooltip-info-border: $tooltip-info-bg !default;
|
|
12716
13468
|
$tooltip-success-bg: $success !default;
|
|
12717
|
-
$tooltip-success-text: contrast-
|
|
13469
|
+
$tooltip-success-text: k-contrast-color( $tooltip-success-bg ) !default;
|
|
12718
13470
|
$tooltip-success-border: $tooltip-success-bg !default;
|
|
12719
13471
|
$tooltip-warning-bg: $warning !default;
|
|
12720
|
-
$tooltip-warning-text: contrast-
|
|
13472
|
+
$tooltip-warning-text: k-contrast-color( $tooltip-warning-bg ) !default;
|
|
12721
13473
|
$tooltip-warning-border: $tooltip-warning-bg !default;
|
|
12722
13474
|
$tooltip-error-bg: $error !default;
|
|
12723
|
-
$tooltip-error-text: contrast-
|
|
13475
|
+
$tooltip-error-text: k-contrast-color( $tooltip-error-bg ) !default;
|
|
12724
13476
|
$tooltip-error-border: $tooltip-error-bg !default;
|
|
12725
13477
|
|
|
12726
13478
|
// #endregion
|
|
@@ -13400,7 +14152,8 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13400
14152
|
}
|
|
13401
14153
|
|
|
13402
14154
|
// Template item
|
|
13403
|
-
.k-toolbar-item:focus
|
|
14155
|
+
.k-toolbar-item:focus,
|
|
14156
|
+
.k-toolbar-item.k-focus {
|
|
13404
14157
|
text-decoration: none;
|
|
13405
14158
|
outline: 0;
|
|
13406
14159
|
}
|
|
@@ -13572,7 +14325,7 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13572
14325
|
// Template item
|
|
13573
14326
|
.k-toolbar-item:focus,
|
|
13574
14327
|
.k-toolbar-item.k-focus {
|
|
13575
|
-
@include box-shadow( $
|
|
14328
|
+
@include box-shadow( $toolbar-item-shadow );
|
|
13576
14329
|
}
|
|
13577
14330
|
|
|
13578
14331
|
|
|
@@ -13665,11 +14418,11 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13665
14418
|
// Component
|
|
13666
14419
|
// #region @import "_variables.scss"; -> packages/classic/scss/action-buttons/_variables.scss
|
|
13667
14420
|
// 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;
|
|
14421
|
+
$actions-margin-top: k-map-get( $spacing, 4 ) !default;
|
|
14422
|
+
$actions-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
14423
|
+
$actions-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
13671
14424
|
$actions-border-width: 0px !default;
|
|
13672
|
-
$actions-button-spacing: map-get( $spacing, 2 ) !default;
|
|
14425
|
+
$actions-button-spacing: k-map-get( $spacing, 2 ) !default;
|
|
13673
14426
|
|
|
13674
14427
|
$actions-bg: null !default;
|
|
13675
14428
|
$actions-text: null !default;
|
|
@@ -13783,13 +14536,13 @@ $actions-gradient: null !default;
|
|
|
13783
14536
|
// #region @import "../window/_variables.scss"; -> packages/classic/scss/window/_variables.scss
|
|
13784
14537
|
// Window
|
|
13785
14538
|
$window-border-width: 1px !default;
|
|
13786
|
-
$window-border-radius: map-get( $spacing, 1 ) !default;
|
|
14539
|
+
$window-border-radius: k-map-get( $spacing, 1 ) !default;
|
|
13787
14540
|
$window-font-family: $font-family !default;
|
|
13788
14541
|
$window-font-size: $font-size !default;
|
|
13789
14542
|
$window-line-height: $line-height !default;
|
|
13790
14543
|
|
|
13791
|
-
$window-titlebar-padding-x: map-get( $spacing, 3 ) !default;
|
|
13792
|
-
$window-titlebar-padding-y: map-get( $spacing, 2 ) !default;
|
|
14544
|
+
$window-titlebar-padding-x: k-map-get( $spacing, 3 ) !default;
|
|
14545
|
+
$window-titlebar-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
13793
14546
|
$window-titlebar-border-width: 0 0 1px !default;
|
|
13794
14547
|
$window-titlebar-border-style: solid !default;
|
|
13795
14548
|
|
|
@@ -13801,8 +14554,8 @@ $window-actions-gap: null !default;
|
|
|
13801
14554
|
$window-action-opacity: null !default;
|
|
13802
14555
|
$window-action-hover-opacity: null !default;
|
|
13803
14556
|
|
|
13804
|
-
$window-inner-padding-x: map-get( $spacing, 3 ) !default;
|
|
13805
|
-
$window-inner-padding-y: map-get( $spacing, 3 ) !default;
|
|
14557
|
+
$window-inner-padding-x: k-map-get( $spacing, 3 ) !default;
|
|
14558
|
+
$window-inner-padding-y: k-map-get( $spacing, 3 ) !default;
|
|
13806
14559
|
|
|
13807
14560
|
$window-buttongroup-padding-x: $actions-padding-x !default;
|
|
13808
14561
|
$window-buttongroup-padding-y: $actions-padding-y !default;
|
|
@@ -13817,8 +14570,8 @@ $window-titlebar-text: $header-text !default;
|
|
|
13817
14570
|
$window-titlebar-border: $header-border !default;
|
|
13818
14571
|
$window-titlebar-gradient: $header-gradient !default;
|
|
13819
14572
|
|
|
13820
|
-
$window-shadow: 1px 1px 7px 1px rgba(
|
|
13821
|
-
$window-focused-shadow: 1px 1px 7px 1px rgba(
|
|
14573
|
+
$window-shadow: 1px 1px 7px 1px rgba( black, .12 ) !default;
|
|
14574
|
+
$window-focused-shadow: 1px 1px 7px 1px rgba( black, .25 ) !default;
|
|
13822
14575
|
|
|
13823
14576
|
$window-sizes: (
|
|
13824
14577
|
sm: 300px,
|
|
@@ -13892,7 +14645,7 @@ $fieldset-text: null !default;
|
|
|
13892
14645
|
$fieldset-border: null !default;
|
|
13893
14646
|
|
|
13894
14647
|
$fieldset-legend-bg: null !default;
|
|
13895
|
-
$fieldset-legend-text: try-shade( $body-text, 2 ) !default;
|
|
14648
|
+
$fieldset-legend-text: k-try-shade( $body-text, 2 ) !default;
|
|
13896
14649
|
$fieldset-legend-border: null !default;
|
|
13897
14650
|
|
|
13898
14651
|
// #endregion
|
|
@@ -15121,14 +15874,14 @@ $progressbar-font-family: $font-family !default;
|
|
|
15121
15874
|
$progressbar-font-size: $font-size-sm !default;
|
|
15122
15875
|
$progressbar-line-height: 1 !default;
|
|
15123
15876
|
|
|
15124
|
-
$progressbar-bg: try-shade( $component-bg, 1 ) !default;
|
|
15877
|
+
$progressbar-bg: k-try-shade( $component-bg, 1 ) !default;
|
|
15125
15878
|
$progressbar-text: $component-text !default;
|
|
15126
15879
|
$progressbar-border: $component-border !default;
|
|
15127
15880
|
$progressbar-gradient: null !default;
|
|
15128
15881
|
|
|
15129
15882
|
$progressbar-fill-bg: $primary !default;
|
|
15130
15883
|
$progressbar-fill-text: contrast-wcag( $progressbar-fill-bg ) !default;
|
|
15131
|
-
$progressbar-fill-border: try-shade( $progressbar-fill-bg ) !default;
|
|
15884
|
+
$progressbar-fill-border: k-try-shade( $progressbar-fill-bg ) !default;
|
|
15132
15885
|
$progressbar-fill-gradient: null !default;
|
|
15133
15886
|
|
|
15134
15887
|
$progressbar-indeterminate-bg: $progressbar-bg !default;
|
|
@@ -15526,19 +16279,19 @@ $kendo-radio-border-width: 1px !default;
|
|
|
15526
16279
|
// Radio button sizes
|
|
15527
16280
|
$kendo-radio-sizes: (
|
|
15528
16281
|
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
|
|
16282
|
+
size: k-map-get( $spacing, 3 ),
|
|
16283
|
+
glyph-size: ( k-map-get( $spacing, 3 ) - k-map-get( $spacing, thin ) ),
|
|
16284
|
+
ripple-size: k-map-get( $spacing, 3 ) * 3
|
|
15532
16285
|
),
|
|
15533
16286
|
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
|
|
16287
|
+
size: k-map-get( $spacing, 4 ),
|
|
16288
|
+
glyph-size: ( k-map-get( $spacing, 4 ) - k-map-get( $spacing, thin ) ),
|
|
16289
|
+
ripple-size: k-map-get( $spacing, 4 ) * 3
|
|
15537
16290
|
),
|
|
15538
16291
|
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
|
|
16292
|
+
size: k-map-get( $spacing, 5 ),
|
|
16293
|
+
glyph-size: ( k-map-get( $spacing, 5 ) - k-map-get( $spacing, thin ) ),
|
|
16294
|
+
ripple-size: k-map-get( $spacing, 5 ) * 3
|
|
15542
16295
|
)
|
|
15543
16296
|
) !default;
|
|
15544
16297
|
|
|
@@ -15641,14 +16394,14 @@ $kendo-radio-disabled-checked-image: null !default;
|
|
|
15641
16394
|
|
|
15642
16395
|
/// The horizontal margin of the radio button inside of a label.
|
|
15643
16396
|
/// @group radio
|
|
15644
|
-
$kendo-radio-label-margin-x: map-get( $spacing, 1 ) !default;
|
|
16397
|
+
$kendo-radio-label-margin-x: k-map-get( $spacing, 1 ) !default;
|
|
15645
16398
|
|
|
15646
16399
|
|
|
15647
16400
|
// Radio list
|
|
15648
16401
|
|
|
15649
16402
|
/// Spacing between items of horizontal radio button list.
|
|
15650
16403
|
/// @group radio
|
|
15651
|
-
$kendo-radio-list-spacing: map-get( $spacing, 4 ) !default;
|
|
16404
|
+
$kendo-radio-list-spacing: k-map-get( $spacing, 4 ) !default;
|
|
15652
16405
|
/// Horizontal padding of radio button list items.
|
|
15653
16406
|
/// @group radio
|
|
15654
16407
|
$kendo-radio-list-item-padding-x: 0px !default;
|
|
@@ -16024,17 +16777,17 @@ $slider-draghandle-active-size: null !default;
|
|
|
16024
16777
|
|
|
16025
16778
|
$slider-draghandle-bg: $primary !default;
|
|
16026
16779
|
$slider-draghandle-text: contrast-wcag( $primary ) !default;
|
|
16027
|
-
$slider-draghandle-border: try-shade( $primary, 2 ) !default;
|
|
16780
|
+
$slider-draghandle-border: k-try-shade( $primary, 2 ) !default;
|
|
16028
16781
|
$slider-draghandle-gradient: null !default;
|
|
16029
16782
|
|
|
16030
|
-
$slider-draghandle-hovered-bg: try-shade( $primary, 1 ) !default;
|
|
16783
|
+
$slider-draghandle-hovered-bg: k-try-shade( $primary, 1 ) !default;
|
|
16031
16784
|
$slider-draghandle-hovered-text: null !default;
|
|
16032
|
-
$slider-draghandle-hovered-border: try-shade( $slider-draghandle-hovered-bg, 2 ) !default;
|
|
16785
|
+
$slider-draghandle-hovered-border: k-try-shade( $slider-draghandle-hovered-bg, 2 ) !default;
|
|
16033
16786
|
$slider-draghandle-hovered-gradient: null !default;
|
|
16034
16787
|
|
|
16035
|
-
$slider-draghandle-pressed-bg: try-shade( $primary, 2 ) !default;
|
|
16788
|
+
$slider-draghandle-pressed-bg: k-try-shade( $primary, 2 ) !default;
|
|
16036
16789
|
$slider-draghandle-pressed-text: null !default;
|
|
16037
|
-
$slider-draghandle-pressed-border: try-shade( $slider-draghandle-pressed-bg, 2 ) !default;
|
|
16790
|
+
$slider-draghandle-pressed-border: k-try-shade( $slider-draghandle-pressed-bg, 2 ) !default;
|
|
16038
16791
|
$slider-draghandle-pressed-gradient: null !default;
|
|
16039
16792
|
|
|
16040
16793
|
$slider-draghandle-focused-shadow: 0 0 4px 0 rgba( $slider-draghandle-border, .75 ) !default;
|
|
@@ -16044,7 +16797,7 @@ $slider-transition-function: ease-out !default;
|
|
|
16044
16797
|
$slider-draghandle-transition-speed: .4s !default;
|
|
16045
16798
|
$slider-draghandle-transition-function: cubic-bezier(.25, .8, .25, 1) !default;
|
|
16046
16799
|
|
|
16047
|
-
$slider-track-bg: try-shade( $component-bg, 1 ) !default;
|
|
16800
|
+
$slider-track-bg: k-try-shade( $component-bg, 1 ) !default;
|
|
16048
16801
|
$slider-selection-bg: $primary !default;
|
|
16049
16802
|
$slider-disabled-opacity: null !default;
|
|
16050
16803
|
|
|
@@ -16633,8 +17386,8 @@ $calendar-bg: $component-bg !default;
|
|
|
16633
17386
|
$calendar-text: $component-text !default;
|
|
16634
17387
|
$calendar-border: $component-border !default;
|
|
16635
17388
|
|
|
16636
|
-
$calendar-header-padding-x: map-get( $spacing, 1 ) !default;
|
|
16637
|
-
$calendar-header-padding-y: map-get( $spacing, 1 ) !default;
|
|
17389
|
+
$calendar-header-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
17390
|
+
$calendar-header-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
16638
17391
|
$calendar-header-border-width: 1px !default;
|
|
16639
17392
|
|
|
16640
17393
|
$calendar-header-bg: $header-bg !default;
|
|
@@ -16643,15 +17396,15 @@ $calendar-header-border: $header-border !default;
|
|
|
16643
17396
|
$calendar-header-gradient: $header-gradient !default;
|
|
16644
17397
|
$calendar-header-shadow: null !default;
|
|
16645
17398
|
|
|
16646
|
-
$calendar-nav-gap: map-get( $spacing, 1 ) !default;
|
|
17399
|
+
$calendar-nav-gap: k-map-get( $spacing, 1 ) !default;
|
|
16647
17400
|
|
|
16648
17401
|
$calendar-today-nav-text: $link-text !default;
|
|
16649
17402
|
$calendar-today-nav-hover-text: $link-hover-text !default;
|
|
16650
17403
|
|
|
16651
|
-
$calendar-footer-padding-x: map-get( $spacing, 4 ) !default;
|
|
16652
|
-
$calendar-footer-padding-y: map-get( $spacing, 2 ) !default;
|
|
17404
|
+
$calendar-footer-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
17405
|
+
$calendar-footer-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
16653
17406
|
|
|
16654
|
-
$calendar-cell-padding-x: map-get( $spacing, 1 ) !default;
|
|
17407
|
+
$calendar-cell-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
16655
17408
|
$calendar-cell-padding-y: $calendar-cell-padding-x !default;
|
|
16656
17409
|
$calendar-cell-line-height: $calendar-line-height !default;
|
|
16657
17410
|
$calendar-cell-border-radius: $kendo-border-radius-md !default;
|
|
@@ -16666,8 +17419,8 @@ $calendar-header-cell-bg: null !default;
|
|
|
16666
17419
|
$calendar-header-cell-text: $subtle-text !default;
|
|
16667
17420
|
$calendar-header-cell-opacity: null !default;
|
|
16668
17421
|
|
|
16669
|
-
$calendar-caption-padding-x: map-get( $spacing, 2 ) !default;
|
|
16670
|
-
$calendar-caption-padding-y: map-get( $spacing, 1 ) !default;
|
|
17422
|
+
$calendar-caption-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
17423
|
+
$calendar-caption-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
16671
17424
|
$calendar-caption-height: $calendar-cell-size !default;
|
|
16672
17425
|
$calendar-caption-font-size: null !default;
|
|
16673
17426
|
$calendar-caption-line-height: null !default;
|
|
@@ -16675,7 +17428,7 @@ $calendar-caption-font-weight: bold !default;
|
|
|
16675
17428
|
|
|
16676
17429
|
$calendar-view-width: ($calendar-cell-size * 7) !default;
|
|
16677
17430
|
$calendar-view-height: ($calendar-cell-size * 7) !default;
|
|
16678
|
-
$calendar-view-gap: map-get( $spacing, 4 ) !default;
|
|
17431
|
+
$calendar-view-gap: k-map-get( $spacing, 4 ) !default;
|
|
16679
17432
|
|
|
16680
17433
|
$calendar-weekend-bg: null !default;
|
|
16681
17434
|
$calendar-weekend-text: null !default;
|
|
@@ -16709,7 +17462,7 @@ $calendar-cell-selected-hover-text: $selected-hover-text !default;
|
|
|
16709
17462
|
$calendar-cell-selected-hover-border: $selected-hover-border !default;
|
|
16710
17463
|
$calendar-cell-selected-hover-gradient: null !default;
|
|
16711
17464
|
|
|
16712
|
-
$calendar-cell-focused-shadow: inset 0 0 0 2px rgba(
|
|
17465
|
+
$calendar-cell-focused-shadow: inset 0 0 0 2px rgba( black, .08 ) !default;
|
|
16713
17466
|
$calendar-cell-selected-focus-shadow: $calendar-cell-focused-shadow !default;
|
|
16714
17467
|
|
|
16715
17468
|
|
|
@@ -16723,10 +17476,10 @@ $calendar-navigation-border: $calendar-header-border !default;
|
|
|
16723
17476
|
|
|
16724
17477
|
|
|
16725
17478
|
// Infinite calendar
|
|
16726
|
-
$infinite-calendar-header-padding-x: map-get( $spacing, 4 ) !default;
|
|
16727
|
-
$infinite-calendar-header-padding-y: map-get( $spacing, 2 ) !default;
|
|
17479
|
+
$infinite-calendar-header-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
17480
|
+
$infinite-calendar-header-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
16728
17481
|
|
|
16729
|
-
$infinite-calendar-view-padding-x: map-get( $spacing, 4 ) !default;
|
|
17482
|
+
$infinite-calendar-view-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
16730
17483
|
$infinite-calendar-view-padding-y: 0px !default;
|
|
16731
17484
|
$infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
16732
17485
|
|
|
@@ -16738,20 +17491,20 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
16738
17491
|
$kendo-calendar-sm-font-size: $font-size-md !default;
|
|
16739
17492
|
$kendo-calendar-sm-line-height: $line-height-md !default;
|
|
16740
17493
|
$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;
|
|
17494
|
+
$kendo-calendar-sm-cell-padding-x: k-map-get( $spacing, 1) - k-map-get( $spacing, thin ) !default;
|
|
17495
|
+
$kendo-calendar-sm-cell-padding-y: k-map-get( $spacing, 1) - k-map-get( $spacing, thin ) !default;
|
|
16743
17496
|
|
|
16744
17497
|
$kendo-calendar-md-font-size: $font-size-md !default;
|
|
16745
17498
|
$kendo-calendar-md-line-height: $line-height-md !default;
|
|
16746
17499
|
$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;
|
|
17500
|
+
$kendo-calendar-md-cell-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
17501
|
+
$kendo-calendar-md-cell-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
16749
17502
|
|
|
16750
17503
|
$kendo-calendar-lg-font-size: $font-size-lg !default;
|
|
16751
17504
|
$kendo-calendar-lg-line-height: $line-height-lg !default;
|
|
16752
17505
|
$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;
|
|
17506
|
+
$kendo-calendar-lg-cell-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
17507
|
+
$kendo-calendar-lg-cell-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
16755
17508
|
|
|
16756
17509
|
$kendo-calendar-sizes: (
|
|
16757
17510
|
sm: (
|
|
@@ -17594,8 +18347,8 @@ $time-selector-bg: $component-bg !default;
|
|
|
17594
18347
|
$time-selector-text: $component-text !default;
|
|
17595
18348
|
$time-selector-border: $component-border !default;
|
|
17596
18349
|
|
|
17597
|
-
$time-selector-header-padding-x: map-get( $spacing, 1 ) !default;
|
|
17598
|
-
$time-selector-header-padding-y: map-get( $spacing, 1 ) !default;
|
|
18350
|
+
$time-selector-header-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
18351
|
+
$time-selector-header-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
17599
18352
|
$time-selector-header-border-width: 0px !default;
|
|
17600
18353
|
|
|
17601
18354
|
$time-list-width: 4em !default;
|
|
@@ -17615,7 +18368,7 @@ $time-list-highlight-height: calc( #{$time-selector-font-size * $time-selector-l
|
|
|
17615
18368
|
$time-list-highlight-bg: $component-bg !default;
|
|
17616
18369
|
$time-list-highlight-border: $component-border !default;
|
|
17617
18370
|
|
|
17618
|
-
$time-list-focused-bg: rgba(
|
|
18371
|
+
$time-list-focused-bg: rgba( black, .04 ) !default;
|
|
17619
18372
|
|
|
17620
18373
|
|
|
17621
18374
|
// Time selector sizes
|
|
@@ -17718,6 +18471,7 @@ $kendo-time-selector-sizes: (
|
|
|
17718
18471
|
display: flex;
|
|
17719
18472
|
position: relative;
|
|
17720
18473
|
flex: 1 1 auto;
|
|
18474
|
+
overflow: hidden;
|
|
17721
18475
|
}
|
|
17722
18476
|
|
|
17723
18477
|
|
|
@@ -18072,7 +18826,7 @@ $kendo-time-selector-sizes: (
|
|
|
18072
18826
|
// Component
|
|
18073
18827
|
// #region @import "_variables.scss"; -> packages/classic/scss/captcha/_variables.scss
|
|
18074
18828
|
// Captcha
|
|
18075
|
-
$captcha-spacer: map-get( $spacing, 2 ) !default;
|
|
18829
|
+
$captcha-spacer: k-map-get( $spacing, 2 ) !default;
|
|
18076
18830
|
|
|
18077
18831
|
$captcha-width: 280px !default;
|
|
18078
18832
|
$captcha-font-family: $font-family !default;
|
|
@@ -18087,7 +18841,7 @@ $captcha-image-wrap-gap: $captcha-spacer !default;
|
|
|
18087
18841
|
|
|
18088
18842
|
$captcha-image-controls-gap: $captcha-spacer !default;
|
|
18089
18843
|
|
|
18090
|
-
$captcha-validation-message-margin-top: $captcha-spacer
|
|
18844
|
+
$captcha-validation-message-margin-top: k-math-div( $captcha-spacer, 2 ) !default;
|
|
18091
18845
|
$captcha-validation-message-font-size: $font-size-sm !default;
|
|
18092
18846
|
$captcha-validation-message-font-style: italic !default;
|
|
18093
18847
|
|
|
@@ -18202,7 +18956,7 @@ $colorpalette-font-family: $font-family !default;
|
|
|
18202
18956
|
$colorpalette-font-size: $font-size !default;
|
|
18203
18957
|
$colorpalette-line-height: 0 !default;
|
|
18204
18958
|
|
|
18205
|
-
$colorpalette-tile-width: map-get( $spacing, 6 ) !default;
|
|
18959
|
+
$colorpalette-tile-width: k-map-get( $spacing, 6 ) !default;
|
|
18206
18960
|
$colorpalette-tile-height: $colorpalette-tile-width !default;
|
|
18207
18961
|
$colorpalette-tile-focus-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .5 ) !default;
|
|
18208
18962
|
$colorpalette-tile-hover-shadow: 0 0 3px 1px rgba( black, .3 ), inset 0 0 0 1px rgba( white, .8 ) !default;
|
|
@@ -18393,7 +19147,7 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
18393
19147
|
// #endregion
|
|
18394
19148
|
// #region @import "_variables.scss"; -> packages/classic/scss/colorgradient/_variables.scss
|
|
18395
19149
|
// ColorGradient
|
|
18396
|
-
$colorgradient-spacer: map-get( $spacing, 3 ) !default;
|
|
19150
|
+
$colorgradient-spacer: k-map-get( $spacing, 3 ) !default;
|
|
18397
19151
|
|
|
18398
19152
|
$colorgradient-width: 272px !default;
|
|
18399
19153
|
$colorgradient-border-width: 1px !default;
|
|
@@ -18409,7 +19163,7 @@ $colorgradient-text: $component-text !default;
|
|
|
18409
19163
|
$colorgradient-border: $component-border !default;
|
|
18410
19164
|
|
|
18411
19165
|
$colorgradient-focus-border: null !default;
|
|
18412
|
-
$colorgradient-focus-shadow: 1px 1px 7px 1px rgba(
|
|
19166
|
+
$colorgradient-focus-shadow: 1px 1px 7px 1px rgba( black, .3 ) !default;
|
|
18413
19167
|
|
|
18414
19168
|
|
|
18415
19169
|
$colorgradient-canvas-border-radius: $kendo-border-radius-md !default;
|
|
@@ -18429,21 +19183,21 @@ $colorgradient-draghandle-border-width: 1px !default;
|
|
|
18429
19183
|
$colorgradient-draghandle-border-radius: 50% !default;
|
|
18430
19184
|
$colorgradient-draghandle-bg: transparent !default;
|
|
18431
19185
|
$colorgradient-draghandle-text: null !default;
|
|
18432
|
-
$colorgradient-draghandle-border: rgba(
|
|
18433
|
-
$colorgradient-draghandle-shadow: 0 1px 4px rgba(
|
|
19186
|
+
$colorgradient-draghandle-border: rgba( white, .8) !default;
|
|
19187
|
+
$colorgradient-draghandle-shadow: 0 1px 4px rgba( black, .5 ) !default;
|
|
18434
19188
|
$colorgradient-draghandle-focus-shadow: 0 1px 4px black !default;
|
|
18435
19189
|
$colorgradient-draghandle-hover-shadow: $colorgradient-draghandle-focus-shadow !default;
|
|
18436
19190
|
|
|
18437
|
-
$colorgradient-canvas-draghandle-margin-y: -( $colorgradient-draghandle-height
|
|
18438
|
-
$colorgradient-canvas-draghandle-margin-x: -( $colorgradient-draghandle-width
|
|
19191
|
+
$colorgradient-canvas-draghandle-margin-y: - k-math-div( $colorgradient-draghandle-height, 2 ) !default;
|
|
19192
|
+
$colorgradient-canvas-draghandle-margin-x: - k-math-div( $colorgradient-draghandle-width, 2 ) !default;
|
|
18439
19193
|
|
|
18440
19194
|
$colorgradient-input-width: 46px !default;
|
|
18441
|
-
$colorgradient-input-gap: ( $colorgradient-spacer
|
|
18442
|
-
$colorgradient-input-label-gap: ( $colorgradient-spacer
|
|
19195
|
+
$colorgradient-input-gap: k-math-div( $colorgradient-spacer, 1.5 ) !default;
|
|
19196
|
+
$colorgradient-input-label-gap: k-math-div( $colorgradient-spacer, 3 ) !default;
|
|
18443
19197
|
$colorgradient-input-label-text: $subtle-text !default;
|
|
18444
19198
|
|
|
18445
19199
|
$colorgradient-contrast-ratio-font-weight: $font-weight-bold !default;
|
|
18446
|
-
$colorgradient-contrast-spacer: ( $colorgradient-spacer
|
|
19200
|
+
$colorgradient-contrast-spacer: k-math-div( $colorgradient-spacer, 1.5 ) !default;
|
|
18447
19201
|
|
|
18448
19202
|
// #endregion
|
|
18449
19203
|
// #region @import "_layout.scss"; -> packages/classic/scss/colorgradient/_layout.scss
|
|
@@ -18767,7 +19521,7 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 1.5 ) !default;
|
|
|
18767
19521
|
// Component
|
|
18768
19522
|
// #region @import "_variables.scss"; -> packages/classic/scss/coloreditor/_variables.scss
|
|
18769
19523
|
// Coloreditor/FlatColorPicker
|
|
18770
|
-
$coloreditor-spacer: map-get( $spacing, 3 ) !default;
|
|
19524
|
+
$coloreditor-spacer: k-map-get( $spacing, 3 ) !default;
|
|
18771
19525
|
|
|
18772
19526
|
$coloreditor-min-width: 272px !default;
|
|
18773
19527
|
$coloreditor-border-width: 1px !default;
|
|
@@ -18780,13 +19534,13 @@ $coloreditor-text: $component-text !default;
|
|
|
18780
19534
|
$coloreditor-border: $component-border !default;
|
|
18781
19535
|
|
|
18782
19536
|
$coloreditor-focus-border: null !default;
|
|
18783
|
-
$coloreditor-focus-shadow: 1px 1px 7px 1px rgba(
|
|
19537
|
+
$coloreditor-focus-shadow: 1px 1px 7px 1px rgba( black, .3 ) !default;
|
|
18784
19538
|
|
|
18785
19539
|
$coloreditor-header-padding-y: $coloreditor-spacer !default;
|
|
18786
19540
|
$coloreditor-header-padding-x: $coloreditor-header-padding-y !default;
|
|
18787
|
-
$coloreditor-header-actions-gap: ( $coloreditor-spacer
|
|
19541
|
+
$coloreditor-header-actions-gap: k-math-div( $coloreditor-spacer, 1.5 ) !default;
|
|
18788
19542
|
|
|
18789
|
-
$coloreditor-preview-gap: map-get( $spacing, 1 ) !default;
|
|
19543
|
+
$coloreditor-preview-gap: k-map-get( $spacing, 1 ) !default;
|
|
18790
19544
|
$coloreditor-color-preview-width: 32px !default;
|
|
18791
19545
|
$coloreditor-color-preview-height: 12px !default;
|
|
18792
19546
|
|
|
@@ -19616,16 +20370,16 @@ $kendo-treeview-indent: 16px !default;
|
|
|
19616
20370
|
|
|
19617
20371
|
/// Horizontal padding of treeview items.
|
|
19618
20372
|
/// @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;
|
|
20373
|
+
$kendo-treeview-item-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
20374
|
+
$kendo-treeview-item-padding-x-sm: k-map-get( $spacing, 2 ) !default;
|
|
20375
|
+
$kendo-treeview-item-padding-x-md: k-map-get( $spacing, 2 ) !default;
|
|
20376
|
+
$kendo-treeview-item-padding-x-lg: k-map-get( $spacing, 3 ) !default;
|
|
19623
20377
|
/// Vertical padding of treeview items.
|
|
19624
20378
|
/// @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;
|
|
20379
|
+
$kendo-treeview-item-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
20380
|
+
$kendo-treeview-item-padding-y-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
20381
|
+
$kendo-treeview-item-padding-y-md: k-map-get( $spacing, 1 ) !default;
|
|
20382
|
+
$kendo-treeview-item-padding-y-lg: k-map-get( $spacing, 2 ) !default;
|
|
19629
20383
|
/// Border width of treeview items.
|
|
19630
20384
|
/// @group treeview
|
|
19631
20385
|
$kendo-treeview-item-border-width: 0px !default;
|
|
@@ -20017,8 +20771,8 @@ $kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !defaul
|
|
|
20017
20771
|
// Component
|
|
20018
20772
|
// #region @import "_variables.scss"; -> packages/classic/scss/dropdowntree/_variables.scss
|
|
20019
20773
|
// Dropdowntree
|
|
20020
|
-
$dropdowntree-popup-padding-x: map-get( $spacing, 2 ) !default;
|
|
20021
|
-
$dropdowntree-popup-padding-y: map-get( $spacing, 2 ) !default;
|
|
20774
|
+
$dropdowntree-popup-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
20775
|
+
$dropdowntree-popup-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
20022
20776
|
|
|
20023
20777
|
// #endregion
|
|
20024
20778
|
// #region @import "_layout.scss"; -> packages/classic/scss/dropdowntree/_layout.scss
|
|
@@ -20156,8 +20910,8 @@ $rating-icon-selected-text: $selected-bg !default;
|
|
|
20156
20910
|
$rating-icon-hover-text: $selected-bg !default;
|
|
20157
20911
|
$rating-icon-focused-text: $selected-bg !default;
|
|
20158
20912
|
|
|
20159
|
-
$rating-icon-focused-shadow: 0 2px 4px rgba(
|
|
20160
|
-
$rating-icon-focused-selected-shadow: 0 2px 4px rgba(
|
|
20913
|
+
$rating-icon-focused-shadow: 0 2px 4px rgba( black, .1 ) !default;
|
|
20914
|
+
$rating-icon-focused-selected-shadow: 0 2px 4px rgba( black, .1) !default;
|
|
20161
20915
|
|
|
20162
20916
|
// #endregion
|
|
20163
20917
|
// #region @import "_layout.scss"; -> packages/classic/scss/rating/_layout.scss
|
|
@@ -20435,7 +21189,7 @@ $kendo-switch-off-track-focus-border: null !default;
|
|
|
20435
21189
|
$kendo-switch-off-track-focus-gradient: null !default;
|
|
20436
21190
|
/// The ring around the track when the focused switch is not checked.
|
|
20437
21191
|
/// @group switch
|
|
20438
|
-
$kendo-switch-off-track-focus-ring: 0 0 3px 1px rgba( if($dark-theme, $white, $black), .25 ) !default;
|
|
21192
|
+
$kendo-switch-off-track-focus-ring: 0 0 3px 1px rgba( if( $dark-theme, $white, $black ), .25 ) !default;
|
|
20439
21193
|
|
|
20440
21194
|
/// The background of the track when the disabled switch is not checked.
|
|
20441
21195
|
/// @group switch
|
|
@@ -20452,7 +21206,7 @@ $kendo-switch-off-track-disabled-gradient: null !default;
|
|
|
20452
21206
|
|
|
20453
21207
|
/// The background of the thumb when the switch is not checked.
|
|
20454
21208
|
/// @group switch
|
|
20455
|
-
$kendo-switch-off-thumb-bg: try-shade( $kendo-switch-off-track-bg ) !default;
|
|
21209
|
+
$kendo-switch-off-thumb-bg: k-try-shade( $kendo-switch-off-track-bg ) !default;
|
|
20456
21210
|
/// The text color of the thumb when the switch is not checked.
|
|
20457
21211
|
/// @group switch
|
|
20458
21212
|
$kendo-switch-off-thumb-text: null !default;
|
|
@@ -20465,7 +21219,7 @@ $kendo-switch-off-thumb-gradient: $base-gradient !default;
|
|
|
20465
21219
|
|
|
20466
21220
|
/// The background of the thumb when the hovered switch is not checked.
|
|
20467
21221
|
/// @group switch
|
|
20468
|
-
$kendo-switch-off-thumb-hover-bg: try-shade( $kendo-switch-off-thumb-bg ) !default;
|
|
21222
|
+
$kendo-switch-off-thumb-hover-bg: k-try-shade( $kendo-switch-off-thumb-bg ) !default;
|
|
20469
21223
|
/// The text color of the thumb when the hovered switch is not checked.
|
|
20470
21224
|
/// @group switch
|
|
20471
21225
|
$kendo-switch-off-thumb-hover-text: null !default;
|
|
@@ -20517,7 +21271,7 @@ $kendo-switch-on-track-focus-border: null !default;
|
|
|
20517
21271
|
$kendo-switch-on-track-focus-gradient: null !default;
|
|
20518
21272
|
/// The ring around the track wen the focused switch is checked.
|
|
20519
21273
|
/// @group switch
|
|
20520
|
-
$kendo-switch-on-track-focus-ring: 0 0 3px 1px rgba( if($dark-theme, $white, $black), .25 ) !default;
|
|
21274
|
+
$kendo-switch-on-track-focus-ring: 0 0 3px 1px rgba( if( $dark-theme, $white, $black ), .25 ) !default;
|
|
20521
21275
|
|
|
20522
21276
|
/// The background of the track when the disabled switch is checked.
|
|
20523
21277
|
/// @group switch
|
|
@@ -20540,20 +21294,20 @@ $kendo-switch-on-thumb-bg: $primary !default;
|
|
|
20540
21294
|
$kendo-switch-on-thumb-text: null !default;
|
|
20541
21295
|
/// The border color of the thumb when the switch is checked.
|
|
20542
21296
|
/// @group switch
|
|
20543
|
-
$kendo-switch-on-thumb-border: try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
21297
|
+
$kendo-switch-on-thumb-border: k-try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
20544
21298
|
/// The background gradient of the thumb when the switch is checked.
|
|
20545
21299
|
/// @group switch
|
|
20546
21300
|
$kendo-switch-on-thumb-gradient: $base-gradient !default;
|
|
20547
21301
|
|
|
20548
21302
|
/// The background of the thumb when the hovered switch is checked.
|
|
20549
21303
|
/// @group switch
|
|
20550
|
-
$kendo-switch-on-thumb-hover-bg: try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
21304
|
+
$kendo-switch-on-thumb-hover-bg: k-try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
20551
21305
|
/// The text color of the thumb when the hovered switch is checked.
|
|
20552
21306
|
/// @group switch
|
|
20553
21307
|
$kendo-switch-on-thumb-hover-text: null !default;
|
|
20554
21308
|
/// The border color of the thumb when the hovered switch is checked.
|
|
20555
21309
|
/// @group switch
|
|
20556
|
-
$kendo-switch-on-thumb-hover-border: try-shade( $kendo-switch-on-thumb-hover-bg ) !default;
|
|
21310
|
+
$kendo-switch-on-thumb-hover-border: k-try-shade( $kendo-switch-on-thumb-hover-bg ) !default;
|
|
20557
21311
|
/// The background gradient of the thumb when the hovered switch is checked.
|
|
20558
21312
|
/// @group switch
|
|
20559
21313
|
$kendo-switch-on-thumb-hover-gradient: null !default;
|
|
@@ -20920,8 +21674,8 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
20920
21674
|
// Component
|
|
20921
21675
|
// #region @import "_variables.scss"; -> packages/classic/scss/dropzone/_variables.scss
|
|
20922
21676
|
// Dropzone
|
|
20923
|
-
$dropzone-padding-x: map-get( $spacing, 2 ) !default;
|
|
20924
|
-
$dropzone-padding-y: map-get( $spacing, 2 ) !default;
|
|
21677
|
+
$dropzone-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
21678
|
+
$dropzone-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
20925
21679
|
$dropzone-border-width: 1px !default;
|
|
20926
21680
|
$dropzone-min-height: 220px !default;
|
|
20927
21681
|
|
|
@@ -20934,12 +21688,12 @@ $dropzone-text: $base-text !default;
|
|
|
20934
21688
|
$dropzone-border: $base-border !default;
|
|
20935
21689
|
|
|
20936
21690
|
$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;
|
|
21691
|
+
$dropzone-icon-spacing: k-map-get( $spacing, 6 ) !default;
|
|
21692
|
+
$dropzone-icon-text: k-try-tint( $dropzone-text, 4 ) !default;
|
|
20939
21693
|
$dropzone-icon-hover-text: $primary !default;
|
|
20940
21694
|
|
|
20941
21695
|
$dropzone-hint-font-size: null !default;
|
|
20942
|
-
$dropzone-hint-spacing: map-get( $spacing, 2 ) !default;
|
|
21696
|
+
$dropzone-hint-spacing: k-map-get( $spacing, 2 ) !default;
|
|
20943
21697
|
$dropzone-hint-text: null !default;
|
|
20944
21698
|
|
|
20945
21699
|
$dropzone-note-font-size: $font-size-sm !default;
|
|
@@ -21056,8 +21810,8 @@ $upload-bg: $component-bg !default;
|
|
|
21056
21810
|
$upload-text: $component-text !default;
|
|
21057
21811
|
$upload-border: $component-border !default;
|
|
21058
21812
|
|
|
21059
|
-
$upload-dropzone-padding-x: map-get( $spacing, 2 ) !default;
|
|
21060
|
-
$upload-dropzone-padding-y: map-get( $spacing, 2 ) !default;
|
|
21813
|
+
$upload-dropzone-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
21814
|
+
$upload-dropzone-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
21061
21815
|
$upload-dropzone-bg: $header-bg !default;
|
|
21062
21816
|
$upload-dropzone-text: $header-text !default;
|
|
21063
21817
|
$upload-dropzone-border: $upload-border !default;
|
|
@@ -21066,8 +21820,8 @@ $upload-dropzone-hover-bg: $hovered-bg !default;
|
|
|
21066
21820
|
$upload-status-text: $subtle-text !default;
|
|
21067
21821
|
$upload-status-text-opacity: null !default;
|
|
21068
21822
|
|
|
21069
|
-
$upload-item-padding-x: map-get( $spacing, 2 ) !default;
|
|
21070
|
-
$upload-item-padding-y: map-get( $spacing, 2 ) !default;
|
|
21823
|
+
$upload-item-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
21824
|
+
$upload-item-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
21071
21825
|
|
|
21072
21826
|
$upload-multiple-items-spacing: 12px !default;
|
|
21073
21827
|
|
|
@@ -21092,7 +21846,7 @@ $upload-error-bg: $error !default;
|
|
|
21092
21846
|
$upload-error-text: $error !default;
|
|
21093
21847
|
$upload-error-border: $error !default;
|
|
21094
21848
|
|
|
21095
|
-
$upload-focused-shadow: 0 0 0 2px rgba(
|
|
21849
|
+
$upload-focused-shadow: 0 0 0 2px rgba( black, .13 ) !default;
|
|
21096
21850
|
|
|
21097
21851
|
// #endregion
|
|
21098
21852
|
// #region @import "_layout.scss"; -> packages/classic/scss/upload/_layout.scss
|
|
@@ -21703,8 +22457,8 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
21703
22457
|
// Appbar
|
|
21704
22458
|
$appbar-margin-y: null !default;
|
|
21705
22459
|
$appbar-margin-x: null !default;
|
|
21706
|
-
$appbar-padding-y: map-get( $spacing, 2 ) !default;
|
|
21707
|
-
$appbar-padding-x: map-get( $spacing, 2 ) !default;
|
|
22460
|
+
$appbar-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
22461
|
+
$appbar-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
21708
22462
|
$appbar-border-width: 0px !default;
|
|
21709
22463
|
|
|
21710
22464
|
$appbar-zindex: 1000 !default;
|
|
@@ -21712,16 +22466,16 @@ $appbar-zindex: 1000 !default;
|
|
|
21712
22466
|
$appbar-font-size: $font-size !default;
|
|
21713
22467
|
$appbar-line-height: $line-height !default;
|
|
21714
22468
|
$appbar-font-family: $font-family !default;
|
|
21715
|
-
$appbar-gap: map-get( $spacing, 2 ) !default;
|
|
22469
|
+
$appbar-gap: k-map-get( $spacing, 2 ) !default;
|
|
21716
22470
|
|
|
21717
22471
|
$appbar-light-bg: $light !default;
|
|
21718
|
-
$appbar-light-text: contrast-
|
|
22472
|
+
$appbar-light-text: k-contrast-color( $light ) !default;
|
|
21719
22473
|
|
|
21720
22474
|
$appbar-dark-bg: $dark !default;
|
|
21721
|
-
$appbar-dark-text: contrast-
|
|
22475
|
+
$appbar-dark-text: k-contrast-color( $dark ) !default;
|
|
21722
22476
|
|
|
21723
|
-
$appbar-box-shadow: 0px 1px 1px rgba(
|
|
21724
|
-
$appbar-bottom-box-shadow: 0px -1px 1px rgba(
|
|
22477
|
+
$appbar-box-shadow: 0px 1px 1px rgba( black, .16 ) !default;
|
|
22478
|
+
$appbar-bottom-box-shadow: 0px -1px 1px rgba( black, .16 ) !default;
|
|
21725
22479
|
|
|
21726
22480
|
// #endregion
|
|
21727
22481
|
// #region @import "_layout.scss"; -> packages/classic/scss/appbar/_layout.scss
|
|
@@ -21922,15 +22676,15 @@ $kendo-fab-line-height: $line-height !default;
|
|
|
21922
22676
|
|
|
21923
22677
|
/// Horizontal padding of the FAB.
|
|
21924
22678
|
/// @group floating-action-button
|
|
21925
|
-
$kendo-fab-padding-x: map-get( $spacing, 4 ) !default;
|
|
21926
|
-
$kendo-fab-padding-x-sm: ( $kendo-fab-padding-x
|
|
22679
|
+
$kendo-fab-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
22680
|
+
$kendo-fab-padding-x-sm: k-math-div( $kendo-fab-padding-x, 2 ) !default;
|
|
21927
22681
|
$kendo-fab-padding-x-md: $kendo-fab-padding-x !default;
|
|
21928
22682
|
$kendo-fab-padding-x-lg: ( $kendo-fab-padding-x * 1.5 ) !default;
|
|
21929
22683
|
|
|
21930
22684
|
/// Vertical padding of the FAB.
|
|
21931
22685
|
/// @group floating-action-button
|
|
21932
22686
|
$kendo-fab-padding-y: $kendo-fab-padding-x !default;
|
|
21933
|
-
$kendo-fab-padding-y-sm: ( $kendo-fab-padding-y
|
|
22687
|
+
$kendo-fab-padding-y-sm: k-math-div( $kendo-fab-padding-y, 2 ) !default;
|
|
21934
22688
|
$kendo-fab-padding-y-md: $kendo-fab-padding-y !default;
|
|
21935
22689
|
$kendo-fab-padding-y-lg: ( $kendo-fab-padding-y * 1.5 ) !default;
|
|
21936
22690
|
|
|
@@ -21942,18 +22696,18 @@ $kendo-fab-icon-width: 20px !default;
|
|
|
21942
22696
|
$kendo-fab-icon-height: $kendo-fab-icon-width !default;
|
|
21943
22697
|
/// FAB icon spacing.
|
|
21944
22698
|
/// @group floating-action-button
|
|
21945
|
-
$kendo-fab-icon-spacing: map-get( $spacing, 1 )
|
|
22699
|
+
$kendo-fab-icon-spacing: k-math-div( k-map-get( $spacing, 1 ), 2 ) !default;
|
|
21946
22700
|
|
|
21947
22701
|
/// FAB items horizontal padding.
|
|
21948
22702
|
/// @group floating-action-button
|
|
21949
22703
|
$kendo-fab-items-padding-x: 0px !default;
|
|
21950
22704
|
/// FAB items vertical padding.
|
|
21951
22705
|
/// @group floating-action-button
|
|
21952
|
-
$kendo-fab-items-padding-y: map-get( $spacing, 4 ) !default;
|
|
22706
|
+
$kendo-fab-items-padding-y: k-map-get( $spacing, 4 ) !default;
|
|
21953
22707
|
|
|
21954
22708
|
/// FAB item text horizontal padding.
|
|
21955
22709
|
/// @group floating-action-button
|
|
21956
|
-
$kendo-fab-item-text-padding-x: map-get( $spacing, 1 ) !default;
|
|
22710
|
+
$kendo-fab-item-text-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
21957
22711
|
/// FAB item text vertical padding.
|
|
21958
22712
|
/// @group floating-action-button
|
|
21959
22713
|
$kendo-fab-item-text-padding-y: $kendo-fab-item-text-padding-x !default;
|
|
@@ -21972,7 +22726,7 @@ $kendo-fab-item-text-line-height: 1.2 !default;
|
|
|
21972
22726
|
|
|
21973
22727
|
/// FAB item icon horizontal padding.
|
|
21974
22728
|
/// @group floating-action-button
|
|
21975
|
-
$kendo-fab-item-icon-padding-x: map-get( $spacing, 2 ) !default;
|
|
22729
|
+
$kendo-fab-item-icon-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
21976
22730
|
/// FAB item icon vertical padding.
|
|
21977
22731
|
/// @group floating-action-button
|
|
21978
22732
|
$kendo-fab-item-icon-padding-y: $kendo-fab-item-icon-padding-x !default;
|
|
@@ -21995,10 +22749,10 @@ $kendo-fab-theme-colors: $kendo-theme-colors !default;
|
|
|
21995
22749
|
|
|
21996
22750
|
/// The base shadow of the FAB.
|
|
21997
22751
|
/// @group floating-action-button
|
|
21998
|
-
$kendo-fab-shadow: 0 6px 10px rgba(
|
|
22752
|
+
$kendo-fab-shadow: 0 6px 10px rgba( black, .14 ), 0 1px 18px rgba( black, .12 ), 0 3px 5px rgba( black, .2 ) !default;
|
|
21999
22753
|
/// The disabled shadow of the FAB.
|
|
22000
22754
|
/// @group floating-action-button
|
|
22001
|
-
$kendo-fab-disabled-shadow: 0 6px 10px try-tint( rgba(
|
|
22755
|
+
$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
22756
|
/// The active shadow of the FAB.
|
|
22003
22757
|
/// @group floating-action-button
|
|
22004
22758
|
$kendo-fab-active-shadow: null !default;
|
|
@@ -22370,7 +23124,8 @@ $actionsheet-padding-x: null !default;
|
|
|
22370
23124
|
$actionsheet-padding-y: null !default;
|
|
22371
23125
|
$actionsheet-width: 360px !default;
|
|
22372
23126
|
$actionsheet-max-width: 100% !default;
|
|
22373
|
-
$actionsheet-
|
|
23127
|
+
$actionsheet-height: 60vh !default;
|
|
23128
|
+
$actionsheet-max-height: 60vh !default;
|
|
22374
23129
|
|
|
22375
23130
|
$actionsheet-border-width: 0px !default;
|
|
22376
23131
|
$actionsheet-border-radius: 0px !default;
|
|
@@ -22382,28 +23137,33 @@ $actionsheet-line-height: $line-height !default;
|
|
|
22382
23137
|
$actionsheet-bg: $component-bg !default;
|
|
22383
23138
|
$actionsheet-text: $component-text !default;
|
|
22384
23139
|
$actionsheet-border: $component-border !default;
|
|
22385
|
-
$actionsheet-shadow: 0 8px 10px -5px rgba(
|
|
23140
|
+
$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
23141
|
|
|
22387
23142
|
|
|
22388
23143
|
// Actionsheet header
|
|
22389
|
-
$actionsheet-
|
|
22390
|
-
$actionsheet-
|
|
22391
|
-
$actionsheet-
|
|
22392
|
-
$actionsheet-
|
|
22393
|
-
$actionsheet-
|
|
22394
|
-
$actionsheet-
|
|
23144
|
+
$actionsheet-titlebar-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
23145
|
+
$actionsheet-titlebar-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
23146
|
+
$actionsheet-titlebar-border-width: null !default;
|
|
23147
|
+
$actionsheet-titlebar-font-size: null !default;
|
|
23148
|
+
$actionsheet-titlebar-font-family: null !default;
|
|
23149
|
+
$actionsheet-titlebar-line-height: null !default;
|
|
23150
|
+
$actionsheet-titlebar-gap: k-map-get( $spacing, 4 ) !default;
|
|
23151
|
+
|
|
23152
|
+
$actionsheet-titlebar-bg: null !default;
|
|
23153
|
+
$actionsheet-titlebar-text: null !default;
|
|
23154
|
+
$actionsheet-titlebar-border: null !default;
|
|
23155
|
+
$actionsheet-titlebar-gradient: null !default;
|
|
23156
|
+
$actionsheet-titlebar-shadow: null !default;
|
|
22395
23157
|
|
|
22396
|
-
$actionsheet-
|
|
22397
|
-
$actionsheet-
|
|
22398
|
-
$actionsheet-
|
|
22399
|
-
$actionsheet-header-gradient: null !default;
|
|
22400
|
-
$actionsheet-header-shadow: null !default;
|
|
23158
|
+
$actionsheet-subtitle-font-size: $font-size-sm !default;
|
|
23159
|
+
$actionsheet-subtitle-line-height: $line-height-sm !default;
|
|
23160
|
+
$actionsheet-subtitle-text: $subtle-text !default;
|
|
22401
23161
|
|
|
22402
23162
|
|
|
22403
23163
|
// Actionsheet item
|
|
22404
23164
|
$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;
|
|
23165
|
+
$actionsheet-item-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
23166
|
+
$actionsheet-item-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
22407
23167
|
$actionsheet-item-border-width: 1px !default;
|
|
22408
23168
|
$actionsheet-item-spacing: 12px !default;
|
|
22409
23169
|
|
|
@@ -22433,27 +23193,86 @@ $actionsheet-item-disabled-border: null !default;
|
|
|
22433
23193
|
$actionsheet-item-disabled-gradient: null !default;
|
|
22434
23194
|
$actionsheet-item-disabled-shadow: null !default;
|
|
22435
23195
|
|
|
23196
|
+
|
|
23197
|
+
// Adaptive Actionsheet
|
|
23198
|
+
$adaptive-actionsheet-titlebar-border-width: 1px !default;
|
|
23199
|
+
$adaptive-actionsheet-titlebar-padding-y: k-map-get( $spacing, 4 ) !default;
|
|
23200
|
+
$adaptive-actionsheet-titlebar-padding-x: $adaptive-actionsheet-titlebar-padding-y !default;
|
|
23201
|
+
$adaptive-actionsheet-titlebar-border: $component-border !default;
|
|
23202
|
+
|
|
23203
|
+
$adaptive-actionsheet-content-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
23204
|
+
$adaptive-actionsheet-content-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
23205
|
+
|
|
23206
|
+
$adaptive-actionsheet-footer-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
23207
|
+
$adaptive-actionsheet-footer-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
23208
|
+
|
|
22436
23209
|
// #endregion
|
|
22437
23210
|
// #region @import "_layout.scss"; -> packages/classic/scss/action-sheet/_layout.scss
|
|
22438
23211
|
// #region @import "~@progress/kendo-theme-default/scss/action-sheet/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/action-sheet/_layout.scss
|
|
22439
23212
|
@include exports("action-sheet/layout") {
|
|
22440
23213
|
|
|
23214
|
+
// Action sheet container
|
|
22441
23215
|
.k-actionsheet-container {
|
|
22442
|
-
width:
|
|
22443
|
-
height:
|
|
23216
|
+
width: 100%;
|
|
23217
|
+
height: 100%;
|
|
23218
|
+
max-width: unquote("max(100%, 100vw)");
|
|
23219
|
+
max-height: unquote("max(100%, 100vh)");
|
|
22444
23220
|
position: fixed;
|
|
22445
23221
|
top: 0;
|
|
22446
23222
|
left: 0;
|
|
22447
23223
|
z-index: 9999;
|
|
22448
23224
|
overflow: hidden;
|
|
23225
|
+
transform: translateZ(0);
|
|
22449
23226
|
}
|
|
22450
23227
|
|
|
23228
|
+
|
|
23229
|
+
// Animation container
|
|
23230
|
+
.k-actionsheet-container {
|
|
23231
|
+
|
|
23232
|
+
// Overlay
|
|
23233
|
+
> .k-overlay {
|
|
23234
|
+
position: absolute;
|
|
23235
|
+
z-index: 1;
|
|
23236
|
+
}
|
|
23237
|
+
|
|
23238
|
+
// Nested animation container
|
|
23239
|
+
> .k-animation-container {
|
|
23240
|
+
width: 100%;
|
|
23241
|
+
height: 100%;
|
|
23242
|
+
border-radius: 0;
|
|
23243
|
+
overflow: hidden;
|
|
23244
|
+
position: absolute;
|
|
23245
|
+
z-index: 2;
|
|
23246
|
+
top: 0;
|
|
23247
|
+
left: 0;
|
|
23248
|
+
pointer-events: none;
|
|
23249
|
+
|
|
23250
|
+
> .k-child-animation-container {
|
|
23251
|
+
position: absolute;
|
|
23252
|
+
}
|
|
23253
|
+
}
|
|
23254
|
+
|
|
23255
|
+
// No animation container
|
|
23256
|
+
> .k-actionsheet {
|
|
23257
|
+
position: absolute;
|
|
23258
|
+
z-index: 2;
|
|
23259
|
+
}
|
|
23260
|
+
|
|
23261
|
+
// Enable mouse events for action sheet
|
|
23262
|
+
.k-actionsheet {
|
|
23263
|
+
pointer-events: all;
|
|
23264
|
+
}
|
|
23265
|
+
}
|
|
23266
|
+
|
|
23267
|
+
|
|
22451
23268
|
// Actionsheet
|
|
22452
23269
|
.k-actionsheet {
|
|
22453
|
-
padding: $actionsheet-padding-y
|
|
22454
|
-
|
|
22455
|
-
|
|
22456
|
-
|
|
23270
|
+
padding-block: $actionsheet-padding-y;
|
|
23271
|
+
padding-inline: $actionsheet-padding-y;
|
|
23272
|
+
width: var( --kendo-actionsheet-width, #{$actionsheet-width} );
|
|
23273
|
+
height: var( --kendo-actionsheet-height, #{$actionsheet-height} );
|
|
23274
|
+
max-width: var( --kendo-actionsheet-max-width, #{$actionsheet-max-width} );
|
|
23275
|
+
max-height: var( --kendo-actionsheet-max-height, #{$actionsheet-max-height} );
|
|
22457
23276
|
border-width: 0;
|
|
22458
23277
|
border-style: solid;
|
|
22459
23278
|
border-color: transparent;
|
|
@@ -22461,10 +23280,8 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22461
23280
|
font-size: $actionsheet-font-size;
|
|
22462
23281
|
font-family: $actionsheet-font-family;
|
|
22463
23282
|
line-height: $actionsheet-line-height;
|
|
22464
|
-
overflow
|
|
22465
|
-
|
|
22466
|
-
position: fixed;
|
|
22467
|
-
z-index: 10002;
|
|
23283
|
+
overflow: hidden;
|
|
23284
|
+
position: relative;
|
|
22468
23285
|
|
|
22469
23286
|
*,
|
|
22470
23287
|
*::before,
|
|
@@ -22472,37 +23289,37 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22472
23289
|
box-sizing: border-box;
|
|
22473
23290
|
}
|
|
22474
23291
|
}
|
|
22475
|
-
.k-actionsheet-fullscreen {
|
|
22476
|
-
max-height: 100%;
|
|
22477
|
-
height: 100%;
|
|
22478
|
-
}
|
|
22479
23292
|
|
|
22480
23293
|
|
|
22481
|
-
// Actionsheet
|
|
22482
|
-
.k-actionsheet-
|
|
22483
|
-
padding: $actionsheet-
|
|
23294
|
+
// Actionsheet titlebar
|
|
23295
|
+
.k-actionsheet-titlebar {
|
|
23296
|
+
padding: $actionsheet-titlebar-padding-y $actionsheet-titlebar-padding-x;
|
|
22484
23297
|
border-width: 0;
|
|
22485
|
-
border-bottom-width: if( $actionsheet-
|
|
23298
|
+
border-bottom-width: if( $actionsheet-titlebar-border-width, $actionsheet-titlebar-border-width, null );
|
|
22486
23299
|
border-style: solid;
|
|
22487
23300
|
border-color: transparent;
|
|
22488
|
-
|
|
22489
|
-
font-
|
|
22490
|
-
|
|
22491
|
-
line-height: $actionsheet-header-line-height;
|
|
23301
|
+
font-size: $actionsheet-titlebar-font-size;
|
|
23302
|
+
font-family: $actionsheet-titlebar-font-family;
|
|
23303
|
+
line-height: $actionsheet-titlebar-line-height;
|
|
22492
23304
|
flex: none;
|
|
23305
|
+
display: flex;
|
|
23306
|
+
flex-flow: column nowrap;
|
|
23307
|
+
align-items: center;
|
|
23308
|
+
gap: $actionsheet-titlebar-gap;
|
|
22493
23309
|
}
|
|
22494
|
-
|
|
22495
|
-
|
|
22496
|
-
// Actionsheet titlebar
|
|
22497
|
-
.k-actionsheet-titlebar {
|
|
22498
|
-
@extend .k-actionsheet-header !optional;
|
|
23310
|
+
.k-actionsheet-titlebar-group {
|
|
22499
23311
|
display: flex;
|
|
22500
23312
|
flex-flow: row nowrap;
|
|
22501
23313
|
align-items: center;
|
|
23314
|
+
width: 100%;
|
|
22502
23315
|
}
|
|
22503
23316
|
.k-actionsheet-title {
|
|
22504
23317
|
flex: 1;
|
|
22505
23318
|
}
|
|
23319
|
+
.k-actionsheet-subtitle {
|
|
23320
|
+
font-size: $actionsheet-subtitle-font-size;
|
|
23321
|
+
line-height: $actionsheet-subtitle-line-height;
|
|
23322
|
+
}
|
|
22506
23323
|
.k-actionsheet-actions {
|
|
22507
23324
|
flex: none;
|
|
22508
23325
|
}
|
|
@@ -22512,6 +23329,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22512
23329
|
.k-actionsheet-content {
|
|
22513
23330
|
flex: 1;
|
|
22514
23331
|
overflow: auto;
|
|
23332
|
+
position: relative;
|
|
22515
23333
|
}
|
|
22516
23334
|
|
|
22517
23335
|
|
|
@@ -22526,6 +23344,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22526
23344
|
margin: 0;
|
|
22527
23345
|
padding: 0;
|
|
22528
23346
|
list-style: none;
|
|
23347
|
+
flex: none;
|
|
22529
23348
|
}
|
|
22530
23349
|
|
|
22531
23350
|
|
|
@@ -22544,7 +23363,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22544
23363
|
outline: 0;
|
|
22545
23364
|
display: flex;
|
|
22546
23365
|
flex-flow: row nowrap;
|
|
22547
|
-
align-items:
|
|
23366
|
+
align-items: flex-start;
|
|
22548
23367
|
gap: $actionsheet-item-spacing;
|
|
22549
23368
|
}
|
|
22550
23369
|
.k-actionsheet-item-icon {
|
|
@@ -22567,6 +23386,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22567
23386
|
.k-actionsheet > .k-hr {
|
|
22568
23387
|
margin: 0;
|
|
22569
23388
|
border-color: inherit;
|
|
23389
|
+
flex: none;
|
|
22570
23390
|
}
|
|
22571
23391
|
|
|
22572
23392
|
|
|
@@ -22603,6 +23423,12 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22603
23423
|
top: 50%;
|
|
22604
23424
|
transform: translateY( -50% );
|
|
22605
23425
|
}
|
|
23426
|
+
.k-actionsheet-fullscreen {
|
|
23427
|
+
width: 100%;
|
|
23428
|
+
max-width: 100%;
|
|
23429
|
+
max-height: 100%;
|
|
23430
|
+
height: 100%;
|
|
23431
|
+
}
|
|
22606
23432
|
|
|
22607
23433
|
|
|
22608
23434
|
// Action sheet in popup
|
|
@@ -22624,6 +23450,28 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22624
23450
|
display: flex;
|
|
22625
23451
|
flex-flow: column nowrap;
|
|
22626
23452
|
|
|
23453
|
+
.k-actionsheet-titlebar {
|
|
23454
|
+
padding: $adaptive-actionsheet-titlebar-padding-y $adaptive-actionsheet-titlebar-padding-x;
|
|
23455
|
+
border-bottom-width: $adaptive-actionsheet-titlebar-border-width;
|
|
23456
|
+
}
|
|
23457
|
+
|
|
23458
|
+
.k-actionsheet-content {
|
|
23459
|
+
padding: $adaptive-actionsheet-content-padding-y $adaptive-actionsheet-content-padding-x;
|
|
23460
|
+
}
|
|
23461
|
+
|
|
23462
|
+
.k-actionsheet-footer {
|
|
23463
|
+
padding: $adaptive-actionsheet-footer-padding-y $adaptive-actionsheet-footer-padding-x;
|
|
23464
|
+
}
|
|
23465
|
+
|
|
23466
|
+
.k-list-container,
|
|
23467
|
+
.k-treeview {
|
|
23468
|
+
height: 100%;
|
|
23469
|
+
}
|
|
23470
|
+
.k-list-filter {
|
|
23471
|
+
width: 100%;
|
|
23472
|
+
padding-inline: 0;
|
|
23473
|
+
}
|
|
23474
|
+
|
|
22627
23475
|
.k-calendar {
|
|
22628
23476
|
margin-inline: auto;
|
|
22629
23477
|
border-width: 0;
|
|
@@ -22643,6 +23491,58 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22643
23491
|
height: 100%;
|
|
22644
23492
|
}
|
|
22645
23493
|
}
|
|
23494
|
+
|
|
23495
|
+
.k-datetime-wrap {
|
|
23496
|
+
width: 100%;
|
|
23497
|
+
height: 100%;
|
|
23498
|
+
display: flex;
|
|
23499
|
+
flex-flow: column nowrap;
|
|
23500
|
+
}
|
|
23501
|
+
.k-datetime-selector {
|
|
23502
|
+
flex: 1 1 auto;
|
|
23503
|
+
}
|
|
23504
|
+
|
|
23505
|
+
.k-datetime-calendar-wrap {
|
|
23506
|
+
width: 100%;
|
|
23507
|
+
position: absolute;
|
|
23508
|
+
top: 0;
|
|
23509
|
+
left: 0;
|
|
23510
|
+
bottom: 0;
|
|
23511
|
+
flex: 0 0 100%;
|
|
23512
|
+
}
|
|
23513
|
+
|
|
23514
|
+
.k-datetime-time-wrap {
|
|
23515
|
+
width: 100%;
|
|
23516
|
+
position: absolute;
|
|
23517
|
+
top: 0;
|
|
23518
|
+
left: 100%;
|
|
23519
|
+
bottom: 0;
|
|
23520
|
+
flex: 0 0 100%;
|
|
23521
|
+
}
|
|
23522
|
+
|
|
23523
|
+
.k-scrollable-wrap {
|
|
23524
|
+
height: 100%;
|
|
23525
|
+
overflow-y: auto;
|
|
23526
|
+
}
|
|
23527
|
+
}
|
|
23528
|
+
|
|
23529
|
+
}
|
|
23530
|
+
|
|
23531
|
+
@include exports("action-sheet/layout/legacy") {
|
|
23532
|
+
|
|
23533
|
+
.k-actionsheet-jq {
|
|
23534
|
+
&.k-actionsheet {
|
|
23535
|
+
height: auto;
|
|
23536
|
+
}
|
|
23537
|
+
|
|
23538
|
+
.k-actionsheet-header {
|
|
23539
|
+
@extend .k-actionsheet-titlebar !optional;
|
|
23540
|
+
align-items: flex-start;
|
|
23541
|
+
}
|
|
23542
|
+
|
|
23543
|
+
.k-actionsheet-action {
|
|
23544
|
+
align-items: center;
|
|
23545
|
+
}
|
|
22646
23546
|
}
|
|
22647
23547
|
|
|
22648
23548
|
}
|
|
@@ -22666,14 +23566,17 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22666
23566
|
|
|
22667
23567
|
|
|
22668
23568
|
// Actionsheet header
|
|
22669
|
-
.k-actionsheet-
|
|
23569
|
+
.k-actionsheet-titlebar {
|
|
22670
23570
|
@include fill(
|
|
22671
|
-
$actionsheet-
|
|
22672
|
-
$actionsheet-
|
|
22673
|
-
$actionsheet-
|
|
22674
|
-
$actionsheet-
|
|
23571
|
+
$actionsheet-titlebar-text,
|
|
23572
|
+
$actionsheet-titlebar-bg,
|
|
23573
|
+
$actionsheet-titlebar-border,
|
|
23574
|
+
$actionsheet-titlebar-gradient
|
|
22675
23575
|
);
|
|
22676
|
-
@include box-shadow( $actionsheet-
|
|
23576
|
+
@include box-shadow( $actionsheet-titlebar-shadow );
|
|
23577
|
+
}
|
|
23578
|
+
.k-actionsheet-subtitle {
|
|
23579
|
+
@include fill( $color: $actionsheet-subtitle-text );
|
|
22677
23580
|
}
|
|
22678
23581
|
|
|
22679
23582
|
|
|
@@ -22682,17 +23585,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22682
23585
|
|
|
22683
23586
|
|
|
22684
23587
|
// Actionsheet item
|
|
22685
|
-
.k-actionsheet-item {
|
|
22686
|
-
|
|
22687
|
-
|
|
22688
|
-
// Actionsheet item description
|
|
22689
|
-
.k-actionsheet-item-description {
|
|
22690
|
-
@include fill( $color: $actionsheet-item-description-text );
|
|
22691
|
-
}
|
|
22692
|
-
|
|
22693
|
-
|
|
22694
|
-
// Actionsheet action
|
|
22695
|
-
.k-actionsheet-action {
|
|
23588
|
+
.k-actionsheet-item {
|
|
22696
23589
|
|
|
22697
23590
|
|
|
22698
23591
|
// Hover state
|
|
@@ -22721,7 +23614,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22721
23614
|
}
|
|
22722
23615
|
|
|
22723
23616
|
|
|
22724
|
-
//
|
|
23617
|
+
// Disabled state
|
|
22725
23618
|
&:disabled,
|
|
22726
23619
|
&.k-disabled {
|
|
22727
23620
|
@include fill(
|
|
@@ -22734,6 +23627,22 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22734
23627
|
}
|
|
22735
23628
|
}
|
|
22736
23629
|
|
|
23630
|
+
|
|
23631
|
+
// Actionsheet item description
|
|
23632
|
+
.k-actionsheet-item-description {
|
|
23633
|
+
@include fill( $color: $actionsheet-item-description-text );
|
|
23634
|
+
}
|
|
23635
|
+
|
|
23636
|
+
|
|
23637
|
+
// Actionsheet action
|
|
23638
|
+
.k-actionsheet-action {}
|
|
23639
|
+
|
|
23640
|
+
|
|
23641
|
+
// Adaptive Actionsheet
|
|
23642
|
+
.k-adaptive-actionsheet .k-actionsheet-titlebar {
|
|
23643
|
+
@include fill( $border: $adaptive-actionsheet-titlebar-border );
|
|
23644
|
+
}
|
|
23645
|
+
|
|
22737
23646
|
}
|
|
22738
23647
|
|
|
22739
23648
|
// #endregion
|
|
@@ -23147,15 +24056,15 @@ $drawer-font-size: $font-size !default;
|
|
|
23147
24056
|
$drawer-line-height: $line-height !default;
|
|
23148
24057
|
$drawer-content-padding-x: $padding-x !default;
|
|
23149
24058
|
$drawer-content-padding-y: $padding-y !default;
|
|
23150
|
-
$drawer-item-level-padding-x: map-get( $spacing, 4 ) !default;
|
|
24059
|
+
$drawer-item-level-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
23151
24060
|
|
|
23152
24061
|
$drawer-item-level-count: 5 !default;
|
|
23153
24062
|
|
|
23154
24063
|
$drawer-scrollbar-width: 7px !default;
|
|
23155
|
-
$drawer-scrollbar-color: rgba(156, 156, 156, .7) !default;
|
|
24064
|
+
$drawer-scrollbar-color: rgba( 156, 156, 156, .7 ) !default;
|
|
23156
24065
|
$drawer-scrollbar-bg: #dedede !default;
|
|
23157
24066
|
$drawer-scrollbar-radius: 20px !default;
|
|
23158
|
-
$drawer-scrollbar-hovered-color: rgba(156, 156, 156, 1) !default;
|
|
24067
|
+
$drawer-scrollbar-hovered-color: rgba( 156, 156, 156, 1 ) !default;
|
|
23159
24068
|
|
|
23160
24069
|
$drawer-item-padding-x: $padding-x !default;
|
|
23161
24070
|
$drawer-item-padding-y: $padding-x !default;
|
|
@@ -23163,7 +24072,7 @@ $drawer-item-font-size: 16px !default;
|
|
|
23163
24072
|
$drawer-item-line-height: $line-height-lg !default;
|
|
23164
24073
|
$drawer-icon-size: $icon-size !default;
|
|
23165
24074
|
|
|
23166
|
-
$drawer-mini-initial-width: calc(4 * #{$drawer-item-padding-x} + #{$drawer-icon-size}) !default;
|
|
24075
|
+
$drawer-mini-initial-width: calc( 4 * #{$drawer-item-padding-x} + #{$drawer-icon-size} ) !default;
|
|
23167
24076
|
|
|
23168
24077
|
$drawer-hovered-bg: $hovered-bg !default;
|
|
23169
24078
|
$drawer-hovered-text: $hovered-text !default;
|
|
@@ -23534,7 +24443,7 @@ $notification-border: $component-border !default;
|
|
|
23534
24443
|
|
|
23535
24444
|
// sass-lint:disable-block indentation
|
|
23536
24445
|
@each $name, $color in $colors {
|
|
23537
|
-
$_theme: map-merge(( $name: (
|
|
24446
|
+
$_theme: k-map-merge(( $name: (
|
|
23538
24447
|
color: contrast-wcag( $color ),
|
|
23539
24448
|
background-color: $color,
|
|
23540
24449
|
border: $color,
|
|
@@ -23725,8 +24634,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
23725
24634
|
// Component
|
|
23726
24635
|
// #region @import "_variables.scss"; -> packages/classic/scss/card/_variables.scss
|
|
23727
24636
|
// Card
|
|
23728
|
-
$card-padding-x: map-get( $spacing, lg ) !default;
|
|
23729
|
-
$card-padding-y: map-get( $spacing, md ) !default;
|
|
24637
|
+
$card-padding-x: k-map-get( $spacing, lg ) !default;
|
|
24638
|
+
$card-padding-y: k-map-get( $spacing, md ) !default;
|
|
23730
24639
|
$card-border-width: 1px !default;
|
|
23731
24640
|
$card-border-radius: $kendo-border-radius-lg !default;
|
|
23732
24641
|
$card-inner-border-radius: calc( #{$card-border-radius} - #{$card-border-width} ) !default;
|
|
@@ -23734,7 +24643,7 @@ $card-font-family: $font-family !default;
|
|
|
23734
24643
|
$card-font-size: $font-size !default;
|
|
23735
24644
|
$card-line-height: $line-height !default;
|
|
23736
24645
|
|
|
23737
|
-
$card-deck-gap: map-get( $spacing, lg ) !default;
|
|
24646
|
+
$card-deck-gap: k-map-get( $spacing, lg ) !default;
|
|
23738
24647
|
|
|
23739
24648
|
$card-bg: $component-bg !default;
|
|
23740
24649
|
$card-text: $component-text !default;
|
|
@@ -23753,8 +24662,8 @@ $card-header-bg: null !default;
|
|
|
23753
24662
|
$card-header-text: $header-text !default;
|
|
23754
24663
|
$card-header-border: $header-border !default;
|
|
23755
24664
|
|
|
23756
|
-
$card-body-padding-x: map-get( $spacing, lg ) !default;
|
|
23757
|
-
$card-body-padding-y: map-get( $spacing, lg ) !default;
|
|
24665
|
+
$card-body-padding-x: k-map-get( $spacing, lg ) !default;
|
|
24666
|
+
$card-body-padding-y: k-map-get( $spacing, lg ) !default;
|
|
23758
24667
|
|
|
23759
24668
|
$card-footer-padding-x: $card-padding-x !default;
|
|
23760
24669
|
$card-footer-padding-y: $card-padding-y !default;
|
|
@@ -23763,14 +24672,14 @@ $card-footer-bg: null !default;
|
|
|
23763
24672
|
$card-footer-text: $header-text !default;
|
|
23764
24673
|
$card-footer-border: $header-border !default;
|
|
23765
24674
|
|
|
23766
|
-
$card-title-margin-bottom: map-get( $spacing, sm ) !default;
|
|
24675
|
+
$card-title-margin-bottom: k-map-get( $spacing, sm ) !default;
|
|
23767
24676
|
$card-title-font-size: $h5-font-size !default;
|
|
23768
24677
|
$card-title-font-family: null !default;
|
|
23769
24678
|
$card-title-line-height: 1.25 !default;
|
|
23770
24679
|
$card-title-font-weight: $font-weight-normal !default;
|
|
23771
24680
|
$card-title-letter-spacing: null !default;
|
|
23772
24681
|
|
|
23773
|
-
$card-subtitle-margin-bottom: map-get( $spacing, sm ) !default;
|
|
24682
|
+
$card-subtitle-margin-bottom: k-map-get( $spacing, sm ) !default;
|
|
23774
24683
|
$card-subtitle-font-size: $font-size-sm !default;
|
|
23775
24684
|
$card-subtitle-font-family: null !default;
|
|
23776
24685
|
$card-subtitle-line-height: normal !default;
|
|
@@ -23782,10 +24691,10 @@ $card-img-max-width: 100px !default;
|
|
|
23782
24691
|
$card-avatar-size: 45px !default;
|
|
23783
24692
|
$card-avatar-spacing: $card-header-padding-x !default;
|
|
23784
24693
|
|
|
23785
|
-
$card-actions-padding-x: map-get( $spacing, 2 ) !default;
|
|
23786
|
-
$card-actions-padding-y: map-get( $spacing, 2 ) !default;
|
|
24694
|
+
$card-actions-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
24695
|
+
$card-actions-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
23787
24696
|
$card-actions-border-width: 1px !default;
|
|
23788
|
-
$card-actions-gap: map-get( $spacing, 2 ) !default;
|
|
24697
|
+
$card-actions-gap: k-map-get( $spacing, 2 ) !default;
|
|
23789
24698
|
|
|
23790
24699
|
$card-deck-scroll-button-radius: 0px !default;
|
|
23791
24700
|
$card-deck-scroll-button-offset: -$kendo-button-border-width !default;
|
|
@@ -24597,7 +25506,7 @@ $popover-callout-border: $popover-border !default;
|
|
|
24597
25506
|
// Component
|
|
24598
25507
|
// #region @import "_variables.scss"; -> packages/classic/scss/bottom-navigation/_variables.scss
|
|
24599
25508
|
// Bottom-navigation
|
|
24600
|
-
$bottom-nav-padding-x: map-get( $spacing, 1 ) !default;
|
|
25509
|
+
$bottom-nav-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
24601
25510
|
$bottom-nav-padding-y: $bottom-nav-padding-x !default;
|
|
24602
25511
|
$bottom-nav-gap: $bottom-nav-padding-x !default;
|
|
24603
25512
|
$bottom-nav-border-width: 1px 0px 0px 0px !default;
|
|
@@ -24607,20 +25516,20 @@ $bottom-nav-font-size: $font-size !default;
|
|
|
24607
25516
|
$bottom-nav-line-height: normal !default;
|
|
24608
25517
|
$bottom-nav-letter-spacing: .2px !default;
|
|
24609
25518
|
|
|
24610
|
-
$bottom-nav-item-padding-x: map-get( $spacing, 2 ) !default;
|
|
25519
|
+
$bottom-nav-item-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
24611
25520
|
$bottom-nav-item-padding-y: 0 !default;
|
|
24612
25521
|
$bottom-nav-item-min-width: 72px !default;
|
|
24613
25522
|
$bottom-nav-item-max-width: null !default;
|
|
24614
25523
|
$bottom-nav-item-min-height: calc( #{$icon-size * 2.5} + #{$padding-x * 2} - #{$bottom-nav-padding-x * 2} ) !default;
|
|
24615
25524
|
$bottom-nav-item-border-radius: $kendo-border-radius-md !default;
|
|
24616
|
-
$bottom-nav-item-gap: 0 map-get( $spacing, 1 ) !default;
|
|
25525
|
+
$bottom-nav-item-gap: 0 k-map-get( $spacing, 1 ) !default;
|
|
24617
25526
|
|
|
24618
|
-
$bottom-nav-item-icon-margin-y: map-get( $spacing, 2 ) !default;
|
|
25527
|
+
$bottom-nav-item-icon-margin-y: k-map-get( $spacing, 2 ) !default;
|
|
24619
25528
|
$bottom-nav-item-icon-margin-x: $bottom-nav-item-icon-margin-y !default;
|
|
24620
|
-
$bottom-nav-item-icon-size: map-get( $spacing, 6 ) !default;
|
|
25529
|
+
$bottom-nav-item-icon-size: k-map-get( $spacing, 6 ) !default;
|
|
24621
25530
|
$bottom-nav-item-disabled-opacity: .5 !default;
|
|
24622
25531
|
|
|
24623
|
-
$bottom-nav-shadow: 0px 0px 5px rgba(
|
|
25532
|
+
$bottom-nav-shadow: 0px 0px 5px rgba( black, .12 ) !default;
|
|
24624
25533
|
|
|
24625
25534
|
$bottom-nav-flat-bg: $component-bg !default;
|
|
24626
25535
|
$bottom-nav-flat-text: $component-text !default;
|
|
@@ -24884,7 +25793,7 @@ $breadcrumb-root-link-focused-text: null !default;
|
|
|
24884
25793
|
$breadcrumb-root-link-focused-border: null !default;
|
|
24885
25794
|
$breadcrumb-root-link-focused-shadow: $breadcrumb-link-focused-shadow !default;
|
|
24886
25795
|
|
|
24887
|
-
$breadcrumb-focused-shadow: 0 0 2px 1px rgba(
|
|
25796
|
+
$breadcrumb-focused-shadow: 0 0 2px 1px rgba( black, .06 ) !default;
|
|
24888
25797
|
|
|
24889
25798
|
// #endregion
|
|
24890
25799
|
// #region @import "_layout.scss"; -> packages/classic/scss/breadcrumb/_layout.scss
|
|
@@ -25143,8 +26052,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
25143
26052
|
// Component
|
|
25144
26053
|
// #region @import "_variables.scss"; -> packages/classic/scss/pager/_variables.scss
|
|
25145
26054
|
// Pager
|
|
25146
|
-
$pager-padding-x: map-get( $spacing, 2 ) !default;
|
|
25147
|
-
$pager-padding-y: map-get( $spacing, 2 ) !default;
|
|
26055
|
+
$pager-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
26056
|
+
$pager-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
25148
26057
|
$pager-border-width: 1px !default;
|
|
25149
26058
|
|
|
25150
26059
|
$pager-font-family: $font-family !default;
|
|
@@ -25193,18 +26102,18 @@ $pager-number-text: $primary !default;
|
|
|
25193
26102
|
$pager-number-border: null !default;
|
|
25194
26103
|
|
|
25195
26104
|
$pager-number-hover-opacity: .08 !default;
|
|
25196
|
-
$pager-number-hover-bg: rgba($pager-item-selected-bg, $pager-number-hover-opacity) !default;
|
|
26105
|
+
$pager-number-hover-bg: rgba( $pager-item-selected-bg, $pager-number-hover-opacity ) !default;
|
|
25197
26106
|
$pager-number-hover-text: $pager-number-text !default;
|
|
25198
26107
|
$pager-number-hover-border: $pager-item-hover-border !default;
|
|
25199
26108
|
|
|
25200
26109
|
$pager-number-selected-opacity: .2 !default;
|
|
25201
|
-
$pager-number-selected-bg: rgba($pager-item-selected-bg, $pager-number-selected-opacity) !default;
|
|
26110
|
+
$pager-number-selected-bg: rgba( $pager-item-selected-bg, $pager-number-selected-opacity ) !default;
|
|
25202
26111
|
$pager-number-selected-text: $pager-number-text !default;
|
|
25203
26112
|
$pager-number-selected-border: $pager-item-selected-border !default;
|
|
25204
26113
|
|
|
25205
26114
|
$pager-number-focus-opacity: .12 !default;
|
|
25206
26115
|
$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;
|
|
26116
|
+
$pager-number-focus-shadow: inset 0 0 0 2px rgba( $pager-number-selected-bg, $pager-number-focus-opacity ) !default;
|
|
25208
26117
|
|
|
25209
26118
|
$pager-input-width: 5em !default;
|
|
25210
26119
|
$pager-dropdown-width: 5em !default;
|
|
@@ -25701,7 +26610,7 @@ $stepper-indicator-bg: $component-bg !default;
|
|
|
25701
26610
|
$stepper-indicator-text: $component-text !default;
|
|
25702
26611
|
$stepper-indicator-border: $component-border !default;
|
|
25703
26612
|
|
|
25704
|
-
$stepper-indicator-hover-bg: try-shade( $stepper-indicator-bg ) !default;
|
|
26613
|
+
$stepper-indicator-hover-bg: k-try-shade( $stepper-indicator-bg ) !default;
|
|
25705
26614
|
$stepper-indicator-hover-text: null !default;
|
|
25706
26615
|
$stepper-indicator-hover-border: null !default;
|
|
25707
26616
|
|
|
@@ -25713,11 +26622,11 @@ $stepper-indicator-done-bg: $primary !default;
|
|
|
25713
26622
|
$stepper-indicator-done-text: contrast-wcag( $stepper-indicator-done-bg ) !default;
|
|
25714
26623
|
$stepper-indicator-done-border: $stepper-indicator-done-bg !default;
|
|
25715
26624
|
|
|
25716
|
-
$stepper-indicator-done-hover-bg: try-shade( $stepper-indicator-done-bg ) !default;
|
|
26625
|
+
$stepper-indicator-done-hover-bg: k-try-shade( $stepper-indicator-done-bg ) !default;
|
|
25717
26626
|
$stepper-indicator-done-hover-text: null !default;
|
|
25718
26627
|
$stepper-indicator-done-hover-border: null !default;
|
|
25719
26628
|
|
|
25720
|
-
$stepper-indicator-done-disabled-bg: mix( $stepper-indicator-done-bg, $component-bg, 60%) !default;
|
|
26629
|
+
$stepper-indicator-done-disabled-bg: k-color-mix( $stepper-indicator-done-bg, $component-bg, 60% ) !default;
|
|
25721
26630
|
$stepper-indicator-done-disabled-text: contrast-wcag( $stepper-indicator-done-bg ) !default;
|
|
25722
26631
|
$stepper-indicator-done-disabled-border: $stepper-indicator-done-disabled-bg !default;
|
|
25723
26632
|
|
|
@@ -26347,17 +27256,17 @@ $tabstrip-item-selected-gradient: false !default;
|
|
|
26347
27256
|
|
|
26348
27257
|
$tabstrip-item-focused-shadow: $kendo-list-item-focus-shadow !default;
|
|
26349
27258
|
|
|
26350
|
-
$tabstrip-item-dragging-shadow: 0px 3px 4px rgba(
|
|
27259
|
+
$tabstrip-item-dragging-shadow: 0px 3px 4px rgba( black, .15 ) !default;
|
|
26351
27260
|
|
|
26352
27261
|
$tabstrip-indicator-size: null !default;
|
|
26353
27262
|
$tabstrip-indicator-color: null !default;
|
|
26354
27263
|
|
|
26355
27264
|
/// Horizontal padding of tabstrip content
|
|
26356
27265
|
/// @group tabstrip
|
|
26357
|
-
$tabstrip-content-padding-x: map-get( $spacing, 4 ) !default;
|
|
27266
|
+
$tabstrip-content-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
26358
27267
|
/// Vertical padding of tabstrip content
|
|
26359
27268
|
/// @group tabstrip
|
|
26360
|
-
$tabstrip-content-padding-y: map-get( $spacing, 4 ) !default;
|
|
27269
|
+
$tabstrip-content-padding-y: k-map-get( $spacing, 4 ) !default;
|
|
26361
27270
|
/// Width of border around tabstrip content
|
|
26362
27271
|
/// @group tabstrip
|
|
26363
27272
|
$tabstrip-content-border-width: 1px !default;
|
|
@@ -26893,7 +27802,7 @@ $wizard-line-height: $line-height !default;
|
|
|
26893
27802
|
$wizard-font-family: $font-family !default;
|
|
26894
27803
|
|
|
26895
27804
|
$wizard-step-border-focused: #656565 !default;
|
|
26896
|
-
$wizard-focused-shadow: inset 0 0 0 2px rgba(
|
|
27805
|
+
$wizard-focused-shadow: inset 0 0 0 2px rgba( black, .13 ) !default;
|
|
26897
27806
|
|
|
26898
27807
|
// #endregion
|
|
26899
27808
|
// #region @import "_layout.scss"; -> packages/classic/scss/wizard/_layout.scss
|
|
@@ -27100,7 +28009,7 @@ $expander-header-bg: transparent !default;
|
|
|
27100
28009
|
$expander-header-text: $expander-text !default;
|
|
27101
28010
|
$expander-header-border: null !default;
|
|
27102
28011
|
|
|
27103
|
-
$expander-header-hover-bg: shade($expander-bg) !default;
|
|
28012
|
+
$expander-header-hover-bg: k-color-shade( $expander-bg, 1 ) !default;
|
|
27104
28013
|
|
|
27105
28014
|
$expander-header-focused-bg: null !default;
|
|
27106
28015
|
$expander-header-focused-shadow: $kendo-list-item-focus-shadow !default;
|
|
@@ -27311,7 +28220,7 @@ $panelbar-header-selected-text: $selected-text !default;
|
|
|
27311
28220
|
$panelbar-header-selected-border: $selected-border !default;
|
|
27312
28221
|
$panelbar-header-selected-gradient: null !default;
|
|
27313
28222
|
|
|
27314
|
-
$panelbar-header-selected-hovered-bg: try-shade( $panelbar-header-selected-bg ) !default;
|
|
28223
|
+
$panelbar-header-selected-hovered-bg: k-try-shade( $panelbar-header-selected-bg ) !default;
|
|
27315
28224
|
$panelbar-header-selected-hovered-text: null !default;
|
|
27316
28225
|
$panelbar-header-selected-hovered-border: null !default;
|
|
27317
28226
|
$panelbar-header-selected-hovered-gradient: null !default;
|
|
@@ -27327,7 +28236,7 @@ $panelbar-header-selected-hovered-focused-border: null !default;
|
|
|
27327
28236
|
$panelbar-header-selected-hovered-focused-gradient: null !default;
|
|
27328
28237
|
|
|
27329
28238
|
|
|
27330
|
-
$panelbar-item-hovered-bg: try-shade( $panelbar-bg, .5 ) !default;
|
|
28239
|
+
$panelbar-item-hovered-bg: k-try-shade( $panelbar-bg, .5 ) !default;
|
|
27331
28240
|
$panelbar-item-hovered-text: null !default;
|
|
27332
28241
|
$panelbar-item-hovered-border: null !default;
|
|
27333
28242
|
$panelbar-item-hovered-gradient: null !default;
|
|
@@ -27348,7 +28257,7 @@ $panelbar-item-selected-text: $selected-text !default;
|
|
|
27348
28257
|
$panelbar-item-selected-border: null !default;
|
|
27349
28258
|
$panelbar-item-selected-gradient: null !default;
|
|
27350
28259
|
|
|
27351
|
-
$panelbar-item-selected-hovered-bg: try-shade( $panelbar-item-selected-bg ) !default;
|
|
28260
|
+
$panelbar-item-selected-hovered-bg: k-try-shade( $panelbar-item-selected-bg ) !default;
|
|
27352
28261
|
$panelbar-item-selected-hovered-text: null !default;
|
|
27353
28262
|
$panelbar-item-selected-hovered-border: null !default;
|
|
27354
28263
|
$panelbar-item-selected-hovered-gradient: null !default;
|
|
@@ -27821,7 +28730,7 @@ $splitter-drag-icon-margin: 7px !default;
|
|
|
27821
28730
|
$splitbar-bg: $base-bg !default;
|
|
27822
28731
|
$splitbar-text: $base-text !default;
|
|
27823
28732
|
|
|
27824
|
-
$splitbar-hover-bg: try-shade( $splitbar-bg, .5 ) !default;
|
|
28733
|
+
$splitbar-hover-bg: k-try-shade( $splitbar-bg, .5 ) !default;
|
|
27825
28734
|
$splitbar-hover-text: $splitbar-text !default;
|
|
27826
28735
|
|
|
27827
28736
|
$splitbar-selected-bg: $selected-bg !default;
|
|
@@ -28107,7 +29016,7 @@ $tilelayout-hint-border-radius: $kendo-border-radius-lg !default;
|
|
|
28107
29016
|
|
|
28108
29017
|
$tilelayout-bg: $base-bg !default;
|
|
28109
29018
|
|
|
28110
|
-
$tilelayout-hint-bg: rgba(
|
|
29019
|
+
$tilelayout-hint-bg: rgba( white, .2 ) !default;
|
|
28111
29020
|
$tilelayout-hint-border: $component-border !default;
|
|
28112
29021
|
|
|
28113
29022
|
// #endregion
|
|
@@ -30884,8 +31793,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30884
31793
|
// Component
|
|
30885
31794
|
// #region @import "_variables.scss"; -> packages/classic/scss/listview/_variables.scss
|
|
30886
31795
|
// Listview
|
|
30887
|
-
$listview-padding-x: map-get( $spacing, 1 ) !default;
|
|
30888
|
-
$listview-padding-y: map-get( $spacing, 1 ) !default;
|
|
31796
|
+
$listview-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
31797
|
+
$listview-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
30889
31798
|
$listview-border-width: 1px !default;
|
|
30890
31799
|
$listview-font-family: $font-family !default;
|
|
30891
31800
|
$listview-font-size: $font-size !default;
|
|
@@ -30897,8 +31806,8 @@ $listview-border: $component-border !default;
|
|
|
30897
31806
|
|
|
30898
31807
|
$listview-grid-gap: 10px !default;
|
|
30899
31808
|
|
|
30900
|
-
$listview-item-padding-x: map-get( $spacing, 1 ) !default;
|
|
30901
|
-
$listview-item-padding-y: map-get( $spacing, 1 ) !default;
|
|
31809
|
+
$listview-item-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
31810
|
+
$listview-item-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
30902
31811
|
|
|
30903
31812
|
$listview-item-selected-bg: rgba( $selected-bg, .25 ) !default;
|
|
30904
31813
|
$listview-item-selected-text: null !default;
|
|
@@ -30907,7 +31816,7 @@ $listview-item-selected-border: null !default;
|
|
|
30907
31816
|
$listview-item-focus-bg: null !default;
|
|
30908
31817
|
$listview-item-focus-text: null !default;
|
|
30909
31818
|
$listview-item-focus-border: null !default;
|
|
30910
|
-
$listview-item-focus-shadow: inset 0 0 0 2px rgba(
|
|
31819
|
+
$listview-item-focus-shadow: inset 0 0 0 2px rgba( black, .13 ) !default;
|
|
30911
31820
|
|
|
30912
31821
|
// #endregion
|
|
30913
31822
|
// #region @import "_layout.scss"; -> packages/classic/scss/listview/_layout.scss
|
|
@@ -31170,7 +32079,7 @@ $spreadsheet-insert-image-dialog-preview-height: 230px !default;
|
|
|
31170
32079
|
$spreadsheet-insert-image-dialog-preview-img: "image-default.png" !default;
|
|
31171
32080
|
$spreadsheet-insert-image-dialog-preview-border: $component-border !default;
|
|
31172
32081
|
$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(
|
|
32082
|
+
$spreadsheet-insert-image-dialog-preview-overlay-shadow: inset 0 0 0 2000px rgba( black, .5 ) !default;
|
|
31174
32083
|
$spreadsheet-insert-image-dialog-preview-overlay-border-radius: $kendo-border-radius-md !default;
|
|
31175
32084
|
$spreadsheet-insert-image-dialog-overlay-hovered-text: $component-bg !default;
|
|
31176
32085
|
|
|
@@ -32434,7 +33343,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32434
33343
|
// Component
|
|
32435
33344
|
// #region @import "_variables.scss"; -> packages/classic/scss/pivotgrid/_variables.scss
|
|
32436
33345
|
// Pivot grid
|
|
32437
|
-
$pivotgrid-spacer: map-get( $spacing, 4 ) !default;
|
|
33346
|
+
$pivotgrid-spacer: k-map-get( $spacing, 4 ) !default;
|
|
32438
33347
|
$pivotgrid-padding-x: null !default;
|
|
32439
33348
|
$pivotgrid-padding-y: null !default;
|
|
32440
33349
|
$pivotgrid-font-family: $font-family !default;
|
|
@@ -32454,21 +33363,21 @@ $pivotgrid-bg: $component-bg !default;
|
|
|
32454
33363
|
$pivotgrid-text: $component-text !default;
|
|
32455
33364
|
$pivotgrid-border: $component-border !default;
|
|
32456
33365
|
|
|
32457
|
-
$pivotgrid-alt-border: try-shade($pivotgrid-border, 2) !default;
|
|
33366
|
+
$pivotgrid-alt-border: k-try-shade( $pivotgrid-border, 2 ) !default;
|
|
32458
33367
|
|
|
32459
33368
|
$pivotgrid-headers-bg: $header-bg !default;
|
|
32460
33369
|
$pivotgrid-headers-text: $header-text !default;
|
|
32461
33370
|
$pivotgrid-headers-border: $header-border !default;
|
|
32462
33371
|
|
|
32463
|
-
$pivotgrid-total-bg: try-shade( $pivotgrid-bg, 1 ) !default;
|
|
33372
|
+
$pivotgrid-total-bg: k-try-shade( $pivotgrid-bg, 1 ) !default;
|
|
32464
33373
|
$pivotgrid-total-text: $header-text !default;
|
|
32465
33374
|
$pivotgrid-total-border: $header-border !default;
|
|
32466
33375
|
|
|
32467
|
-
$pivotgrid-hover-bg: darken($pivotgrid-bg, 7%) !default;
|
|
33376
|
+
$pivotgrid-hover-bg: k-color-darken( $pivotgrid-bg, 7% ) !default;
|
|
32468
33377
|
$pivotgrid-hover-text: null !default;
|
|
32469
33378
|
$pivotgrid-hover-border: null !default;
|
|
32470
33379
|
|
|
32471
|
-
$pivotgrid-selected-bg: rgba($selected-bg, .25) !default;
|
|
33380
|
+
$pivotgrid-selected-bg: rgba( $selected-bg, .25 ) !default;
|
|
32472
33381
|
$pivotgrid-selected-text: null !default;
|
|
32473
33382
|
$pivotgrid-selected-border: null !default;
|
|
32474
33383
|
|
|
@@ -32488,7 +33397,7 @@ $pivotgrid-configurator-content-padding-x: $pivotgrid-spacer !default;
|
|
|
32488
33397
|
$pivotgrid-configurator-content-padding-y: 0px !default;
|
|
32489
33398
|
|
|
32490
33399
|
$pivotgrid-configurator-fields-margin-x: 0px !default;
|
|
32491
|
-
$pivotgrid-configurator-fields-margin-y: ( $pivotgrid-spacer
|
|
33400
|
+
$pivotgrid-configurator-fields-margin-y: k-math-div( $pivotgrid-spacer, 2 ) !default;
|
|
32492
33401
|
|
|
32493
33402
|
$pivotgrid-configurator-vertical-width: 320px !default;
|
|
32494
33403
|
$pivotgrid-configurator-horizontal-height: 420px !default;
|
|
@@ -32501,13 +33410,13 @@ $pivotgrid-configurator-header-bg: null !default;
|
|
|
32501
33410
|
$pivotgrid-configurator-header-text: $header-text !default;
|
|
32502
33411
|
$pivotgrid-configurator-header-border: null !default;
|
|
32503
33412
|
|
|
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(
|
|
33413
|
+
$pivotgrid-configurator-end-shadow: -3px 0px 6px rgba( black, .16 ) !default;
|
|
33414
|
+
$pivotgrid-configurator-start-shadow: 3px 0px 6px rgba( black, .16 ) !default;
|
|
33415
|
+
$pivotgrid-configurator-top-shadow: 0px -3px 6px rgba( black, .16 ) !default;
|
|
33416
|
+
$pivotgrid-configurator-bottom-shadow: 0px 3px 6px rgba( black, .16 ) !default;
|
|
32508
33417
|
|
|
32509
|
-
$pivotgrid-configurator-button-padding-x: map-get($spacing, 1) !default;
|
|
32510
|
-
$pivotgrid-configurator-button-padding-y: map-get($spacing, 1) !default;
|
|
33418
|
+
$pivotgrid-configurator-button-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
33419
|
+
$pivotgrid-configurator-button-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
32511
33420
|
$pivotgrid-configurator-button-border-width: 1px !default;
|
|
32512
33421
|
$pivotgrid-configurator-button-size: calc( #{$pivotgrid-line-height * 1em} + #{$pivotgrid-configurator-button-padding-y * 2} + #{$pivotgrid-configurator-button-border-width * 2} ) !default;
|
|
32513
33422
|
|
|
@@ -32527,7 +33436,7 @@ $pivotgrid-calculated-field-header-text: $header-text !default;
|
|
|
32527
33436
|
$pivotgrid-calculated-field-header-border: null !default;
|
|
32528
33437
|
|
|
32529
33438
|
|
|
32530
|
-
$pivotgrid-treeview-padding-x: ( $pivotgrid-spacer
|
|
33439
|
+
$pivotgrid-treeview-padding-x: k-math-div( $pivotgrid-spacer, 2) !default;
|
|
32531
33440
|
$pivotgrid-treeview-padding-y: 0px !default;
|
|
32532
33441
|
|
|
32533
33442
|
// Legacy variables
|
|
@@ -32536,7 +33445,7 @@ $pivotgrid-alt-text: $grid-header-text !default;
|
|
|
32536
33445
|
$pivotgrid-chrome-border: $grid-border !default;
|
|
32537
33446
|
|
|
32538
33447
|
$pivotgrid-container-bg: $component-bg !default;
|
|
32539
|
-
$pivotgrid-row-headers-bg: try-shade( $component-bg, 2 ) !default;
|
|
33448
|
+
$pivotgrid-row-headers-bg: k-try-shade( $component-bg, 2 ) !default;
|
|
32540
33449
|
|
|
32541
33450
|
$pivotgrid-button-bg: null !default;
|
|
32542
33451
|
$pivotgrid-button-text: null !default;
|
|
@@ -33710,6 +34619,8 @@ $filter-operator-dropdown-width: 15em !default;
|
|
|
33710
34619
|
$filter-preview-field-text: $primary !default;
|
|
33711
34620
|
$filter-preview-operator-text: $subtle-text !default;
|
|
33712
34621
|
|
|
34622
|
+
$filter-toolbar-focus-shadow: 0 0 0 2px rgba(0, 0, 0, .08) !default;
|
|
34623
|
+
|
|
33713
34624
|
// #endregion
|
|
33714
34625
|
// #region @import "_layout.scss"; -> packages/classic/scss/filter/_layout.scss
|
|
33715
34626
|
// #region @import "~@progress/kendo-theme-default/scss/filter/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/filter/_layout.scss
|
|
@@ -33861,6 +34772,12 @@ $filter-preview-operator-text: $subtle-text !default;
|
|
|
33861
34772
|
.k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
|
|
33862
34773
|
background-color: $component-border;
|
|
33863
34774
|
}
|
|
34775
|
+
|
|
34776
|
+
// Focus
|
|
34777
|
+
.k-toolbar:focus,
|
|
34778
|
+
.k-toolbar.k-focus {
|
|
34779
|
+
@include box-shadow( $filter-toolbar-focus-shadow );
|
|
34780
|
+
}
|
|
33864
34781
|
}
|
|
33865
34782
|
|
|
33866
34783
|
}
|
|
@@ -33918,7 +34835,7 @@ $filter-preview-operator-text: $subtle-text !default;
|
|
|
33918
34835
|
// Component
|
|
33919
34836
|
// #region @import "_variables.scss"; -> packages/classic/scss/filemanager/_variables.scss
|
|
33920
34837
|
// File manager
|
|
33921
|
-
$filemanager-spacer: map-get( $spacing, 4 ) !default;
|
|
34838
|
+
$filemanager-spacer: k-map-get( $spacing, 4 ) !default;
|
|
33922
34839
|
$filemanager-border-width: 1px !default;
|
|
33923
34840
|
$filemanager-font-family: $font-family !default;
|
|
33924
34841
|
$filemanager-font-size: $font-size !default;
|
|
@@ -33941,8 +34858,8 @@ $filemanager-navigation-bg: null !default;
|
|
|
33941
34858
|
$filemanager-navigation-text: null !default;
|
|
33942
34859
|
$filemanager-navigation-border: null !default;
|
|
33943
34860
|
|
|
33944
|
-
$filemanager-breadcrumb-padding-x: map-get( $spacing, 2 ) !default;
|
|
33945
|
-
$filemanager-breadcrumb-padding-y: map-get( $spacing, 2 ) !default;
|
|
34861
|
+
$filemanager-breadcrumb-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
34862
|
+
$filemanager-breadcrumb-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
33946
34863
|
$filemanager-breadcrumb-border-width: $filemanager-border-width !default;
|
|
33947
34864
|
$filemanager-breadcrumb-bg: $toolbar-bg !default;
|
|
33948
34865
|
$filemanager-breadcrumb-text: null !default;
|
|
@@ -33952,8 +34869,8 @@ $filemanager-listview-bg: null !default;
|
|
|
33952
34869
|
$filemanager-listview-text: null !default;
|
|
33953
34870
|
$filemanager-listview-border: null !default;
|
|
33954
34871
|
|
|
33955
|
-
$filemanager-listview-item-padding-x: map-get( $spacing, 4 ) !default;
|
|
33956
|
-
$filemanager-listview-item-padding-y: map-get( $spacing, 4 ) !default;
|
|
34872
|
+
$filemanager-listview-item-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
34873
|
+
$filemanager-listview-item-padding-y: k-map-get( $spacing, 4 ) !default;
|
|
33957
34874
|
$filemanager-listview-item-width: 120px !default;
|
|
33958
34875
|
$filemanager-listview-item-height: 120px !default;
|
|
33959
34876
|
$filemanager-listview-item-bg: null !default;
|
|
@@ -33962,7 +34879,7 @@ $filemanager-listview-item-border: null !default;
|
|
|
33962
34879
|
|
|
33963
34880
|
$filemanager-listview-item-icon-size: ($icon-size * 3) !default;
|
|
33964
34881
|
$filemanager-listview-item-icon-bg: null !default;
|
|
33965
|
-
$filemanager-listview-item-icon-text: try-tint($filemanager-text, 4) !default;
|
|
34882
|
+
$filemanager-listview-item-icon-text: k-try-tint($filemanager-text, 4) !default;
|
|
33966
34883
|
$filemanager-listview-item-icon-border: null !default;
|
|
33967
34884
|
$filemanager-listview-item-icon-selected-bg: null !default;
|
|
33968
34885
|
$filemanager-listview-item-icon-selected-text: inherit !default;
|
|
@@ -33983,7 +34900,7 @@ $filemanager-preview-border: null !default;
|
|
|
33983
34900
|
|
|
33984
34901
|
$filemanager-preview-icon-size: ($icon-size * 6) !default;
|
|
33985
34902
|
$filemanager-preview-icon-bg: null !default;
|
|
33986
|
-
$filemanager-preview-icon-text: try-tint($filemanager-text, 4) !default;
|
|
34903
|
+
$filemanager-preview-icon-text: k-try-tint($filemanager-text, 4) !default;
|
|
33987
34904
|
$filemanager-preview-icon-border: null !default;
|
|
33988
34905
|
|
|
33989
34906
|
// #endregion
|
|
@@ -34386,7 +35303,7 @@ $filemanager-preview-icon-border: null !default;
|
|
|
34386
35303
|
// Component
|
|
34387
35304
|
// #region @import "_variables.scss"; -> packages/classic/scss/taskboard/_variables.scss
|
|
34388
35305
|
// TaskBoard
|
|
34389
|
-
$taskboard-spacer: map-get( $spacing, 4 ) !default;
|
|
35306
|
+
$taskboard-spacer: k-map-get( $spacing, 4 ) !default;
|
|
34390
35307
|
$taskboard-padding-y: null !default;
|
|
34391
35308
|
$taskboard-padding-x: null !default;
|
|
34392
35309
|
$taskboard-font-family: $font-family !default;
|
|
@@ -34406,9 +35323,9 @@ $taskboard-toolbar-gradient: null !default;
|
|
|
34406
35323
|
$taskboard-content-padding-y: $taskboard-spacer !default;
|
|
34407
35324
|
$taskboard-content-padding-x: $taskboard-content-padding-y !default;
|
|
34408
35325
|
|
|
34409
|
-
$taskboard-column-container-spacing-y: ( $taskboard-spacer
|
|
35326
|
+
$taskboard-column-container-spacing-y: k-math-div( $taskboard-spacer, 2 ) !default;
|
|
34410
35327
|
$taskboard-column-container-padding-y: 0px !default;
|
|
34411
|
-
$taskboard-column-container-padding-x: ( $taskboard-spacer
|
|
35328
|
+
$taskboard-column-container-padding-x: k-math-div( $taskboard-spacer, 2 ) !default;
|
|
34412
35329
|
$taskboard-columns-container-gap: $taskboard-spacer !default;
|
|
34413
35330
|
|
|
34414
35331
|
$taskboard-column-width: 320px !default;
|
|
@@ -34420,18 +35337,18 @@ $taskboard-column-border: transparent !default;
|
|
|
34420
35337
|
|
|
34421
35338
|
$taskboard-column-focus-bg: null !default;
|
|
34422
35339
|
$taskboard-column-focus-text: null !default;
|
|
34423
|
-
$taskboard-column-focus-border: try-shade( $base-border, 2.5 ) !default;
|
|
35340
|
+
$taskboard-column-focus-border: k-try-shade( $base-border, 2.5 ) !default;
|
|
34424
35341
|
|
|
34425
|
-
$taskboard-column-header-padding-y: ( $taskboard-spacer
|
|
35342
|
+
$taskboard-column-header-padding-y: k-math-div( $taskboard-spacer, 2 ) !default;
|
|
34426
35343
|
$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
|
|
35344
|
+
$taskboard-column-header-gap: k-math-div( $taskboard-spacer, 4 ) !default;
|
|
35345
|
+
$taskboard-column-header-actions-gap: k-math-div( $taskboard-spacer, 2 ) !default;
|
|
34429
35346
|
$taskboard-column-header-font-weight: 500 !default;
|
|
34430
35347
|
$taskboard-column-header-text: $header-text !default;
|
|
34431
35348
|
|
|
34432
35349
|
$taskboard-column-cards-padding-y: null !default;
|
|
34433
35350
|
$taskboard-column-cards-padding-x: null !default;
|
|
34434
|
-
$taskboard-column-cards-gap: ( $taskboard-spacer
|
|
35351
|
+
$taskboard-column-cards-gap: k-math-div( $taskboard-spacer, 2 ) !default;
|
|
34435
35352
|
|
|
34436
35353
|
$taskboard-pane-width: $taskboard-column-width !default;
|
|
34437
35354
|
$taskboard-pane-padding-y: null !default;
|
|
@@ -34463,12 +35380,12 @@ $taskboard-card-shadow: $card-shadow !default;
|
|
|
34463
35380
|
|
|
34464
35381
|
$taskboard-card-category-border-width: 4px !default;
|
|
34465
35382
|
|
|
34466
|
-
$taskboard-card-focus-border: try-shade( $taskboard-card-border, 18% ) !default;
|
|
35383
|
+
$taskboard-card-focus-border: k-try-shade( $taskboard-card-border, 18% ) !default;
|
|
34467
35384
|
$taskboard-card-focus-shadow: none !default;
|
|
34468
35385
|
|
|
34469
|
-
$taskboard-card-hover-border: try-shade( $taskboard-card-border, 10% ) !default;
|
|
35386
|
+
$taskboard-card-hover-border: k-try-shade( $taskboard-card-border, 10% ) !default;
|
|
34470
35387
|
|
|
34471
|
-
$taskboard-card-selected-border: tint( $primary-lighter, 5 ) !default;
|
|
35388
|
+
$taskboard-card-selected-border: k-color-tint( $primary-lighter, 5 ) !default;
|
|
34472
35389
|
$taskboard-card-selected-shadow: none !default;
|
|
34473
35390
|
|
|
34474
35391
|
$taskboard-card-header-text: $primary !default;
|
|
@@ -34477,7 +35394,7 @@ $taskboard-card-header-hover-text: $primary-darker !default;
|
|
|
34477
35394
|
|
|
34478
35395
|
$taskboard-drag-placeholder-border-width: 1px !default;
|
|
34479
35396
|
$taskboard-drag-placeholder-border-radius: $taskboard-card-border-radius !default;
|
|
34480
|
-
$taskboard-drag-placeholder-bg: rgba(
|
|
35397
|
+
$taskboard-drag-placeholder-bg: rgba( white, .2 ) !default;
|
|
34481
35398
|
$taskboard-drag-placeholder-border: $component-border !default;
|
|
34482
35399
|
|
|
34483
35400
|
// #endregion
|
|
@@ -34897,7 +35814,7 @@ $editor-placeholder-opacity: $kendo-input-placeholder-opacity !default;
|
|
|
34897
35814
|
$editor-selected-text: $primary-contrast !default;
|
|
34898
35815
|
$editor-selected-bg: $primary !default;
|
|
34899
35816
|
|
|
34900
|
-
$editor-highlighted-bg: mix($primary, #ffffff, 20%) !default;
|
|
35817
|
+
$editor-highlighted-bg: k-color-mix( $primary, #ffffff, 20% ) !default;
|
|
34901
35818
|
|
|
34902
35819
|
$editor-export-tool-icon-margin-x: .25em !default;
|
|
34903
35820
|
|
|
@@ -35760,8 +36677,8 @@ $imageeditor-font-family: $font-family !default;
|
|
|
35760
36677
|
|
|
35761
36678
|
$imageeditor-content-border-width: 1px !default;
|
|
35762
36679
|
|
|
35763
|
-
$imageeditor-action-pane-padding-y: map-get( $spacing, 8 ) !default;
|
|
35764
|
-
$imageeditor-action-pane-padding-x: map-get( $spacing, 4 ) !default;
|
|
36680
|
+
$imageeditor-action-pane-padding-y: k-map-get( $spacing, 8 ) !default;
|
|
36681
|
+
$imageeditor-action-pane-padding-x: k-map-get( $spacing, 4 ) !default;
|
|
35765
36682
|
$imageeditor-action-pane-width: if( $imageeditor-content-border-width == null, 240px, calc(240px + #{$imageeditor-content-border-width}) );
|
|
35766
36683
|
|
|
35767
36684
|
$imageeditor-crop-border-width: 1px !default;
|
|
@@ -35788,7 +36705,7 @@ $imageeditor-crop-bg: null !default;
|
|
|
35788
36705
|
$imageeditor-crop-text: null !default;
|
|
35789
36706
|
$imageeditor-crop-border: white !default;
|
|
35790
36707
|
|
|
35791
|
-
$imageeditor-crop-overlay-bg: rgba(black, .3) !default;
|
|
36708
|
+
$imageeditor-crop-overlay-bg: rgba( black, .3 ) !default;
|
|
35792
36709
|
|
|
35793
36710
|
// #endregion
|
|
35794
36711
|
// #region @import "_layout.scss"; -> packages/classic/scss/imageeditor/_layout.scss
|
|
@@ -36077,12 +36994,12 @@ $gantt-treelist-bg: null !default;
|
|
|
36077
36994
|
$gantt-treelist-text: null !default;
|
|
36078
36995
|
$gantt-treelist-border: null !default;
|
|
36079
36996
|
|
|
36080
|
-
$gantt-nonwork-bg: rgba( contrast-
|
|
36997
|
+
$gantt-nonwork-bg: rgba( k-contrast-color( $gantt-bg ), .025 ) !default;
|
|
36081
36998
|
$gantt-nonwork-text: null !default;
|
|
36082
36999
|
$gantt-nonwork-border: null !default;
|
|
36083
37000
|
|
|
36084
37001
|
$gantt-line-size: 2px !default;
|
|
36085
|
-
$gantt-line-fill: contrast-
|
|
37002
|
+
$gantt-line-fill: k-contrast-color( $gantt-bg ) !default;
|
|
36086
37003
|
$gantt-line-selected-fill: $primary !default;
|
|
36087
37004
|
|
|
36088
37005
|
$gantt-dot-size: 8px !default;
|
|
@@ -36097,19 +37014,19 @@ $gantt-milestone-border: $gantt-border !default;
|
|
|
36097
37014
|
$gantt-milestone-selected-bg: $selected-bg !default;
|
|
36098
37015
|
$gantt-milestone-selected-border: $selected-border !default;
|
|
36099
37016
|
|
|
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;
|
|
37017
|
+
$gantt-summary-bg: k-try-tint( $gantt-text, 1 ) !default;
|
|
37018
|
+
$gantt-summary-progress-bg: k-try-shade( $gantt-text, 5 ) !default;
|
|
37019
|
+
$gantt-summary-selected-bg: k-try-tint( $selected-bg, 6 ) !default;
|
|
36103
37020
|
$gantt-summary-progress-selected-bg: $selected-bg !default;
|
|
36104
37021
|
|
|
36105
37022
|
$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-
|
|
37023
|
+
$gantt-task-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
37024
|
+
$gantt-task-padding-y: k-map-get( $spacing, 1 ) !default;
|
|
37025
|
+
$gantt-task-bg: k-try-tint( $gantt-text, 2 ) !default;
|
|
37026
|
+
$gantt-task-text: k-contrast-color( $gantt-text ) !default;
|
|
36110
37027
|
$gantt-task-border: null !default;
|
|
36111
37028
|
$gantt-task-progress-bg: $gantt-text !default;
|
|
36112
|
-
$gantt-task-selected-bg: try-tint( $selected-bg, 6 ) !default;
|
|
37029
|
+
$gantt-task-selected-bg: k-try-tint( $selected-bg, 6 ) !default;
|
|
36113
37030
|
$gantt-task-selected-text: $selected-text !default;
|
|
36114
37031
|
$gantt-task-selected-border: null !default;
|
|
36115
37032
|
$gantt-task-progress-selected-bg: $selected-bg !default;
|
|
@@ -36143,10 +37060,10 @@ $gantt-planned-bg: $primary !default;
|
|
|
36143
37060
|
$gantt-planned-border: $gantt-planned-bg !default;
|
|
36144
37061
|
|
|
36145
37062
|
$gantt-delayed-bg: $error !default;
|
|
36146
|
-
$gantt-delayed-bg-lighter: tint($gantt-delayed-bg, 5) !default;
|
|
37063
|
+
$gantt-delayed-bg-lighter: k-color-tint($gantt-delayed-bg, 5) !default;
|
|
36147
37064
|
|
|
36148
37065
|
$gantt-advanced-bg: $success !default;
|
|
36149
|
-
$gantt-advanced-bg-lighter: tint($gantt-advanced-bg, 5) !default;
|
|
37066
|
+
$gantt-advanced-bg-lighter: k-color-tint($gantt-advanced-bg, 5) !default;
|
|
36150
37067
|
|
|
36151
37068
|
$gantt-action-on-offset-text: #000000 !default;
|
|
36152
37069
|
$gantt-offset-resize-handler-top: 50% !default;
|
|
@@ -37381,7 +38298,7 @@ $scheduler-event-min-height: 25px !default;
|
|
|
37381
38298
|
$scheduler-event-border-radius: $kendo-border-radius-md !default;
|
|
37382
38299
|
$scheduler-event-line-height: calc( #{$scheduler-event-min-height} - (2 * #{$padding-y}) ) !default;
|
|
37383
38300
|
|
|
37384
|
-
$scheduler-event-bg: tint( $selected-bg, 2 ) !default;
|
|
38301
|
+
$scheduler-event-bg: k-color-tint( $selected-bg, 2 ) !default;
|
|
37385
38302
|
$scheduler-event-text: $selected-text !default;
|
|
37386
38303
|
$scheduler-event-border: null !default;
|
|
37387
38304
|
$scheduler-event-gradient: null !default;
|
|
@@ -37397,31 +38314,31 @@ $scheduler-event-selected-bg: $selected-bg !default;
|
|
|
37397
38314
|
$scheduler-event-selected-text: $selected-text !default;
|
|
37398
38315
|
$scheduler-event-selected-border: null !default;
|
|
37399
38316
|
$scheduler-event-selected-gradient: null !default;
|
|
37400
|
-
$scheduler-event-selected-shadow: inset 0 0 0 2px rgba(
|
|
38317
|
+
$scheduler-event-selected-shadow: inset 0 0 0 2px rgba( black, .13 ) !default;
|
|
37401
38318
|
|
|
37402
38319
|
$scheduler-event-ongoing-shadow: inset 0px 0px 0px 1px #ff0000 !default;
|
|
37403
38320
|
|
|
37404
|
-
$scheduler-cell-padding-x: map-get( $spacing, 2 ) !default;
|
|
37405
|
-
$scheduler-cell-padding-y: map-get( $spacing, 2 ) !default;
|
|
38321
|
+
$scheduler-cell-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
38322
|
+
$scheduler-cell-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
37406
38323
|
$scheduler-cell-height: $line-height-em !default;
|
|
37407
38324
|
$scheduler-datecolumn-width: 12em !default;
|
|
37408
38325
|
$scheduler-timecolumn-width: 11em !default;
|
|
37409
38326
|
|
|
37410
38327
|
$scheduler-current-time-color: #ff0000 !default;
|
|
37411
38328
|
|
|
37412
|
-
$scheduler-nonwork-bg: try-shade( $scheduler-bg, .5 ) !default;
|
|
38329
|
+
$scheduler-nonwork-bg: k-try-shade( $scheduler-bg, .5 ) !default;
|
|
37413
38330
|
$scheduler-nonwork-text: null !default;
|
|
37414
38331
|
|
|
37415
38332
|
$scheduler-weekend-bg: null !default;
|
|
37416
38333
|
$scheduler-weekend-text: null !default;
|
|
37417
38334
|
|
|
37418
|
-
$scheduler-othermonth-bg: try-shade( $scheduler-bg, .5 ) !default;
|
|
38335
|
+
$scheduler-othermonth-bg: k-try-shade( $scheduler-bg, .5 ) !default;
|
|
37419
38336
|
$scheduler-othermonth-text: null !default;
|
|
37420
38337
|
|
|
37421
|
-
$scheduler-yearview-padding-x: map-get( $spacing, 3 ) !default;
|
|
38338
|
+
$scheduler-yearview-padding-x: k-map-get( $spacing, 3 ) !default;
|
|
37422
38339
|
$scheduler-yearview-padding-y: $scheduler-yearview-padding-x !default;
|
|
37423
38340
|
|
|
37424
|
-
$scheduler-yearview-calendar-gap: map-get( $spacing, 3 ) !default;
|
|
38341
|
+
$scheduler-yearview-calendar-gap: k-map-get( $spacing, 3 ) !default;
|
|
37425
38342
|
|
|
37426
38343
|
$scheduler-yearview-indicator-size: 3px !default;
|
|
37427
38344
|
$scheduler-yearview-indicator-calc-offset-top: calc( #{$calendar-cell-size} - (#{$calendar-cell-padding-y} * 2)) !default;
|
|
@@ -37436,7 +38353,7 @@ $scheduler-tooltip-border-width: 0 !default;
|
|
|
37436
38353
|
$scheduler-tooltip-bg: $primary-contrast !default;
|
|
37437
38354
|
$scheduler-tooltip-text: $base-text !default;
|
|
37438
38355
|
$scheduler-tooltip-border: null !default;
|
|
37439
|
-
$scheduler-tooltip-shadow: 0px 0px 10px rgba(
|
|
38356
|
+
$scheduler-tooltip-shadow: 0px 0px 10px rgba( black, .2 ) !default;
|
|
37440
38357
|
|
|
37441
38358
|
$scheduler-tooltip-title-margin-y: $padding-y !default;
|
|
37442
38359
|
$scheduler-tooltip-month-font-size: $font-size-sm !default;
|
|
@@ -38916,9 +39833,9 @@ $chat-border: $app-border !default;
|
|
|
38916
39833
|
$chat-bubble-bg: $component-bg !default;
|
|
38917
39834
|
$chat-bubble-text: $component-text !default;
|
|
38918
39835
|
$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(
|
|
39836
|
+
$chat-bubble-shadow: 0 1px 2px rgba( black, .08 ) !default;
|
|
39837
|
+
$chat-bubble-hover-shadow: 0 1px 2px rgba( black, .16 ) !default;
|
|
39838
|
+
$chat-bubble-selected-shadow: 0 3px 10px rgba( black, .16 ) !default;
|
|
38922
39839
|
|
|
38923
39840
|
$chat-alt-bubble-bg: $primary !default;
|
|
38924
39841
|
$chat-alt-bubble-text: contrast-wcag( $chat-alt-bubble-bg ) !default;
|
|
@@ -39625,8 +40542,8 @@ $mediaplayer-bg: $component-bg !default;
|
|
|
39625
40542
|
$mediaplayer-text: $component-text !default;
|
|
39626
40543
|
$mediaplayer-border: $component-border !default;
|
|
39627
40544
|
|
|
39628
|
-
$mediaplayer-titlebar-padding-x: map-get( $spacing, 2 ) !default;
|
|
39629
|
-
$mediaplayer-titlebar-padding-y: map-get( $spacing, 2 ) !default;
|
|
40545
|
+
$mediaplayer-titlebar-padding-x: k-map-get( $spacing, 2 ) !default;
|
|
40546
|
+
$mediaplayer-titlebar-padding-y: k-map-get( $spacing, 2 ) !default;
|
|
39630
40547
|
$mediaplayer-titlebar-bg: null !default;
|
|
39631
40548
|
$mediaplayer-titlebar-text: $mediaplayer-bg !default;
|
|
39632
40549
|
$mediaplayer-titlebar-border: null !default;
|
|
@@ -39811,9 +40728,9 @@ $timeline-mobile-spacing-y: 16px !default;
|
|
|
39811
40728
|
$timeline-track-arrow-width: 30px !default;
|
|
39812
40729
|
$timeline-track-arrow-height: 30px !default;
|
|
39813
40730
|
|
|
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;
|
|
40731
|
+
$timeline-track-arrow-disabled-text: k-true-mix( $kendo-button-text, $body-bg, 65% ) !default;
|
|
40732
|
+
$timeline-track-arrow-disabled-bg: k-true-mix( $kendo-button-bg, $body-bg, 65% ) !default;
|
|
40733
|
+
$timeline-track-arrow-disabled-border: k-true-mix( #000000, $body-bg, 4.8% ) !default;
|
|
39817
40734
|
|
|
39818
40735
|
$timeline-track-size: 6px !default;
|
|
39819
40736
|
$timeline-track-wrap-padding-bottom: $timeline-track-size / 2 !default;
|
|
@@ -39825,7 +40742,7 @@ $timeline-track-end-calc: calc(#{$timeline-track-arrow-width} - 2 * #{$timeline-
|
|
|
39825
40742
|
$timeline-track-bg: $kendo-button-bg !default;
|
|
39826
40743
|
$timeline-track-border-color: $kendo-button-border !default;
|
|
39827
40744
|
|
|
39828
|
-
$timeline-track-item-focus-shadow: 0 3px 4px 0 rgba($primary, .4) !default;
|
|
40745
|
+
$timeline-track-item-focus-shadow: 0 3px 4px 0 rgba( $primary, .4 ) !default;
|
|
39829
40746
|
|
|
39830
40747
|
$timeline-track-event-offset: 36px !default;
|
|
39831
40748
|
|
|
@@ -40441,10 +41358,10 @@ $pdf-viewer-page-spacing: 30px !default;
|
|
|
40441
41358
|
$pdf-viewer-page-bg: white !default;
|
|
40442
41359
|
$pdf-viewer-page-text: $component-text !default;
|
|
40443
41360
|
$pdf-viewer-page-border: $component-border !default;
|
|
40444
|
-
$pdf-viewer-page-shadow: 0 0 ($pdf-viewer-page-spacing
|
|
41361
|
+
$pdf-viewer-page-shadow: 0 0 k-math-div( $pdf-viewer-page-spacing, 2 ) $pdf-viewer-page-border !default;
|
|
40445
41362
|
|
|
40446
41363
|
$pdf-viewer-search-panel-border-width: 1px !default;
|
|
40447
|
-
$pdf-viewer-search-panel-border-radius: map-get( $spacing, 1 ) !default;
|
|
41364
|
+
$pdf-viewer-search-panel-border-radius: k-map-get( $spacing, 1 ) !default;
|
|
40448
41365
|
$pdf-viewer-search-panel-bg: $component-bg !default;
|
|
40449
41366
|
$pdf-viewer-search-panel-text: $component-text !default;
|
|
40450
41367
|
$pdf-viewer-search-panel-border: $component-border !default;
|
|
@@ -40452,7 +41369,7 @@ $pdf-viewer-search-panel-shadow: $window-shadow !default;
|
|
|
40452
41369
|
$pdf-viewer-search-panel-matches-spacing: $padding-x-sm !default;
|
|
40453
41370
|
|
|
40454
41371
|
$pdf-viewer-search-dialog-padding-x: $toolbar-padding-x !default;
|
|
40455
|
-
$pdf-viewer-search-dialog-padding-y: map-get( $spacing, 3 ) !default;
|
|
41372
|
+
$pdf-viewer-search-dialog-padding-y: k-map-get( $spacing, 3 ) !default;
|
|
40456
41373
|
$pdf-viewer-search-dialog-spacing: $toolbar-spacing !default;
|
|
40457
41374
|
|
|
40458
41375
|
$pdf-viewer-selection-line-height: $line-height-sm !default;
|
|
@@ -40888,8 +41805,8 @@ $scrollview-pagebutton-size: 10px !default;
|
|
|
40888
41805
|
$scrollview-pagebutton-bg: $kendo-button-bg !default;
|
|
40889
41806
|
$scrollview-pagebutton-border: $kendo-button-border !default;
|
|
40890
41807
|
$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(
|
|
41808
|
+
$scrollview-pagebutton-primary-border: k-try-shade( $primary, 2 ) !default;
|
|
41809
|
+
$scrollview-pagebutton-shadow: 0 0 0 2px rgba( black, .13 ) !default;
|
|
40893
41810
|
|
|
40894
41811
|
$scrollview-pager-offset: 0 !default;
|
|
40895
41812
|
$scrollview-pager-item-spacing: 20px !default;
|
|
@@ -40903,14 +41820,14 @@ $scrollview-pager-multidot-step: 1px !default;
|
|
|
40903
41820
|
$scrollview-arrow-icon-size: 4.5em !default;
|
|
40904
41821
|
$scrollview-arrow-tap-highlight-color: $rgba-transparent !default;
|
|
40905
41822
|
$scrollview-navigation-color: white !default;
|
|
40906
|
-
$scrollview-navigation-icon-shadow: rgba(
|
|
40907
|
-
$scrollview-navigation-bg: rgba(
|
|
41823
|
+
$scrollview-navigation-icon-shadow: rgba( black, .3 ) 0 0 15px !default;
|
|
41824
|
+
$scrollview-navigation-bg: rgba( black, 0 ) !default;
|
|
40908
41825
|
$scrollview-navigation-default-opacity: .7 !default;
|
|
40909
41826
|
$scrollview-navigation-hover-opacity: 1 !default;
|
|
40910
41827
|
$scrollview-navigation-hover-span-bg: null !default;
|
|
40911
41828
|
|
|
40912
|
-
$scrollview-light-bg: rgba(
|
|
40913
|
-
$scrollview-dark-bg: rgba(
|
|
41829
|
+
$scrollview-light-bg: rgba( white, .4 ) !default;
|
|
41830
|
+
$scrollview-dark-bg: rgba( black, .4 ) !default;
|
|
40914
41831
|
|
|
40915
41832
|
$scrollview-transition-duration: .3s !default;
|
|
40916
41833
|
$scrollview-transition-timing-function: ease-in-out !default;
|
|
@@ -41255,50 +42172,50 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
41255
42172
|
/// The first base series color and its light and dark shades.
|
|
41256
42173
|
/// @group charts
|
|
41257
42174
|
$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;
|
|
42175
|
+
$series-a-dark: k-color-mix( black, $series-a, 25% ) !default;
|
|
42176
|
+
$series-a-darker: k-color-mix( black, $series-a, 50% ) !default;
|
|
42177
|
+
$series-a-light: k-color-mix( white, $series-a, 25% ) !default;
|
|
42178
|
+
$series-a-lighter: k-color-mix( white, $series-a, 50% ) !default;
|
|
41262
42179
|
|
|
41263
42180
|
/// The second base series color and its light and dark shades.
|
|
41264
42181
|
/// @group charts
|
|
41265
42182
|
$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;
|
|
42183
|
+
$series-b-dark: k-color-mix( black, $series-b, 25% ) !default;
|
|
42184
|
+
$series-b-darker: k-color-mix( black, $series-b, 50% ) !default;
|
|
42185
|
+
$series-b-light: k-color-mix( white, $series-b, 25% ) !default;
|
|
42186
|
+
$series-b-lighter: k-color-mix( white, $series-b, 50% ) !default;
|
|
41270
42187
|
|
|
41271
42188
|
/// The third base series color and its light and dark shades.
|
|
41272
42189
|
/// @group charts
|
|
41273
42190
|
$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;
|
|
42191
|
+
$series-c-dark: k-color-mix( black, $series-c, 25% ) !default;
|
|
42192
|
+
$series-c-darker: k-color-mix( black, $series-c, 50% ) !default;
|
|
42193
|
+
$series-c-light: k-color-mix( white, $series-c, 25% ) !default;
|
|
42194
|
+
$series-c-lighter: k-color-mix( white, $series-c, 50% ) !default;
|
|
41278
42195
|
|
|
41279
42196
|
/// The fourth base series color and its light and dark shades.
|
|
41280
42197
|
/// @group charts
|
|
41281
42198
|
$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;
|
|
42199
|
+
$series-d-dark: k-color-mix( black, $series-d, 25% ) !default;
|
|
42200
|
+
$series-d-darker: k-color-mix( black, $series-d, 50% ) !default;
|
|
42201
|
+
$series-d-light: k-color-mix( white, $series-d, 25% ) !default;
|
|
42202
|
+
$series-d-lighter: k-color-mix( white, $series-d, 50% ) !default;
|
|
41286
42203
|
|
|
41287
42204
|
/// The fifth base series color and its light and dark shades.
|
|
41288
42205
|
/// @group charts
|
|
41289
42206
|
$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;
|
|
42207
|
+
$series-e-dark: k-color-mix( black, $series-e, 25% ) !default;
|
|
42208
|
+
$series-e-darker: k-color-mix( black, $series-e, 50% ) !default;
|
|
42209
|
+
$series-e-light: k-color-mix( white, $series-e, 25% ) !default;
|
|
42210
|
+
$series-e-lighter: k-color-mix( white, $series-e, 50% ) !default;
|
|
41294
42211
|
|
|
41295
42212
|
/// The sixth base series color and its light and dark shades.
|
|
41296
42213
|
/// @group charts
|
|
41297
42214
|
$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;
|
|
42215
|
+
$series-f-dark: k-color-mix( black, $series-f, 25% ) !default;
|
|
42216
|
+
$series-f-darker: k-color-mix( black, $series-f, 50% ) !default;
|
|
42217
|
+
$series-f-light: k-color-mix( white, $series-f, 25% ) !default;
|
|
42218
|
+
$series-f-lighter: k-color-mix( white, $series-f, 50% ) !default;
|
|
41302
42219
|
|
|
41303
42220
|
/// The series colors in order:
|
|
41304
42221
|
/// base, light, dark, lighter, darker
|
|
@@ -41367,7 +42284,7 @@ $chart-border: $component-border !default;
|
|
|
41367
42284
|
|
|
41368
42285
|
$chart-crosshair-background: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
41369
42286
|
$chart-crosshair-shared-tooltip-color: $chart-text !default;
|
|
41370
|
-
$chart-crosshair-shared-tooltip-background: try-shade( $chart-bg, 1 ) !default;
|
|
42287
|
+
$chart-crosshair-shared-tooltip-background: k-try-shade( $chart-bg, 1 ) !default;
|
|
41371
42288
|
$chart-crosshair-shared-tooltip-border: rgba( if( $dark-theme, $white, $black ), .08) !default;
|
|
41372
42289
|
|
|
41373
42290
|
$chart-notes-background: rgba( if( $dark-theme, $white, $black ), .5 ) !default;
|
|
@@ -42319,7 +43236,7 @@ $map-marker-fill: $primary !default;
|
|
|
42319
43236
|
// Component
|
|
42320
43237
|
// #region @import "_variables.scss"; -> packages/classic/scss/orgchart/_variables.scss
|
|
42321
43238
|
// Orgchart
|
|
42322
|
-
$orgchart-spacer: map-get( $spacing, 6 ) !default;
|
|
43239
|
+
$orgchart-spacer: k-map-get( $spacing, 6 ) !default;
|
|
42323
43240
|
$orgchart-padding-y: $orgchart-spacer !default;
|
|
42324
43241
|
$orgchart-padding-x: $orgchart-padding-y !default;
|
|
42325
43242
|
$orgchart-font-family: $font-family !default;
|
|
@@ -42566,10 +43483,10 @@ $kendo-signature-lg-min-height: 110px;
|
|
|
42566
43483
|
$kendo-signature-maximized-width: 750px !default;
|
|
42567
43484
|
$kendo-signature-maximized-height: 252px !default;
|
|
42568
43485
|
|
|
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;
|
|
43486
|
+
$kendo-signature-padding-x: k-map-get( $spacing, 1 ) !default;
|
|
43487
|
+
$kendo-signature-padding-x-sm: k-map-get( $spacing, 1 ) - k-map-get( $spacing, thin ) !default;
|
|
42571
43488
|
$kendo-signature-padding-x-md: $kendo-signature-padding-x !default;
|
|
42572
|
-
$kendo-signature-padding-x-lg: map-get( $spacing, 2 ) !default;
|
|
43489
|
+
$kendo-signature-padding-x-lg: k-map-get( $spacing, 2 ) !default;
|
|
42573
43490
|
|
|
42574
43491
|
$kendo-signature-padding-y: $kendo-signature-padding-x !default;
|
|
42575
43492
|
$kendo-signature-padding-y-sm: $kendo-signature-padding-x-sm !default;
|
|
@@ -42605,8 +43522,8 @@ $kendo-signature-sizes: (
|
|
|
42605
43522
|
)
|
|
42606
43523
|
) !default;
|
|
42607
43524
|
|
|
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;
|
|
43525
|
+
$kendo-signature-actions-gap: k-map-get( $spacing, 1 ) !default;
|
|
43526
|
+
$kendo-signature-maximized-line-width: k-map-get( $spacing, 1 ) - k-map-get( $spacing, hair ) !default;
|
|
42610
43527
|
|
|
42611
43528
|
// #endregion
|
|
42612
43529
|
// #region @import "_layout.scss"; -> packages/classic/scss/signature/_layout.scss
|
|
@@ -42648,6 +43565,7 @@ $kendo-signature-maximized-line-width: map-get( $spacing, 1 ) - map-get( $spacin
|
|
|
42648
43565
|
height: 100%;
|
|
42649
43566
|
display: block;
|
|
42650
43567
|
z-index: 1;
|
|
43568
|
+
outline: none;
|
|
42651
43569
|
}
|
|
42652
43570
|
|
|
42653
43571
|
.k-signature-line {
|