@progress/kendo-theme-classic 6.2.1-dev.0 → 6.2.1-dev.8
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 +4682 -407
- package/dist/all.scss +1208 -420
- package/dist/meta/sassdoc-data.json +18261 -9345
- package/dist/meta/sassdoc-raw-data.json +7891 -3766
- package/dist/meta/variables.json +201 -129
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.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/lib/swatches/classic-uniform.json +1 -1
- package/package.json +5 -5
- package/scss/button/_variables.scss +89 -62
- package/scss/checkbox/_variables.scss +83 -53
- package/scss/chip/_variables.scss +54 -30
- package/scss/input/_variables.scss +276 -46
- package/scss/list/_variables.scss +41 -40
- package/scss/radio/_variables.scss +77 -45
- package/scss/split-button/_variables.scss +15 -3
- package/scss/switch/_variables.scss +57 -56
package/dist/all.scss
CHANGED
|
@@ -1277,6 +1277,30 @@ $_kendo-escape-class-name: (
|
|
|
1277
1277
|
@return map-values( $map );
|
|
1278
1278
|
}
|
|
1279
1279
|
|
|
1280
|
+
/// Returns negative values of a number or numbers in a list.
|
|
1281
|
+
/// @param {Map} $map - The map to get the values from.
|
|
1282
|
+
/// @return {Map} - A comma separated list of the values in `$map`.
|
|
1283
|
+
///
|
|
1284
|
+
/// @example scss - Usage
|
|
1285
|
+
/// @debug k-map-negate( ( 0: 0, 1: 1px, 2: 2px ) ); // => ("-1": -1px, "-2": -2px)
|
|
1286
|
+
@function k-map-negate($map) {
|
|
1287
|
+
$_map-neg: ();
|
|
1288
|
+
|
|
1289
|
+
@if( k-meta-type-of($map) != map ) {
|
|
1290
|
+
@error "expected type of #{$map} is map, was #{k-meta-type-of($map)}";
|
|
1291
|
+
};
|
|
1292
|
+
@each $key, $value in $map {
|
|
1293
|
+
$_key-neg: "-" + $key;
|
|
1294
|
+
|
|
1295
|
+
@if( k-meta-type-of($value) == number and $value != 0) {
|
|
1296
|
+
$_map-neg: k-map-set($_map-neg, $_key-neg, -1 * $value );
|
|
1297
|
+
}
|
|
1298
|
+
}
|
|
1299
|
+
|
|
1300
|
+
@return $_map-neg;
|
|
1301
|
+
|
|
1302
|
+
}
|
|
1303
|
+
|
|
1280
1304
|
// #endregion
|
|
1281
1305
|
// #region @import "./_meta.import.scss"; -> node_modules/@progress/kendo-theme-core/scss/functions/_meta.import.scss
|
|
1282
1306
|
// Adapted from https://css-tricks.com/snippets/sass/advanced-type-checking/
|
|
@@ -5471,14 +5495,32 @@ $kendo-utils: (
|
|
|
5471
5495
|
video: k-string-unquote("16 / 9")
|
|
5472
5496
|
),
|
|
5473
5497
|
"container": (),
|
|
5474
|
-
"columns": (
|
|
5498
|
+
"columns": (
|
|
5499
|
+
1: 1,
|
|
5500
|
+
2: 2,
|
|
5501
|
+
3: 3,
|
|
5502
|
+
4: 4,
|
|
5503
|
+
5: 5,
|
|
5504
|
+
6: 6,
|
|
5505
|
+
7: 7,
|
|
5506
|
+
8: 8,
|
|
5507
|
+
9: 9,
|
|
5508
|
+
10: 10,
|
|
5509
|
+
11: 11,
|
|
5510
|
+
12: 12,
|
|
5511
|
+
auto: auto
|
|
5512
|
+
),
|
|
5475
5513
|
"break-after": (),
|
|
5476
5514
|
"break-before": (),
|
|
5477
5515
|
"break-inside": (),
|
|
5478
5516
|
"box-decoration-break": (),
|
|
5479
|
-
"box-sizing": (
|
|
5517
|
+
"box-sizing": (
|
|
5518
|
+
border: border-box,
|
|
5519
|
+
content: content-box
|
|
5520
|
+
),
|
|
5480
5521
|
"display": (
|
|
5481
5522
|
none,
|
|
5523
|
+
contents,
|
|
5482
5524
|
block,
|
|
5483
5525
|
inline,
|
|
5484
5526
|
inline-block,
|
|
@@ -5488,6 +5530,8 @@ $kendo-utils: (
|
|
|
5488
5530
|
inline-grid,
|
|
5489
5531
|
table,
|
|
5490
5532
|
inline-table,
|
|
5533
|
+
table-row,
|
|
5534
|
+
table-cell,
|
|
5491
5535
|
list-item
|
|
5492
5536
|
),
|
|
5493
5537
|
"float": (
|
|
@@ -5502,26 +5546,37 @@ $kendo-utils: (
|
|
|
5502
5546
|
none
|
|
5503
5547
|
),
|
|
5504
5548
|
"isolation": (),
|
|
5505
|
-
"object-fit": (
|
|
5506
|
-
|
|
5549
|
+
"object-fit": (
|
|
5550
|
+
contain,
|
|
5551
|
+
cover,
|
|
5552
|
+
fill,
|
|
5553
|
+
scale-down,
|
|
5554
|
+
initial,
|
|
5555
|
+
none
|
|
5556
|
+
),
|
|
5557
|
+
"object-position": (
|
|
5558
|
+
center: center,
|
|
5559
|
+
top: top,
|
|
5560
|
+
right: right,
|
|
5561
|
+
bottom: bottom,
|
|
5562
|
+
left: left,
|
|
5563
|
+
top-left: top left,
|
|
5564
|
+
top-right: top right,
|
|
5565
|
+
bottom-left: bottom left,
|
|
5566
|
+
bottom-right: bottom right
|
|
5567
|
+
),
|
|
5507
5568
|
"overflow": (
|
|
5508
5569
|
auto: auto,
|
|
5509
5570
|
hidden: hidden,
|
|
5510
5571
|
visible: visible,
|
|
5511
5572
|
scroll: scroll,
|
|
5512
|
-
clip: clip
|
|
5513
|
-
x-auto: auto,
|
|
5514
|
-
x-hidden: hidden,
|
|
5515
|
-
x-visible: visible,
|
|
5516
|
-
x-scroll: scroll,
|
|
5517
|
-
x-clip: clip,
|
|
5518
|
-
y-auto: auto,
|
|
5519
|
-
y-hidden: hidden,
|
|
5520
|
-
y-visible: visible,
|
|
5521
|
-
y-scroll: scroll,
|
|
5522
|
-
y-clip: clip
|
|
5573
|
+
clip: clip
|
|
5523
5574
|
),
|
|
5524
5575
|
"overscroll": (),
|
|
5576
|
+
"placement": k-map-merge( $kendo-spacing, (
|
|
5577
|
+
// sass-lint:disable-block indentation
|
|
5578
|
+
-1: -1px
|
|
5579
|
+
)),
|
|
5525
5580
|
"position": (
|
|
5526
5581
|
static,
|
|
5527
5582
|
relative,
|
|
@@ -5535,8 +5590,9 @@ $kendo-utils: (
|
|
|
5535
5590
|
-1: -1px
|
|
5536
5591
|
),
|
|
5537
5592
|
"visibility": (
|
|
5538
|
-
visible,
|
|
5539
|
-
hidden
|
|
5593
|
+
visible: visible,
|
|
5594
|
+
invisible: hidden,
|
|
5595
|
+
collapse: collapse
|
|
5540
5596
|
),
|
|
5541
5597
|
"zindex": (
|
|
5542
5598
|
0: 0,
|
|
@@ -5636,6 +5692,19 @@ $kendo-utils: (
|
|
|
5636
5692
|
11: 11,
|
|
5637
5693
|
12: 12,
|
|
5638
5694
|
13: 13,
|
|
5695
|
+
-1: -1,
|
|
5696
|
+
-2: -2,
|
|
5697
|
+
-3: -3,
|
|
5698
|
+
-4: -4,
|
|
5699
|
+
-5: -5,
|
|
5700
|
+
-6: -6,
|
|
5701
|
+
-7: -7,
|
|
5702
|
+
-8: -8,
|
|
5703
|
+
-9: -9,
|
|
5704
|
+
-10: -10,
|
|
5705
|
+
-11: -11,
|
|
5706
|
+
-12: -12,
|
|
5707
|
+
-13: -13,
|
|
5639
5708
|
auto: auto
|
|
5640
5709
|
),
|
|
5641
5710
|
"grid-column-end": (
|
|
@@ -5652,6 +5721,19 @@ $kendo-utils: (
|
|
|
5652
5721
|
11: 11,
|
|
5653
5722
|
12: 12,
|
|
5654
5723
|
13: 13,
|
|
5724
|
+
-1: -1,
|
|
5725
|
+
-2: -2,
|
|
5726
|
+
-3: -3,
|
|
5727
|
+
-4: -4,
|
|
5728
|
+
-5: -5,
|
|
5729
|
+
-6: -6,
|
|
5730
|
+
-7: -7,
|
|
5731
|
+
-8: -8,
|
|
5732
|
+
-9: -9,
|
|
5733
|
+
-10: -10,
|
|
5734
|
+
-11: -11,
|
|
5735
|
+
-12: -12,
|
|
5736
|
+
-13: -13,
|
|
5655
5737
|
auto: auto
|
|
5656
5738
|
),
|
|
5657
5739
|
"grid-column-span": (
|
|
@@ -5684,6 +5766,19 @@ $kendo-utils: (
|
|
|
5684
5766
|
11: 11,
|
|
5685
5767
|
12: 12,
|
|
5686
5768
|
13: 13,
|
|
5769
|
+
-1: -1,
|
|
5770
|
+
-2: -2,
|
|
5771
|
+
-3: -3,
|
|
5772
|
+
-4: -4,
|
|
5773
|
+
-5: -5,
|
|
5774
|
+
-6: -6,
|
|
5775
|
+
-7: -7,
|
|
5776
|
+
-8: -8,
|
|
5777
|
+
-9: -9,
|
|
5778
|
+
-10: -10,
|
|
5779
|
+
-11: -11,
|
|
5780
|
+
-12: -12,
|
|
5781
|
+
-13: -13,
|
|
5687
5782
|
auto: auto
|
|
5688
5783
|
),
|
|
5689
5784
|
"grid-row-end": (
|
|
@@ -5700,6 +5795,19 @@ $kendo-utils: (
|
|
|
5700
5795
|
11: 11,
|
|
5701
5796
|
12: 12,
|
|
5702
5797
|
13: 13,
|
|
5798
|
+
-1: -1,
|
|
5799
|
+
-2: -2,
|
|
5800
|
+
-3: -3,
|
|
5801
|
+
-4: -4,
|
|
5802
|
+
-5: -5,
|
|
5803
|
+
-6: -6,
|
|
5804
|
+
-7: -7,
|
|
5805
|
+
-8: -8,
|
|
5806
|
+
-9: -9,
|
|
5807
|
+
-10: -10,
|
|
5808
|
+
-11: -11,
|
|
5809
|
+
-12: -12,
|
|
5810
|
+
-13: -13,
|
|
5703
5811
|
auto: auto
|
|
5704
5812
|
),
|
|
5705
5813
|
"grid-row-span": (
|
|
@@ -5721,6 +5829,7 @@ $kendo-utils: (
|
|
|
5721
5829
|
"grid-auto-flow": (
|
|
5722
5830
|
row: row,
|
|
5723
5831
|
col: column,
|
|
5832
|
+
dense: dense,
|
|
5724
5833
|
row-dense: row dense,
|
|
5725
5834
|
col-dense: column dense,
|
|
5726
5835
|
unset: unset
|
|
@@ -5880,7 +5989,8 @@ $kendo-utils: (
|
|
|
5880
5989
|
),
|
|
5881
5990
|
|
|
5882
5991
|
// Spacing
|
|
5883
|
-
"margin": k-map-merge( $kendo-spacing,
|
|
5992
|
+
"margin": k-map-merge( $kendo-spacing,
|
|
5993
|
+
k-map-negate( $kendo-spacing), (
|
|
5884
5994
|
// sass-lint:disable-block indentation
|
|
5885
5995
|
// TODO: remove this extension once we fix docs
|
|
5886
5996
|
xs: k-map-get( $kendo-spacing, 1 ),
|
|
@@ -5889,7 +5999,8 @@ $kendo-utils: (
|
|
|
5889
5999
|
lg: k-map-get( $kendo-spacing, 4 ),
|
|
5890
6000
|
xl: k-map-get( $kendo-spacing, 6 ),
|
|
5891
6001
|
thin: k-map-get( $kendo-spacing, 0.5 ), // sass-lint:disable-line leading-zero
|
|
5892
|
-
hair: k-map-get( $kendo-spacing, 1px )
|
|
6002
|
+
hair: k-map-get( $kendo-spacing, 1px ),
|
|
6003
|
+
auto: auto
|
|
5893
6004
|
)),
|
|
5894
6005
|
"padding": k-map-merge( $kendo-spacing, (
|
|
5895
6006
|
// sass-lint:disable-block indentation
|
|
@@ -5970,13 +6081,19 @@ $kendo-utils: (
|
|
|
5970
6081
|
"font-variant-numeric": (),
|
|
5971
6082
|
"letter-spacing": (),
|
|
5972
6083
|
"line-height": (),
|
|
5973
|
-
"list-style-type": (
|
|
6084
|
+
"list-style-type": (
|
|
6085
|
+
none,
|
|
6086
|
+
disc,
|
|
6087
|
+
decimal
|
|
6088
|
+
),
|
|
5974
6089
|
"list-style-position": (),
|
|
5975
6090
|
"text-align": (
|
|
5976
6091
|
left,
|
|
5977
6092
|
right,
|
|
5978
6093
|
center,
|
|
5979
|
-
justify
|
|
6094
|
+
justify,
|
|
6095
|
+
start,
|
|
6096
|
+
end
|
|
5980
6097
|
),
|
|
5981
6098
|
"text-color": k-map-merge( $kendo-theme-colors, (
|
|
5982
6099
|
// sass-lint:disable-block indentation
|
|
@@ -5986,7 +6103,12 @@ $kendo-utils: (
|
|
|
5986
6103
|
"black": black,
|
|
5987
6104
|
"white": white
|
|
5988
6105
|
)),
|
|
5989
|
-
"text-decoration": (
|
|
6106
|
+
"text-decoration": (
|
|
6107
|
+
underline: underline,
|
|
6108
|
+
overline: overline,
|
|
6109
|
+
line-through: line-through,
|
|
6110
|
+
no-underline: none
|
|
6111
|
+
),
|
|
5990
6112
|
"text-decoration-width": (),
|
|
5991
6113
|
"text-decoration-style": (),
|
|
5992
6114
|
"text-decoration-color": (),
|
|
@@ -6002,7 +6124,16 @@ $kendo-utils: (
|
|
|
6002
6124
|
ellipsis: ellipsis
|
|
6003
6125
|
),
|
|
6004
6126
|
"text-indent": (),
|
|
6005
|
-
"vertical-align": (
|
|
6127
|
+
"vertical-align": (
|
|
6128
|
+
baseline,
|
|
6129
|
+
top,
|
|
6130
|
+
middle,
|
|
6131
|
+
bottom,
|
|
6132
|
+
text-top,
|
|
6133
|
+
text-bottom,
|
|
6134
|
+
sub,
|
|
6135
|
+
super
|
|
6136
|
+
),
|
|
6006
6137
|
"white-space": (
|
|
6007
6138
|
normal,
|
|
6008
6139
|
nowrap,
|
|
@@ -6014,6 +6145,12 @@ $kendo-utils: (
|
|
|
6014
6145
|
"word-break": (),
|
|
6015
6146
|
|
|
6016
6147
|
// Background
|
|
6148
|
+
"background-clip": (
|
|
6149
|
+
border: border-box,
|
|
6150
|
+
padding: padding-box,
|
|
6151
|
+
content: content-box,
|
|
6152
|
+
text: text
|
|
6153
|
+
),
|
|
6017
6154
|
"background-color": k-map-merge( $kendo-theme-colors, (
|
|
6018
6155
|
// sass-lint:disable-block indentation
|
|
6019
6156
|
"inherit": inherit,
|
|
@@ -6035,6 +6172,10 @@ $kendo-utils: (
|
|
|
6035
6172
|
dashed,
|
|
6036
6173
|
dotted,
|
|
6037
6174
|
double,
|
|
6175
|
+
// groove,
|
|
6176
|
+
// ridge,
|
|
6177
|
+
inset,
|
|
6178
|
+
outset,
|
|
6038
6179
|
hidden,
|
|
6039
6180
|
none
|
|
6040
6181
|
),
|
|
@@ -6059,13 +6200,20 @@ $kendo-utils: (
|
|
|
6059
6200
|
dashed,
|
|
6060
6201
|
dotted,
|
|
6061
6202
|
double,
|
|
6062
|
-
groove,
|
|
6063
|
-
ridge,
|
|
6203
|
+
// groove,
|
|
6204
|
+
// ridge,
|
|
6064
6205
|
inset,
|
|
6065
6206
|
outset,
|
|
6066
6207
|
none
|
|
6067
6208
|
),
|
|
6068
|
-
"outline-color": (
|
|
6209
|
+
"outline-color": k-map-merge( $kendo-theme-colors, (
|
|
6210
|
+
// sass-lint:disable-block indentation
|
|
6211
|
+
"inherit": inherit,
|
|
6212
|
+
"current": currentColor,
|
|
6213
|
+
"transparent": transparent,
|
|
6214
|
+
"black": black,
|
|
6215
|
+
"white": white
|
|
6216
|
+
)),
|
|
6069
6217
|
"outline-offset": (
|
|
6070
6218
|
0: 0,
|
|
6071
6219
|
1: 1px,
|
|
@@ -6075,8 +6223,32 @@ $kendo-utils: (
|
|
|
6075
6223
|
),
|
|
6076
6224
|
|
|
6077
6225
|
// Effects
|
|
6226
|
+
"box-shadow": (),
|
|
6227
|
+
"box-shadow-color": (),
|
|
6228
|
+
"opacity": (
|
|
6229
|
+
// sass-lint:disable-block leading-zero
|
|
6230
|
+
0: 0,
|
|
6231
|
+
5: 0.05,
|
|
6232
|
+
10: 0.1,
|
|
6233
|
+
20: 0.2,
|
|
6234
|
+
30: 0.3,
|
|
6235
|
+
40: 0.4,
|
|
6236
|
+
50: 0.5,
|
|
6237
|
+
60: 0.6,
|
|
6238
|
+
70: 0.7,
|
|
6239
|
+
80: 0.8,
|
|
6240
|
+
90: 0.9,
|
|
6241
|
+
100: 1
|
|
6242
|
+
),
|
|
6078
6243
|
|
|
6079
6244
|
// Filter
|
|
6245
|
+
"backdrop-blur": (
|
|
6246
|
+
DEFAULT: blur(8px),
|
|
6247
|
+
none: blur(0),
|
|
6248
|
+
sm: blur(4px),
|
|
6249
|
+
md: blur(6px),
|
|
6250
|
+
lg: blur(12px)
|
|
6251
|
+
),
|
|
6080
6252
|
|
|
6081
6253
|
// Table
|
|
6082
6254
|
"border-collapse": (
|
|
@@ -6243,6 +6415,14 @@ $kendo-utils: (
|
|
|
6243
6415
|
scroll: scroll-position,
|
|
6244
6416
|
contents: contents,
|
|
6245
6417
|
transform: transform
|
|
6418
|
+
),
|
|
6419
|
+
"fill-stroke": (
|
|
6420
|
+
none: none,
|
|
6421
|
+
inherit: inherit,
|
|
6422
|
+
current: currentColor,
|
|
6423
|
+
"transparent": transparent,
|
|
6424
|
+
"black": black,
|
|
6425
|
+
"white": white
|
|
6246
6426
|
)
|
|
6247
6427
|
) !default;
|
|
6248
6428
|
|
|
@@ -6358,6 +6538,18 @@ $kendo-utils: (
|
|
|
6358
6538
|
|
|
6359
6539
|
}
|
|
6360
6540
|
|
|
6541
|
+
// #endregion
|
|
6542
|
+
// #region @import "./_box-sizing.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_box-sizing.scss
|
|
6543
|
+
// TODO: docs
|
|
6544
|
+
|
|
6545
|
+
@mixin kendo-utils--layout--box-sizing() {
|
|
6546
|
+
|
|
6547
|
+
// box-sizing utility classes
|
|
6548
|
+
$kendo-utils-box-sizing: k-map-get( $kendo-utils, "box-sizing" ) !default;
|
|
6549
|
+
@include generate-utils( box-sizing, box-sizing, $kendo-utils-box-sizing );
|
|
6550
|
+
|
|
6551
|
+
}
|
|
6552
|
+
|
|
6361
6553
|
// #endregion
|
|
6362
6554
|
// #region @import "./_clear.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_clear.scss
|
|
6363
6555
|
// Clear documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/clear.
|
|
@@ -6390,6 +6582,83 @@ $kendo-utils: (
|
|
|
6390
6582
|
|
|
6391
6583
|
}
|
|
6392
6584
|
|
|
6585
|
+
// #endregion
|
|
6586
|
+
// #region @import "./_columns.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_columns.scss
|
|
6587
|
+
// Columns documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/columns.
|
|
6588
|
+
|
|
6589
|
+
/// This is equivalent to `columns: 1;`. Element's content is displayed into 1 column.
|
|
6590
|
+
/// @name .k-columns-1
|
|
6591
|
+
/// @group columns
|
|
6592
|
+
/// @contextType css
|
|
6593
|
+
|
|
6594
|
+
/// This is equivalent to `columns: 2;`. Element's content is broken into 2 columns.
|
|
6595
|
+
/// @name .k-columns-2
|
|
6596
|
+
/// @group columns
|
|
6597
|
+
/// @contextType css
|
|
6598
|
+
|
|
6599
|
+
/// This is equivalent to `columns: 3;`. Element's content is broken into 3 columns.
|
|
6600
|
+
/// @name .k-columns-3
|
|
6601
|
+
/// @group columns
|
|
6602
|
+
/// @contextType css
|
|
6603
|
+
|
|
6604
|
+
/// This is equivalent to `columns: 4;`. Element's content is broken into 4 columns.
|
|
6605
|
+
/// @name .k-columns-4
|
|
6606
|
+
/// @group columns
|
|
6607
|
+
/// @contextType css
|
|
6608
|
+
|
|
6609
|
+
/// This is equivalent to `columns: 5;`. Element's content is broken into 5 columns.
|
|
6610
|
+
/// @name .k-columns-5
|
|
6611
|
+
/// @group columns
|
|
6612
|
+
/// @contextType css
|
|
6613
|
+
|
|
6614
|
+
/// This is equivalent to `columns: 6;`. Element's content is broken into 6 columns.
|
|
6615
|
+
/// @name .k-columns-6
|
|
6616
|
+
/// @group columns
|
|
6617
|
+
/// @contextType css
|
|
6618
|
+
|
|
6619
|
+
/// This is equivalent to `columns: 7;`. Element's content is broken into 7 columns.
|
|
6620
|
+
/// @name .k-columns-7
|
|
6621
|
+
/// @group columns
|
|
6622
|
+
/// @contextType css
|
|
6623
|
+
|
|
6624
|
+
/// This is equivalent to `columns: 8;`. Element's content is broken into 8 columns.
|
|
6625
|
+
/// @name .k-columns-8
|
|
6626
|
+
/// @group columns
|
|
6627
|
+
/// @contextType css
|
|
6628
|
+
|
|
6629
|
+
/// This is equivalent to `columns: 9;`. Element's content is broken into 9 columns.
|
|
6630
|
+
/// @name .k-columns-9
|
|
6631
|
+
/// @group columns
|
|
6632
|
+
/// @contextType css
|
|
6633
|
+
|
|
6634
|
+
/// This is equivalent to `columns: 10;`. Element's content is broken into 10 columns.
|
|
6635
|
+
/// @name .k-columns-10
|
|
6636
|
+
/// @group columns
|
|
6637
|
+
/// @contextType css
|
|
6638
|
+
|
|
6639
|
+
/// This is equivalent to `columns: 11;`. Element's content is broken into 11 columns.
|
|
6640
|
+
/// @name .k-columns-11
|
|
6641
|
+
/// @group columns
|
|
6642
|
+
/// @contextType css
|
|
6643
|
+
|
|
6644
|
+
/// This is equivalent to `columns: 12;`. Element's content is broken into 12 columns.
|
|
6645
|
+
/// @name .k-columns-12
|
|
6646
|
+
/// @group columns
|
|
6647
|
+
/// @contextType css
|
|
6648
|
+
|
|
6649
|
+
/// This is equivalent to `columns: auto;`.The number of columns is determined by other CSS properties, such as column-width.
|
|
6650
|
+
/// @name .k-columns-auto
|
|
6651
|
+
/// @group columns
|
|
6652
|
+
/// @contextType css
|
|
6653
|
+
|
|
6654
|
+
@mixin kendo-utils--layout--columns() {
|
|
6655
|
+
|
|
6656
|
+
// columns utility classes
|
|
6657
|
+
$kendo-utils-columns: k-map-get( $kendo-utils, "columns" ) !default;
|
|
6658
|
+
@include generate-utils( columns, columns, $kendo-utils-columns );
|
|
6659
|
+
|
|
6660
|
+
}
|
|
6661
|
+
|
|
6393
6662
|
// #endregion
|
|
6394
6663
|
// #region @import "./_display.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_display.scss
|
|
6395
6664
|
/// This is equivalent to `display: none;`. Turns off the display of an element so that it has no effect on layout (the document is rendered as though the element did not exist). All descendant elements also have their display turned off.
|
|
@@ -6447,6 +6716,8 @@ $kendo-utils: (
|
|
|
6447
6716
|
/// @group display
|
|
6448
6717
|
/// @contextType css
|
|
6449
6718
|
|
|
6719
|
+
// TODO tables' parts
|
|
6720
|
+
|
|
6450
6721
|
@mixin kendo-utils--layout--display() {
|
|
6451
6722
|
|
|
6452
6723
|
// Display utility classes
|
|
@@ -6490,6 +6761,30 @@ $kendo-utils: (
|
|
|
6490
6761
|
|
|
6491
6762
|
}
|
|
6492
6763
|
|
|
6764
|
+
// #endregion
|
|
6765
|
+
// #region @import "./_object-fit.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_object-fit.scss
|
|
6766
|
+
// TODO: docs
|
|
6767
|
+
|
|
6768
|
+
@mixin kendo-utils--layout--object-fit() {
|
|
6769
|
+
|
|
6770
|
+
// object-fit utility classes
|
|
6771
|
+
$kendo-utils-object-fit: k-map-get( $kendo-utils, "object-fit" ) !default;
|
|
6772
|
+
@include generate-utils( object-fit, object-fit, $kendo-utils-object-fit );
|
|
6773
|
+
|
|
6774
|
+
}
|
|
6775
|
+
|
|
6776
|
+
// #endregion
|
|
6777
|
+
// #region @import "./_object-position.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_object-position.scss
|
|
6778
|
+
// TODO: docs
|
|
6779
|
+
|
|
6780
|
+
@mixin kendo-utils--layout--object-position() {
|
|
6781
|
+
|
|
6782
|
+
// object-position utility classes
|
|
6783
|
+
$kendo-utils-object-position: k-map-get( $kendo-utils, "object-position" ) !default;
|
|
6784
|
+
@include generate-utils( object-position, object-position, $kendo-utils-object-position );
|
|
6785
|
+
|
|
6786
|
+
}
|
|
6787
|
+
|
|
6493
6788
|
// #endregion
|
|
6494
6789
|
// #region @import "./_overflow.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_overflow.scss
|
|
6495
6790
|
/// This is equivalent to `overflow: auto;`. Depends on the user agent. If content fits inside the padding box, it looks the same as visible, but still establishes a new block formatting context. Desktop browsers provide scrollbar if content overflows.
|
|
@@ -6572,38 +6867,14 @@ $kendo-utils: (
|
|
|
6572
6867
|
// Overflow utility classes
|
|
6573
6868
|
$kendo-utils-overflow: k-map-get( $kendo-utils, "overflow" ) !default;
|
|
6574
6869
|
@include generate-utils( overflow, overflow, $kendo-utils-overflow );
|
|
6575
|
-
|
|
6870
|
+
@include generate-utils( overflow-x, overflow-x, $kendo-utils-overflow );
|
|
6871
|
+
@include generate-utils( overflow-y, overflow-y, $kendo-utils-overflow );
|
|
6576
6872
|
}
|
|
6577
6873
|
|
|
6578
6874
|
// #endregion
|
|
6579
|
-
// #region @import "./
|
|
6875
|
+
// #region @import "./_placement.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_placement.scss
|
|
6580
6876
|
// Position documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/position.
|
|
6581
6877
|
|
|
6582
|
-
/// This is equivalent to `position: static;`. The element is positioned according to the normal flow of the document. The top, right, bottom, left, and z-index properties have no effect. This is the default value.
|
|
6583
|
-
/// @name .k-pos-static
|
|
6584
|
-
/// @group position
|
|
6585
|
-
/// @contextType css
|
|
6586
|
-
|
|
6587
|
-
/// This is equivalent to `position: relative;`. The element is positioned according to the normal flow of the document, and then offset relative to itself based on the values of top, right, bottom, and left. The offset does not affect the position of any other elements; thus, the space given for the element in the page layout is the same as if position were static.
|
|
6588
|
-
/// @name .k-pos-relative
|
|
6589
|
-
/// @group position
|
|
6590
|
-
/// @contextType css
|
|
6591
|
-
|
|
6592
|
-
/// This is equivalent to `position: absolute;`. The element is removed from the normal document flow, and no space is created for the element in the page layout. It is positioned relative to its closest positioned ancestor, if any; otherwise, it is placed relative to the initial containing block. Its final position is determined by the values of top, right, bottom, and left.
|
|
6593
|
-
/// @name .k-pos-absolute
|
|
6594
|
-
/// @group position
|
|
6595
|
-
/// @contextType css
|
|
6596
|
-
|
|
6597
|
-
/// This is equivalent to `position: fixed;`. The element is removed from the normal document flow, and no space is created for the element in the page layout. It is positioned relative to the initial containing block established by the viewport, except when one of its ancestors has a transform, perspective, or filter property set to something other than none (see the CSS Transforms Spec), in which case that ancestor behaves as the containing block. (Note that there are browser inconsistencies with perspective and filter contributing to containing block formation.) Its final position is determined by the values of top, right, bottom, and left.
|
|
6598
|
-
/// @name .k-pos-fixed
|
|
6599
|
-
/// @group position
|
|
6600
|
-
/// @contextType css
|
|
6601
|
-
|
|
6602
|
-
/// This is equivalent to `position: sticky;`. The element is positioned according to the normal flow of the document, and then offset relative to its nearest scrolling ancestor and containing block (nearest block-level ancestor), including table-related elements, based on the values of top, right, bottom, and left. The offset does not affect the position of any other elements.
|
|
6603
|
-
/// @name .k-pos-sticky
|
|
6604
|
-
/// @group position
|
|
6605
|
-
/// @contextType css
|
|
6606
|
-
|
|
6607
6878
|
|
|
6608
6879
|
// TODO: inset docs
|
|
6609
6880
|
|
|
@@ -6628,35 +6899,26 @@ $kendo-utils: (
|
|
|
6628
6899
|
/// @group position
|
|
6629
6900
|
/// @contextType css
|
|
6630
6901
|
|
|
6631
|
-
@mixin kendo-utils--layout--
|
|
6632
|
-
|
|
6633
|
-
|
|
6634
|
-
|
|
6635
|
-
@include generate-utils(
|
|
6636
|
-
|
|
6902
|
+
@mixin kendo-utils--layout--placement() {
|
|
6903
|
+
// Top / right / bottom / left
|
|
6904
|
+
$kendo-utils-placement: k-map-get( $kendo-utils, "placement" ) !default;
|
|
6905
|
+
@include generate-utils( top, top, $kendo-utils-placement );
|
|
6906
|
+
@include generate-utils( right, right, $kendo-utils-placement );
|
|
6907
|
+
@include generate-utils( bottom, bottom, $kendo-utils-placement );
|
|
6908
|
+
@include generate-utils( left, left, $kendo-utils-placement );
|
|
6637
6909
|
|
|
6638
|
-
// Legacy aliases
|
|
6639
|
-
.#{$kendo-prefix}static { @extend .#{$kendo-prefix}pos-static !optional; }
|
|
6640
|
-
.\!#{$kendo-prefix}static { @extend .\!#{$kendo-prefix}pos-static !optional; }
|
|
6641
|
-
.#{$kendo-prefix}relative { @extend .#{$kendo-prefix}pos-relative !optional; }
|
|
6642
|
-
.\!#{$kendo-prefix}relative { @extend .\!#{$kendo-prefix}pos-relative !optional; }
|
|
6643
|
-
.#{$kendo-prefix}absolute { @extend .#{$kendo-prefix}pos-absolute !optional; }
|
|
6644
|
-
.\!#{$kendo-prefix}absolute { @extend .\!#{$kendo-prefix}pos-absolute !optional; }
|
|
6645
|
-
.#{$kendo-prefix}fixed { @extend .#{$kendo-prefix}pos-fixed !optional; }
|
|
6646
|
-
.\!#{$kendo-prefix}fixed { @extend .\!#{$kendo-prefix}pos-fixed !optional; }
|
|
6647
|
-
.#{$kendo-prefix}sticky { @extend .#{$kendo-prefix}pos-sticky !optional; }
|
|
6648
|
-
.\!#{$kendo-prefix}sticky { @extend .\!#{$kendo-prefix}pos-sticky !optional; }
|
|
6649
6910
|
|
|
6911
|
+
// Position length utility classes
|
|
6912
|
+
@each $side in (top, right, bottom, left) {
|
|
6913
|
+
.#{$kendo-prefix}#{$side},
|
|
6914
|
+
.#{$kendo-prefix}pos-#{$side} { #{$side}: 0; } // sass-lint:disable-line brace-style
|
|
6915
|
+
}
|
|
6650
6916
|
|
|
6651
6917
|
// Inset utility classes
|
|
6652
6918
|
$kendo-utils-inset: k-map-get( $kendo-utils, "inset" ) !default;
|
|
6653
6919
|
@include generate-utils( inset, inset, $kendo-utils-inset );
|
|
6654
6920
|
@include generate-utils( inset-x, inset-inline, $kendo-utils-inset );
|
|
6655
6921
|
@include generate-utils( inset-y, inset-block, $kendo-utils-inset );
|
|
6656
|
-
@include generate-utils( top, top, $kendo-utils-inset );
|
|
6657
|
-
@include generate-utils( right, right, $kendo-utils-inset );
|
|
6658
|
-
@include generate-utils( bottom, bottom, $kendo-utils-inset );
|
|
6659
|
-
@include generate-utils( left, left, $kendo-utils-inset );
|
|
6660
6922
|
@include generate-utils( top-left, ( top, left ), $kendo-utils-inset );
|
|
6661
6923
|
@include generate-utils( top-right, ( top, right ), $kendo-utils-inset );
|
|
6662
6924
|
@include generate-utils( bottom-left, ( bottom, left ), $kendo-utils-inset );
|
|
@@ -6720,12 +6982,55 @@ $kendo-utils: (
|
|
|
6720
6982
|
transform: translateX(-50%);
|
|
6721
6983
|
}
|
|
6722
6984
|
|
|
6985
|
+
}
|
|
6723
6986
|
|
|
6724
|
-
|
|
6725
|
-
|
|
6726
|
-
|
|
6727
|
-
|
|
6728
|
-
|
|
6987
|
+
// #endregion
|
|
6988
|
+
// #region @import "./_position.scss"; -> node_modules/@progress/kendo-theme-utils/scss/layout/_position.scss
|
|
6989
|
+
// Position documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/position.
|
|
6990
|
+
|
|
6991
|
+
/// This is equivalent to `position: static;`. The element is positioned according to the normal flow of the document. The top, right, bottom, left, and z-index properties have no effect. This is the default value.
|
|
6992
|
+
/// @name .k-pos-static
|
|
6993
|
+
/// @group position
|
|
6994
|
+
/// @contextType css
|
|
6995
|
+
|
|
6996
|
+
/// This is equivalent to `position: relative;`. The element is positioned according to the normal flow of the document, and then offset relative to itself based on the values of top, right, bottom, and left. The offset does not affect the position of any other elements; thus, the space given for the element in the page layout is the same as if position were static.
|
|
6997
|
+
/// @name .k-pos-relative
|
|
6998
|
+
/// @group position
|
|
6999
|
+
/// @contextType css
|
|
7000
|
+
|
|
7001
|
+
/// This is equivalent to `position: absolute;`. The element is removed from the normal document flow, and no space is created for the element in the page layout. It is positioned relative to its closest positioned ancestor, if any; otherwise, it is placed relative to the initial containing block. Its final position is determined by the values of top, right, bottom, and left.
|
|
7002
|
+
/// @name .k-pos-absolute
|
|
7003
|
+
/// @group position
|
|
7004
|
+
/// @contextType css
|
|
7005
|
+
|
|
7006
|
+
/// This is equivalent to `position: fixed;`. The element is removed from the normal document flow, and no space is created for the element in the page layout. It is positioned relative to the initial containing block established by the viewport, except when one of its ancestors has a transform, perspective, or filter property set to something other than none (see the CSS Transforms Spec), in which case that ancestor behaves as the containing block. (Note that there are browser inconsistencies with perspective and filter contributing to containing block formation.) Its final position is determined by the values of top, right, bottom, and left.
|
|
7007
|
+
/// @name .k-pos-fixed
|
|
7008
|
+
/// @group position
|
|
7009
|
+
/// @contextType css
|
|
7010
|
+
|
|
7011
|
+
/// This is equivalent to `position: sticky;`. The element is positioned according to the normal flow of the document, and then offset relative to its nearest scrolling ancestor and containing block (nearest block-level ancestor), including table-related elements, based on the values of top, right, bottom, and left. The offset does not affect the position of any other elements.
|
|
7012
|
+
/// @name .k-pos-sticky
|
|
7013
|
+
/// @group position
|
|
7014
|
+
/// @contextType css
|
|
7015
|
+
|
|
7016
|
+
@mixin kendo-utils--layout--position() {
|
|
7017
|
+
|
|
7018
|
+
// Position utility classes
|
|
7019
|
+
$kendo-utils-position: k-map-get( $kendo-utils, "position" ) !default;
|
|
7020
|
+
@include generate-utils( pos, position, $kendo-utils-position );
|
|
7021
|
+
|
|
7022
|
+
|
|
7023
|
+
// Legacy aliases
|
|
7024
|
+
.#{$kendo-prefix}static { @extend .#{$kendo-prefix}pos-static !optional; }
|
|
7025
|
+
.\!#{$kendo-prefix}static { @extend .\!#{$kendo-prefix}pos-static !optional; }
|
|
7026
|
+
.#{$kendo-prefix}relative { @extend .#{$kendo-prefix}pos-relative !optional; }
|
|
7027
|
+
.\!#{$kendo-prefix}relative { @extend .\!#{$kendo-prefix}pos-relative !optional; }
|
|
7028
|
+
.#{$kendo-prefix}absolute { @extend .#{$kendo-prefix}pos-absolute !optional; }
|
|
7029
|
+
.\!#{$kendo-prefix}absolute { @extend .\!#{$kendo-prefix}pos-absolute !optional; }
|
|
7030
|
+
.#{$kendo-prefix}fixed { @extend .#{$kendo-prefix}pos-fixed !optional; }
|
|
7031
|
+
.\!#{$kendo-prefix}fixed { @extend .\!#{$kendo-prefix}pos-fixed !optional; }
|
|
7032
|
+
.#{$kendo-prefix}sticky { @extend .#{$kendo-prefix}pos-sticky !optional; }
|
|
7033
|
+
.\!#{$kendo-prefix}sticky { @extend .\!#{$kendo-prefix}pos-sticky !optional; }
|
|
6729
7034
|
|
|
6730
7035
|
}
|
|
6731
7036
|
|
|
@@ -6765,10 +7070,15 @@ $kendo-utils: (
|
|
|
6765
7070
|
|
|
6766
7071
|
@mixin kendo-utils--layout() {
|
|
6767
7072
|
@include kendo-utils--layout--aspect-ratio();
|
|
7073
|
+
@include kendo-utils--layout--box-sizing();
|
|
6768
7074
|
@include kendo-utils--layout--clear();
|
|
7075
|
+
@include kendo-utils--layout--columns();
|
|
6769
7076
|
@include kendo-utils--layout--display();
|
|
6770
7077
|
@include kendo-utils--layout--float();
|
|
7078
|
+
@include kendo-utils--layout--object-fit();
|
|
7079
|
+
@include kendo-utils--layout--object-position();
|
|
6771
7080
|
@include kendo-utils--layout--overflow();
|
|
7081
|
+
@include kendo-utils--layout--placement();
|
|
6772
7082
|
@include kendo-utils--layout--position();
|
|
6773
7083
|
@include kendo-utils--layout--visibility();
|
|
6774
7084
|
@include kendo-utils--layout--zindex();
|
|
@@ -7392,7 +7702,18 @@ $kendo-utils: (
|
|
|
7392
7702
|
// font variant
|
|
7393
7703
|
// letter spacing
|
|
7394
7704
|
// line height
|
|
7395
|
-
//
|
|
7705
|
+
// #region @import "./_list-style.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_list-style.scss
|
|
7706
|
+
// TODO: docs
|
|
7707
|
+
|
|
7708
|
+
@mixin kendo-utils--typography--list-style-type() {
|
|
7709
|
+
|
|
7710
|
+
// list-style-type utility classes
|
|
7711
|
+
$kendo-utils-list-style-type: k-map-get( $kendo-utils, "list-style-type" ) !default;
|
|
7712
|
+
@include generate-utils( list, list-style-type, $kendo-utils-list-style-type );
|
|
7713
|
+
|
|
7714
|
+
}
|
|
7715
|
+
|
|
7716
|
+
// #endregion
|
|
7396
7717
|
// #region @import "./_text-align.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_text-align.scss
|
|
7397
7718
|
// Text-align documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/text-align.
|
|
7398
7719
|
|
|
@@ -7442,7 +7763,18 @@ $kendo-utils: (
|
|
|
7442
7763
|
}
|
|
7443
7764
|
|
|
7444
7765
|
// #endregion
|
|
7445
|
-
//
|
|
7766
|
+
// #region @import "./_text-decoration.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_text-decoration.scss
|
|
7767
|
+
// TODO: docs
|
|
7768
|
+
|
|
7769
|
+
@mixin kendo-utils--typography--text-decoration() {
|
|
7770
|
+
|
|
7771
|
+
// text-decoration utility classes
|
|
7772
|
+
$kendo-utils-text-decoration: k-map-get( $kendo-utils, "text-decoration" ) !default;
|
|
7773
|
+
@include generate-utils( text, text-decoration, $kendo-utils-text-decoration );
|
|
7774
|
+
|
|
7775
|
+
}
|
|
7776
|
+
|
|
7777
|
+
// #endregion
|
|
7446
7778
|
// #region @import "./_text-overflow.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_text-overflow.scss
|
|
7447
7779
|
@mixin kendo-utils--typography--text-overflow() {
|
|
7448
7780
|
|
|
@@ -7498,7 +7830,18 @@ $kendo-utils: (
|
|
|
7498
7830
|
|
|
7499
7831
|
// #endregion
|
|
7500
7832
|
// text indent
|
|
7501
|
-
//
|
|
7833
|
+
// #region @import "./_vertical-align.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_vertical-align.scss
|
|
7834
|
+
// TODO: docs
|
|
7835
|
+
|
|
7836
|
+
@mixin kendo-utils--typography--vertical-align() {
|
|
7837
|
+
|
|
7838
|
+
// vertical-align utility classes
|
|
7839
|
+
$kendo-utils-vertical-align: k-map-get( $kendo-utils, "vertical-align" ) !default;
|
|
7840
|
+
@include generate-utils( align, vertical-align, $kendo-utils-vertical-align );
|
|
7841
|
+
|
|
7842
|
+
}
|
|
7843
|
+
|
|
7844
|
+
// #endregion
|
|
7502
7845
|
// #region @import "./_white-space.scss"; -> node_modules/@progress/kendo-theme-utils/scss/typography/_white-space.scss
|
|
7503
7846
|
// White-space documentation sourced from https://developer.mozilla.org/en-US/docs/Web/CSS/white-space.
|
|
7504
7847
|
|
|
@@ -7553,15 +7896,30 @@ $kendo-utils: (
|
|
|
7553
7896
|
@include kendo-utils--typography--font-size();
|
|
7554
7897
|
@include kendo-utils--typography--font-style();
|
|
7555
7898
|
@include kendo-utils--typography--font-weight();
|
|
7899
|
+
@include kendo-utils--typography--list-style-type();
|
|
7556
7900
|
@include kendo-utils--typography--text-align();
|
|
7557
7901
|
@include kendo-utils--typography--text-color();
|
|
7902
|
+
@include kendo-utils--typography--text-decoration();
|
|
7558
7903
|
@include kendo-utils--typography--text-overflow();
|
|
7559
7904
|
@include kendo-utils--typography--text-transform();
|
|
7905
|
+
@include kendo-utils--typography--vertical-align();
|
|
7560
7906
|
@include kendo-utils--typography--white-space();
|
|
7561
7907
|
}
|
|
7562
7908
|
|
|
7563
7909
|
// #endregion
|
|
7564
7910
|
// #region @import "./background/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/background/index.import.scss
|
|
7911
|
+
// #region @import "./_background-clip.scss"; -> node_modules/@progress/kendo-theme-utils/scss/background/_background-clip.scss
|
|
7912
|
+
// TODO: docs
|
|
7913
|
+
|
|
7914
|
+
@mixin kendo-utils--background--background-clip() {
|
|
7915
|
+
|
|
7916
|
+
// Background color utility classes
|
|
7917
|
+
$kendo-utils-background-clip: k-map-get( $kendo-utils, "background-clip" ) !default;
|
|
7918
|
+
@include generate-utils( bg-clip, background-clip, $kendo-utils-background-clip );
|
|
7919
|
+
|
|
7920
|
+
}
|
|
7921
|
+
|
|
7922
|
+
// #endregion
|
|
7565
7923
|
// #region @import "./_background-color.scss"; -> node_modules/@progress/kendo-theme-utils/scss/background/_background-color.scss
|
|
7566
7924
|
// TODO: docs
|
|
7567
7925
|
|
|
@@ -7577,6 +7935,7 @@ $kendo-utils: (
|
|
|
7577
7935
|
|
|
7578
7936
|
|
|
7579
7937
|
@mixin kendo-utils--background() {
|
|
7938
|
+
@include kendo-utils--background--background-clip();
|
|
7580
7939
|
@include kendo-utils--background--background-color();
|
|
7581
7940
|
}
|
|
7582
7941
|
|
|
@@ -7725,8 +8084,46 @@ $kendo-utils: (
|
|
|
7725
8084
|
}
|
|
7726
8085
|
|
|
7727
8086
|
// #endregion
|
|
7728
|
-
// effects
|
|
7729
|
-
//
|
|
8087
|
+
// #region @import "./effects/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/effects/index.import.scss
|
|
8088
|
+
// box shadow
|
|
8089
|
+
// box shadow color
|
|
8090
|
+
// #region @import "./_opacity.scss"; -> node_modules/@progress/kendo-theme-utils/scss/effects/_opacity.scss
|
|
8091
|
+
// TODO: docs
|
|
8092
|
+
|
|
8093
|
+
@mixin kendo-utils--effects--opacity() {
|
|
8094
|
+
|
|
8095
|
+
// opacity utility classes
|
|
8096
|
+
$kendo-utils-opacity: k-map-get( $kendo-utils, "opacity" ) !default;
|
|
8097
|
+
@include generate-utils( opacity, opacity, $kendo-utils-opacity );
|
|
8098
|
+
|
|
8099
|
+
}
|
|
8100
|
+
|
|
8101
|
+
// #endregion
|
|
8102
|
+
|
|
8103
|
+
@mixin kendo-utils--effects() {
|
|
8104
|
+
@include kendo-utils--effects--opacity();
|
|
8105
|
+
}
|
|
8106
|
+
|
|
8107
|
+
// #endregion
|
|
8108
|
+
// #region @import "./filter/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/filter/index.import.scss
|
|
8109
|
+
// #region @import "./_backdrop.scss"; -> node_modules/@progress/kendo-theme-utils/scss/filter/_backdrop.scss
|
|
8110
|
+
// TODO: docs
|
|
8111
|
+
|
|
8112
|
+
@mixin kendo-utils--filter--backdrop() {
|
|
8113
|
+
|
|
8114
|
+
// backdrop utility classes
|
|
8115
|
+
$kendo-utils-backdrop-blur: k-map-get( $kendo-utils, "backdrop-blur" ) !default;
|
|
8116
|
+
@include generate-utils( backdrop-blur, backdrop-filter, $kendo-utils-backdrop-blur );
|
|
8117
|
+
|
|
8118
|
+
}
|
|
8119
|
+
|
|
8120
|
+
// #endregion
|
|
8121
|
+
|
|
8122
|
+
@mixin kendo-utils--filter() {
|
|
8123
|
+
@include kendo-utils--filter--backdrop();
|
|
8124
|
+
}
|
|
8125
|
+
|
|
8126
|
+
// #endregion
|
|
7730
8127
|
// #region @import "./table/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/table/index.import.scss
|
|
7731
8128
|
// #region @import "./_border-collapse.scss"; -> node_modules/@progress/kendo-theme-utils/scss/table/_border-collapse.scss
|
|
7732
8129
|
// TODO: docs
|
|
@@ -8279,6 +8676,38 @@ $kendo-utils: (
|
|
|
8279
8676
|
@include kendo-utils--interactivity--will-change();
|
|
8280
8677
|
}
|
|
8281
8678
|
|
|
8679
|
+
// #endregion
|
|
8680
|
+
// #region @import "./svg/index.import.scss"; -> node_modules/@progress/kendo-theme-utils/scss/svg/index.import.scss
|
|
8681
|
+
// #region @import "./_fill.scss"; -> node_modules/@progress/kendo-theme-utils/scss/svg/_fill.scss
|
|
8682
|
+
// TODO: docs
|
|
8683
|
+
|
|
8684
|
+
@mixin kendo-utils--svg--fill() {
|
|
8685
|
+
|
|
8686
|
+
// fill utility classes
|
|
8687
|
+
$kendo-utils-fill: k-map-get( $kendo-utils, "fill-stroke" ) !default;
|
|
8688
|
+
@include generate-utils( fill, fill, $kendo-utils-fill );
|
|
8689
|
+
|
|
8690
|
+
}
|
|
8691
|
+
|
|
8692
|
+
// #endregion
|
|
8693
|
+
// #region @import "./_stroke.scss"; -> node_modules/@progress/kendo-theme-utils/scss/svg/_stroke.scss
|
|
8694
|
+
// TODO: docs
|
|
8695
|
+
|
|
8696
|
+
@mixin kendo-utils--svg--stroke() {
|
|
8697
|
+
|
|
8698
|
+
// stroke utility classes
|
|
8699
|
+
$kendo-utils-stroke: k-map-get( $kendo-utils, "fill-stroke" ) !default;
|
|
8700
|
+
@include generate-utils( stroke, stroke, $kendo-utils-stroke );
|
|
8701
|
+
|
|
8702
|
+
}
|
|
8703
|
+
|
|
8704
|
+
// #endregion
|
|
8705
|
+
|
|
8706
|
+
@mixin kendo-utils--svg() {
|
|
8707
|
+
@include kendo-utils--svg--fill();
|
|
8708
|
+
@include kendo-utils--svg--stroke();
|
|
8709
|
+
}
|
|
8710
|
+
|
|
8282
8711
|
// #endregion
|
|
8283
8712
|
|
|
8284
8713
|
|
|
@@ -8292,9 +8721,12 @@ $kendo-utils: (
|
|
|
8292
8721
|
@include kendo-utils--typography();
|
|
8293
8722
|
@include kendo-utils--background();
|
|
8294
8723
|
@include kendo-utils--border();
|
|
8724
|
+
@include kendo-utils--effects();
|
|
8725
|
+
@include kendo-utils--filter();
|
|
8295
8726
|
@include kendo-utils--table();
|
|
8296
8727
|
@include kendo-utils--transform();
|
|
8297
8728
|
@include kendo-utils--interactivity();
|
|
8729
|
+
@include kendo-utils--svg();
|
|
8298
8730
|
}
|
|
8299
8731
|
|
|
8300
8732
|
// #endregion
|
|
@@ -10328,122 +10760,123 @@ $_kendo-module-meta: (
|
|
|
10328
10760
|
// #region @import "../list/_variables.scss"; -> scss/list/_variables.scss
|
|
10329
10761
|
// List
|
|
10330
10762
|
|
|
10331
|
-
///
|
|
10763
|
+
/// The font size of the List component, if no size is set.
|
|
10332
10764
|
/// @group list
|
|
10333
10765
|
$kendo-list-font-size: null !default;
|
|
10334
10766
|
$kendo-list-sm-font-size: $kendo-font-size-md !default;
|
|
10335
10767
|
$kendo-list-md-font-size: $kendo-font-size-md !default;
|
|
10336
10768
|
$kendo-list-lg-font-size: $kendo-font-size-lg !default;
|
|
10337
10769
|
|
|
10338
|
-
///
|
|
10770
|
+
/// The line height of the List component, if no size is set.
|
|
10339
10771
|
/// @group list
|
|
10340
10772
|
$kendo-list-line-height: null !default;
|
|
10341
10773
|
$kendo-list-sm-line-height: $kendo-line-height-md !default;
|
|
10342
10774
|
$kendo-list-md-line-height: $kendo-line-height-md !default;
|
|
10343
10775
|
$kendo-list-lg-line-height: $kendo-line-height-lg !default;
|
|
10344
10776
|
|
|
10345
|
-
///
|
|
10777
|
+
/// The horizontal padding of the List header, if no size is set.
|
|
10346
10778
|
/// @group list
|
|
10347
10779
|
$kendo-list-header-padding-x: null !default;
|
|
10348
10780
|
$kendo-list-sm-header-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
10349
10781
|
$kendo-list-md-header-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
10350
10782
|
$kendo-list-lg-header-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
10351
10783
|
|
|
10352
|
-
///
|
|
10784
|
+
/// The vertical padding of the List header, if no size is set.
|
|
10353
10785
|
/// @group list
|
|
10354
10786
|
$kendo-list-header-padding-y: null !default;
|
|
10355
10787
|
$kendo-list-sm-header-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
|
|
10356
10788
|
$kendo-list-md-header-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
10357
10789
|
$kendo-list-lg-header-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
10358
10790
|
|
|
10359
|
-
///
|
|
10791
|
+
/// The border width of the List header.
|
|
10360
10792
|
/// @group list
|
|
10361
10793
|
$kendo-list-header-border-width: 0 0 1px !default;
|
|
10362
10794
|
|
|
10363
|
-
///
|
|
10795
|
+
/// The font size of the List header, if no size is set.
|
|
10364
10796
|
/// @group list
|
|
10365
10797
|
$kendo-list-header-font-size: null !default;
|
|
10366
10798
|
$kendo-list-sm-header-font-size: null !default;
|
|
10367
10799
|
$kendo-list-md-header-font-size: null !default;
|
|
10368
10800
|
$kendo-list-lg-header-font-size: null !default;
|
|
10369
10801
|
|
|
10370
|
-
///
|
|
10802
|
+
/// The line height of the List header, if no size is set.
|
|
10371
10803
|
/// @group list
|
|
10372
10804
|
$kendo-list-header-line-height: null !default;
|
|
10373
10805
|
$kendo-list-sm-header-line-height: null !default;
|
|
10374
10806
|
$kendo-list-md-header-line-height: null !default;
|
|
10375
10807
|
$kendo-list-lg-header-line-height: null !default;
|
|
10376
10808
|
|
|
10377
|
-
///
|
|
10809
|
+
/// The font weight of the List header.
|
|
10378
10810
|
/// @group list
|
|
10379
10811
|
$kendo-list-header-font-weight: null !default;
|
|
10380
10812
|
|
|
10381
|
-
///
|
|
10813
|
+
/// The horizontal padding of the List items, when no size is set.
|
|
10382
10814
|
/// @group list
|
|
10383
10815
|
$kendo-list-item-padding-x: null !default;
|
|
10384
10816
|
$kendo-list-sm-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
10385
10817
|
$kendo-list-md-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
10386
10818
|
$kendo-list-lg-item-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
10387
10819
|
|
|
10388
|
-
///
|
|
10820
|
+
/// The vertical padding of the List items, when no size is set.
|
|
10389
10821
|
/// @group list
|
|
10390
10822
|
$kendo-list-item-padding-y: null !default;
|
|
10391
10823
|
$kendo-list-sm-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
|
|
10392
10824
|
$kendo-list-md-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
10393
10825
|
$kendo-list-lg-item-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
10394
10826
|
|
|
10395
|
-
///
|
|
10827
|
+
/// The font size of the List items, if no size is set.
|
|
10396
10828
|
/// @group list
|
|
10397
10829
|
$kendo-list-item-font-size: null !default;
|
|
10398
10830
|
$kendo-list-sm-item-font-size: null !default;
|
|
10399
10831
|
$kendo-list-md-item-font-size: null !default;
|
|
10400
10832
|
$kendo-list-lg-item-font-size: null !default;
|
|
10401
10833
|
|
|
10402
|
-
///
|
|
10834
|
+
/// The line height of the List items, if no size is set.
|
|
10403
10835
|
/// @group list
|
|
10404
10836
|
$kendo-list-item-line-height: null !default;
|
|
10405
10837
|
$kendo-list-sm-item-line-height: null !default;
|
|
10406
10838
|
$kendo-list-md-item-line-height: null !default;
|
|
10407
10839
|
$kendo-list-lg-item-line-height: null !default;
|
|
10408
10840
|
|
|
10409
|
-
///
|
|
10841
|
+
/// The horizontal padding of the List group items, when no size is set.
|
|
10410
10842
|
/// @group list
|
|
10411
10843
|
$kendo-list-group-item-padding-x: null !default;
|
|
10412
10844
|
$kendo-list-sm-group-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
10413
10845
|
$kendo-list-md-group-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
10414
10846
|
$kendo-list-lg-group-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
10415
10847
|
|
|
10416
|
-
///
|
|
10848
|
+
/// The vertical padding of the List group items, when no size is set.
|
|
10417
10849
|
/// @group list
|
|
10418
10850
|
$kendo-list-group-item-padding-y: null !default;
|
|
10419
10851
|
$kendo-list-sm-group-item-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
|
|
10420
10852
|
$kendo-list-md-group-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
10421
10853
|
$kendo-list-lg-group-item-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
10422
10854
|
|
|
10423
|
-
///
|
|
10855
|
+
/// The border width of the List group items.
|
|
10424
10856
|
/// @group list
|
|
10425
10857
|
$kendo-list-group-item-border-width: 1px 0 0 !default;
|
|
10426
10858
|
|
|
10427
|
-
///
|
|
10859
|
+
/// The font size of the List group items, if no size is set.
|
|
10428
10860
|
/// @group list
|
|
10429
10861
|
$kendo-list-group-item-font-size: null !default;
|
|
10430
10862
|
$kendo-list-sm-group-item-font-size: null !default;
|
|
10431
10863
|
$kendo-list-md-group-item-font-size: null !default;
|
|
10432
10864
|
$kendo-list-lg-group-item-font-size: null !default;
|
|
10433
10865
|
|
|
10434
|
-
///
|
|
10866
|
+
/// The line height of the List group items, if no size is set.
|
|
10435
10867
|
/// @group list
|
|
10436
10868
|
$kendo-list-group-item-line-height: null !default;
|
|
10437
10869
|
$kendo-list-sm-group-item-line-height: null !default;
|
|
10438
10870
|
$kendo-list-md-group-item-line-height: null !default;
|
|
10439
10871
|
$kendo-list-lg-group-item-line-height: null !default;
|
|
10440
10872
|
|
|
10441
|
-
///
|
|
10873
|
+
/// The font weight of a List group item.
|
|
10442
10874
|
/// @group list
|
|
10443
10875
|
$kendo-list-group-item-font-weight: null !default;
|
|
10444
10876
|
|
|
10445
10877
|
|
|
10446
|
-
|
|
10878
|
+
/// The map with the sizes of the List.
|
|
10879
|
+
/// @group list
|
|
10447
10880
|
$kendo-list-sizes: (
|
|
10448
10881
|
sm: (
|
|
10449
10882
|
font-size: $kendo-list-sm-font-size,
|
|
@@ -10496,241 +10929,271 @@ $kendo-list-sizes: (
|
|
|
10496
10929
|
) !default;
|
|
10497
10930
|
|
|
10498
10931
|
|
|
10499
|
-
///
|
|
10932
|
+
/// The background color of the List component.
|
|
10500
10933
|
/// @group list
|
|
10501
10934
|
$kendo-list-bg: $kendo-component-bg !default;
|
|
10502
|
-
///
|
|
10935
|
+
/// The text color of the List component.
|
|
10503
10936
|
/// @group list
|
|
10504
10937
|
$kendo-list-text: $kendo-component-text !default;
|
|
10505
|
-
///
|
|
10938
|
+
/// The border color of the List component.
|
|
10506
10939
|
/// @group list
|
|
10507
10940
|
$kendo-list-border: $kendo-component-border !default;
|
|
10508
10941
|
|
|
10509
10942
|
|
|
10510
|
-
///
|
|
10943
|
+
/// The background color of the List header.
|
|
10511
10944
|
/// @group list
|
|
10512
10945
|
$kendo-list-header-bg: null !default;
|
|
10513
|
-
///
|
|
10946
|
+
/// The text color of the List header.
|
|
10514
10947
|
/// @group list
|
|
10515
10948
|
$kendo-list-header-text: null !default;
|
|
10516
|
-
///
|
|
10949
|
+
/// The border color of the List header.
|
|
10517
10950
|
/// @group list
|
|
10518
10951
|
$kendo-list-header-border: inherit !default;
|
|
10519
|
-
///
|
|
10952
|
+
/// The box shadow of the List header.
|
|
10520
10953
|
/// @group list
|
|
10521
10954
|
$kendo-list-header-shadow: null !default;
|
|
10522
10955
|
|
|
10523
10956
|
|
|
10524
|
-
///
|
|
10957
|
+
/// The background color of the List items.
|
|
10525
10958
|
/// @group list
|
|
10526
10959
|
$kendo-list-item-bg: null !default;
|
|
10527
|
-
///
|
|
10960
|
+
/// The text color of the List items.
|
|
10528
10961
|
/// @group list
|
|
10529
10962
|
$kendo-list-item-text: null !default;
|
|
10530
10963
|
|
|
10531
|
-
///
|
|
10964
|
+
/// The background color of the hovered List items.
|
|
10532
10965
|
/// @group list
|
|
10533
10966
|
$kendo-list-item-hover-bg: $kendo-hover-bg !default;
|
|
10534
|
-
///
|
|
10967
|
+
/// The text color of the hovered List items.
|
|
10535
10968
|
/// @group list
|
|
10536
10969
|
$kendo-list-item-hover-text: $kendo-hover-text !default;
|
|
10537
10970
|
|
|
10538
|
-
///
|
|
10971
|
+
/// The background color of the focused List items.
|
|
10539
10972
|
/// @group list
|
|
10540
10973
|
$kendo-list-item-focus-bg: null !default;
|
|
10541
|
-
///
|
|
10974
|
+
/// The text color of the focused List items.
|
|
10542
10975
|
/// @group list
|
|
10543
10976
|
$kendo-list-item-focus-text: null !default;
|
|
10544
|
-
///
|
|
10977
|
+
/// The box shadow of the focused List items.
|
|
10545
10978
|
/// @group list
|
|
10546
10979
|
$kendo-list-item-focus-shadow: inset 0 0 0 2px rgba( black, .12 ) !default;
|
|
10547
10980
|
|
|
10548
|
-
///
|
|
10981
|
+
/// The background color of the selected List items.
|
|
10549
10982
|
/// @group list
|
|
10550
10983
|
$kendo-list-item-selected-bg: $kendo-selected-bg !default;
|
|
10551
|
-
///
|
|
10984
|
+
/// The text color of the selected List items.
|
|
10552
10985
|
/// @group list
|
|
10553
10986
|
$kendo-list-item-selected-text: $kendo-selected-text !default;
|
|
10554
10987
|
|
|
10555
|
-
///
|
|
10988
|
+
/// The background color of the List group items.
|
|
10556
10989
|
/// @group list
|
|
10557
10990
|
$kendo-list-group-item-bg: null !default;
|
|
10558
|
-
///
|
|
10991
|
+
/// The text color of the List group items.
|
|
10559
10992
|
/// @group list
|
|
10560
10993
|
$kendo-list-group-item-text: null !default;
|
|
10561
|
-
/// The border color of
|
|
10994
|
+
/// The border color of the List group items.
|
|
10562
10995
|
/// @group list
|
|
10563
10996
|
$kendo-list-group-item-border: inherit !default;
|
|
10564
|
-
/// The base shadow of
|
|
10997
|
+
/// The base shadow of the List group items.
|
|
10565
10998
|
/// @group list
|
|
10566
10999
|
$kendo-list-group-item-shadow: null !default;
|
|
10567
11000
|
|
|
10568
|
-
///
|
|
11001
|
+
/// The color of the 'No Data' text.
|
|
10569
11002
|
/// @group list
|
|
10570
11003
|
$kendo-list-no-data-text: $kendo-subtle-text !default;
|
|
10571
11004
|
|
|
10572
11005
|
// #endregion
|
|
10573
11006
|
|
|
10574
11007
|
|
|
10575
|
-
//
|
|
11008
|
+
// CheckBox
|
|
10576
11009
|
|
|
10577
|
-
///
|
|
11010
|
+
/// The border width of the CheckBox.
|
|
10578
11011
|
/// @group checkbox
|
|
10579
11012
|
$kendo-checkbox-border-width: 1px !default;
|
|
10580
11013
|
|
|
10581
|
-
|
|
11014
|
+
/// The size of a small CheckBox.
|
|
11015
|
+
/// @group checkbox
|
|
11016
|
+
$kendo-checkbox-sm-size: k-map-get( $kendo-spacing, 3 ) !default;
|
|
11017
|
+
/// The size of a medium CheckBox.
|
|
11018
|
+
/// @group checkbox
|
|
11019
|
+
$kendo-checkbox-md-size: k-map-get( $kendo-spacing, 4 ) !default;
|
|
11020
|
+
/// The size of a large CheckBox.
|
|
11021
|
+
/// @group checkbox
|
|
11022
|
+
$kendo-checkbox-lg-size: k-map-get( $kendo-spacing, 5 ) !default;
|
|
11023
|
+
|
|
11024
|
+
/// The glyph size of a small CheckBox.
|
|
11025
|
+
/// @group checkbox
|
|
11026
|
+
$kendo-checkbox-sm-glyph-size: k-map-get( $kendo-spacing, 2.5 ) !default;
|
|
11027
|
+
/// The glyph size of a medium CheckBox.
|
|
11028
|
+
/// @group checkbox
|
|
11029
|
+
$kendo-checkbox-md-glyph-size: k-map-get( $kendo-spacing, 3.5 ) !default;
|
|
11030
|
+
/// The glyph size of a large CheckBox.
|
|
11031
|
+
/// @group checkbox
|
|
11032
|
+
$kendo-checkbox-lg-glyph-size: k-map-get( $kendo-spacing, 4.5 ) !default;
|
|
11033
|
+
|
|
11034
|
+
/// The ripple size of a small CheckBox.
|
|
11035
|
+
/// @group checkbox
|
|
11036
|
+
$kendo-checkbox-sm-ripple-size: 300% !default;
|
|
11037
|
+
/// The ripple size of a medium CheckBox.
|
|
11038
|
+
/// @group checkbox
|
|
11039
|
+
$kendo-checkbox-md-ripple-size: 300% !default;
|
|
11040
|
+
/// The ripple size of a large CheckBox.
|
|
11041
|
+
/// @group checkbox
|
|
11042
|
+
$kendo-checkbox-lg-ripple-size: 300% !default;
|
|
11043
|
+
|
|
11044
|
+
// A map with the different CheckBox sizes.
|
|
10582
11045
|
$kendo-checkbox-sizes: (
|
|
10583
11046
|
sm: (
|
|
10584
|
-
size:
|
|
10585
|
-
glyph-size:
|
|
10586
|
-
ripple-size:
|
|
11047
|
+
size: $kendo-checkbox-sm-size,
|
|
11048
|
+
glyph-size: $kendo-checkbox-sm-glyph-size,
|
|
11049
|
+
ripple-size: $kendo-checkbox-sm-ripple-size
|
|
10587
11050
|
),
|
|
10588
11051
|
md: (
|
|
10589
|
-
size:
|
|
10590
|
-
glyph-size:
|
|
10591
|
-
ripple-size:
|
|
11052
|
+
size: $kendo-checkbox-md-size,
|
|
11053
|
+
glyph-size: $kendo-checkbox-md-glyph-size,
|
|
11054
|
+
ripple-size: $kendo-checkbox-md-ripple-size
|
|
10592
11055
|
),
|
|
10593
11056
|
lg: (
|
|
10594
|
-
size:
|
|
10595
|
-
glyph-size:
|
|
10596
|
-
ripple-size:
|
|
11057
|
+
size: $kendo-checkbox-lg-size,
|
|
11058
|
+
glyph-size: $kendo-checkbox-lg-glyph-size,
|
|
11059
|
+
ripple-size: $kendo-checkbox-lg-ripple-size
|
|
10597
11060
|
)
|
|
10598
11061
|
) !default;
|
|
10599
11062
|
|
|
10600
|
-
///
|
|
11063
|
+
/// The background color of the CheckBox.
|
|
10601
11064
|
/// @group checkbox
|
|
10602
11065
|
$kendo-checkbox-bg: $kendo-component-bg !default;
|
|
10603
|
-
///
|
|
11066
|
+
/// The text color of the CheckBox.
|
|
10604
11067
|
/// @group checkbox
|
|
10605
11068
|
$kendo-checkbox-text: null !default;
|
|
10606
|
-
///
|
|
11069
|
+
/// The border color of the CheckBox.
|
|
10607
11070
|
/// @group checkbox
|
|
10608
11071
|
$kendo-checkbox-border: $kendo-component-border !default;
|
|
10609
11072
|
|
|
10610
|
-
///
|
|
11073
|
+
/// The background color of the hovered CheckBox.
|
|
10611
11074
|
/// @group checkbox
|
|
10612
11075
|
$kendo-checkbox-hover-bg: null !default;
|
|
10613
|
-
///
|
|
11076
|
+
/// The text color of the hovered CheckBox.
|
|
10614
11077
|
/// @group checkbox
|
|
10615
11078
|
$kendo-checkbox-hover-text: null !default;
|
|
10616
|
-
///
|
|
11079
|
+
/// The border color of the hovered CheckBox.
|
|
10617
11080
|
/// @group checkbox
|
|
10618
11081
|
$kendo-checkbox-hover-border: null !default;
|
|
10619
11082
|
|
|
10620
|
-
///
|
|
11083
|
+
/// The background color of the checked CheckBox.
|
|
10621
11084
|
/// @group checkbox
|
|
10622
11085
|
$kendo-checkbox-checked-bg: $kendo-color-primary !default;
|
|
10623
|
-
///
|
|
11086
|
+
/// The text color of the checked CheckBox.
|
|
10624
11087
|
/// @group checkbox
|
|
10625
11088
|
$kendo-checkbox-checked-text: k-contrast-legacy( $kendo-checkbox-checked-bg ) !default;
|
|
10626
|
-
///
|
|
11089
|
+
/// The border color of the checked CheckBox.
|
|
10627
11090
|
/// @group checkbox
|
|
10628
11091
|
$kendo-checkbox-checked-border: $kendo-checkbox-checked-bg !default;
|
|
10629
11092
|
|
|
10630
|
-
///
|
|
11093
|
+
/// The background color of the indeterminate CheckBox.
|
|
10631
11094
|
/// @group checkbox
|
|
10632
11095
|
$kendo-checkbox-indeterminate-bg: $kendo-checkbox-bg !default;
|
|
10633
|
-
///
|
|
11096
|
+
/// The text color of the indeterminate CheckBox.
|
|
10634
11097
|
/// @group checkbox
|
|
10635
11098
|
$kendo-checkbox-indeterminate-text: $kendo-checkbox-checked-bg !default;
|
|
10636
|
-
///
|
|
11099
|
+
/// The border color of the indeterminate CheckBox.
|
|
10637
11100
|
/// @group checkbox
|
|
10638
11101
|
$kendo-checkbox-indeterminate-border: $kendo-checkbox-border !default;
|
|
10639
11102
|
|
|
10640
|
-
///
|
|
11103
|
+
/// The border color of the focused CheckBox.
|
|
10641
11104
|
/// @group checkbox
|
|
10642
11105
|
$kendo-checkbox-focus-border: null !default;
|
|
10643
|
-
///
|
|
11106
|
+
/// The box shadow of the focused CheckBox.
|
|
10644
11107
|
/// @group checkbox
|
|
10645
11108
|
$kendo-checkbox-focus-shadow: 0 0 0 2px rgba( black, .06 ) !default;
|
|
10646
|
-
///
|
|
11109
|
+
/// The border color of the focused and checked CheckBox.
|
|
10647
11110
|
/// @group checkbox
|
|
10648
11111
|
$kendo-checkbox-focus-checked-border: null !default;
|
|
10649
|
-
///
|
|
11112
|
+
/// The box shadow of the focused and checked CheckBox.
|
|
10650
11113
|
/// @group checkbox
|
|
10651
11114
|
$kendo-checkbox-focus-checked-shadow: 0 0 0 2px rgba( $kendo-color-primary, .3 ) !default;
|
|
10652
11115
|
|
|
10653
|
-
///
|
|
11116
|
+
/// The background color of the disabled CheckBox.
|
|
10654
11117
|
/// @group checkbox
|
|
10655
11118
|
$kendo-checkbox-disabled-bg: null !default;
|
|
10656
|
-
///
|
|
11119
|
+
/// The text color of the disabled CheckBox.
|
|
10657
11120
|
/// @group checkbox
|
|
10658
11121
|
$kendo-checkbox-disabled-text: null !default;
|
|
10659
|
-
///
|
|
11122
|
+
/// The border color of the disabled CheckBox.
|
|
10660
11123
|
/// @group checkbox
|
|
10661
11124
|
$kendo-checkbox-disabled-border: null !default;
|
|
10662
11125
|
|
|
10663
|
-
///
|
|
11126
|
+
/// The background color of the disabled and checked CheckBox.
|
|
10664
11127
|
/// @group checkbox
|
|
10665
11128
|
$kendo-checkbox-disabled-checked-bg: null !default;
|
|
10666
|
-
///
|
|
11129
|
+
/// The text color of the disabled and checked CheckBox.
|
|
10667
11130
|
/// @group checkbox
|
|
10668
11131
|
$kendo-checkbox-disabled-checked-text: null !default;
|
|
10669
|
-
///
|
|
11132
|
+
/// The border color of the disabled and checked CheckBox.
|
|
10670
11133
|
/// @group checkbox
|
|
10671
11134
|
$kendo-checkbox-disabled-checked-border: null !default;
|
|
10672
11135
|
|
|
10673
|
-
///
|
|
11136
|
+
/// The background color of an invalid CheckBox.
|
|
10674
11137
|
/// @group checkbox
|
|
10675
11138
|
$kendo-checkbox-invalid-bg: null !default;
|
|
10676
|
-
///
|
|
11139
|
+
/// The text color of an invalid CheckBox.
|
|
10677
11140
|
/// @group checkbox
|
|
10678
11141
|
$kendo-checkbox-invalid-text: $kendo-invalid-text !default;
|
|
10679
|
-
///
|
|
11142
|
+
/// The border color of an invalid CheckBox.
|
|
10680
11143
|
/// @group checkbox
|
|
10681
11144
|
$kendo-checkbox-invalid-border: $kendo-invalid-border !default;
|
|
10682
11145
|
|
|
10683
11146
|
|
|
10684
|
-
//
|
|
11147
|
+
// CheckBox indicator
|
|
10685
11148
|
|
|
10686
|
-
///
|
|
11149
|
+
/// The type of the CheckBox indicator.
|
|
10687
11150
|
/// @group checkbox
|
|
10688
11151
|
$kendo-checkbox-indicator-type: image !default;
|
|
10689
11152
|
|
|
10690
|
-
///
|
|
11153
|
+
/// The font family of the CheckBox indicator glyph.
|
|
10691
11154
|
/// @group checkbox
|
|
10692
11155
|
$kendo-checkbox-glyph-font-family: "WebComponentsIcons", monospace !default;
|
|
10693
|
-
///
|
|
11156
|
+
/// The glyph of the CheckBox indicator.
|
|
10694
11157
|
/// @group checkbox
|
|
10695
11158
|
$kendo-checkbox-checked-glyph: "\e118" !default;
|
|
10696
|
-
///
|
|
11159
|
+
/// The glyph of the indeterminate CheckBox indicator.
|
|
10697
11160
|
/// @group checkbox
|
|
10698
11161
|
$kendo-checkbox-indeterminate-glyph: "\e121" !default;
|
|
10699
11162
|
|
|
10700
|
-
///
|
|
11163
|
+
/// The image for a checked CheckBox indicator.
|
|
10701
11164
|
/// @group checkbox
|
|
10702
11165
|
$kendo-checkbox-checked-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$kendo-checkbox-checked-text}' stroke-linecap='square' stroke-linejoin='square' stroke-width='2' d='M3,8 l3,3 l7-7'/></svg>") ) !default;
|
|
10703
|
-
///
|
|
11166
|
+
/// The image for a indeterminate CheckBox indicator.
|
|
10704
11167
|
/// @group checkbox
|
|
10705
11168
|
$kendo-checkbox-indeterminate-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='none' stroke='#{$kendo-checkbox-indeterminate-text}' stroke-linecap='square' stroke-linejoin='square' stroke-width='2' d='M4,8 h8'/></svg>") ) !default;
|
|
10706
11169
|
|
|
10707
11170
|
|
|
10708
|
-
//
|
|
11171
|
+
// CheckBox label
|
|
10709
11172
|
|
|
10710
|
-
/// The horizontal margin of the
|
|
11173
|
+
/// The horizontal margin of the CheckBox inside a label.
|
|
10711
11174
|
/// @group checkbox
|
|
10712
11175
|
$kendo-checkbox-label-margin-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
10713
11176
|
|
|
10714
11177
|
|
|
10715
|
-
//
|
|
11178
|
+
// CheckBox list
|
|
10716
11179
|
|
|
10717
|
-
///
|
|
11180
|
+
/// The spacing between the items in a horizontal CheckBox list.
|
|
10718
11181
|
/// @group checkbox
|
|
10719
11182
|
$kendo-checkbox-list-spacing: k-map-get( $kendo-spacing, 4 ) !default;
|
|
10720
|
-
///
|
|
11183
|
+
/// The horizontal padding of the CheckBox list items.
|
|
10721
11184
|
/// @group checkbox
|
|
10722
11185
|
$kendo-checkbox-list-item-padding-x: 0px !default;
|
|
10723
|
-
///
|
|
11186
|
+
/// The vertical padding of the CheckBox list items.
|
|
10724
11187
|
/// @group checkbox
|
|
10725
11188
|
$kendo-checkbox-list-item-padding-y: $kendo-list-md-item-padding-y !default;
|
|
10726
11189
|
|
|
10727
11190
|
|
|
10728
|
-
//
|
|
11191
|
+
// CheckBox ripple
|
|
10729
11192
|
|
|
10730
|
-
///
|
|
11193
|
+
/// The background color of the CheckBox' ripple.
|
|
10731
11194
|
/// @group checkbox
|
|
10732
11195
|
$kendo-checkbox-ripple-bg: $kendo-checkbox-checked-bg !default;
|
|
10733
|
-
///
|
|
11196
|
+
/// The opacity of the CheckBox' ripple.
|
|
10734
11197
|
/// @group checkbox
|
|
10735
11198
|
$kendo-checkbox-ripple-opacity: .25 !default;
|
|
10736
11199
|
|
|
@@ -13149,59 +13612,86 @@ $_kendo-module-meta: (
|
|
|
13149
13612
|
// #region @import "../button/_variables.scss"; -> scss/button/_variables.scss
|
|
13150
13613
|
// Button
|
|
13151
13614
|
|
|
13152
|
-
///
|
|
13615
|
+
/// The width of the border around the Button.
|
|
13153
13616
|
/// @group button
|
|
13154
13617
|
$kendo-button-border-width: 1px !default;
|
|
13155
13618
|
|
|
13156
|
-
///
|
|
13619
|
+
/// The border radius of the Button.
|
|
13157
13620
|
/// @group button
|
|
13158
13621
|
$kendo-button-border-radius: null !default;
|
|
13159
13622
|
|
|
13160
|
-
///
|
|
13623
|
+
/// The horizontal padding of the Button.
|
|
13161
13624
|
/// @group button
|
|
13162
13625
|
$kendo-button-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
13163
|
-
///
|
|
13626
|
+
/// The horizontal padding of the small Button.
|
|
13627
|
+
/// @group button
|
|
13628
|
+
$kendo-button-sm-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
13629
|
+
/// The horizontal padding of the medium Button.
|
|
13630
|
+
/// @group button
|
|
13631
|
+
$kendo-button-md-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
13632
|
+
/// The horizontal padding of the large Button.
|
|
13633
|
+
/// @group button
|
|
13634
|
+
$kendo-button-lg-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
13635
|
+
|
|
13636
|
+
/// The vertical padding of the Button.
|
|
13164
13637
|
/// @group button
|
|
13165
13638
|
$kendo-button-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
13166
|
-
///
|
|
13639
|
+
/// The vertical padding of the small Button.
|
|
13640
|
+
/// @group button
|
|
13641
|
+
$kendo-button-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
|
|
13642
|
+
/// The vertical padding of the medium Button.
|
|
13643
|
+
/// @group button
|
|
13644
|
+
$kendo-button-md-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
13645
|
+
/// The vertical padding of the large Button.
|
|
13646
|
+
/// @group button
|
|
13647
|
+
$kendo-button-lg-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
13648
|
+
|
|
13649
|
+
/// The font family of the Button.
|
|
13167
13650
|
/// @group button
|
|
13168
13651
|
$kendo-button-font-family: $kendo-font-family !default;
|
|
13169
|
-
|
|
13652
|
+
|
|
13653
|
+
/// The font size of the Button.
|
|
13170
13654
|
/// @group button
|
|
13171
13655
|
$kendo-button-font-size: $kendo-font-size-md !default;
|
|
13172
|
-
///
|
|
13656
|
+
/// The font size of the small Button.
|
|
13173
13657
|
/// @group button
|
|
13174
|
-
$kendo-button-line-height: $kendo-line-height-md !default;
|
|
13175
|
-
|
|
13176
|
-
$kendo-button-sm-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
13177
|
-
$kendo-button-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
|
|
13178
13658
|
$kendo-button-sm-font-size: $kendo-font-size-md !default;
|
|
13179
|
-
|
|
13180
|
-
|
|
13181
|
-
$kendo-button-md-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
13182
|
-
$kendo-button-md-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
13659
|
+
/// The font size of the medium Button.
|
|
13660
|
+
/// @group button
|
|
13183
13661
|
$kendo-button-md-font-size: $kendo-font-size-md !default;
|
|
13184
|
-
|
|
13185
|
-
|
|
13186
|
-
$kendo-button-lg-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
13187
|
-
$kendo-button-lg-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
13662
|
+
/// The font size of the large Button.
|
|
13663
|
+
/// @group button
|
|
13188
13664
|
$kendo-button-lg-font-size: $kendo-font-size-lg !default;
|
|
13665
|
+
|
|
13666
|
+
/// The line height used along with $kendo-font-size.
|
|
13667
|
+
/// @group button
|
|
13668
|
+
$kendo-button-line-height: $kendo-line-height-md !default;
|
|
13669
|
+
/// The line height used along with the $kendo-font-size of the small Button.
|
|
13670
|
+
/// @group button
|
|
13671
|
+
$kendo-button-sm-line-height: $kendo-line-height-md !default;
|
|
13672
|
+
/// The line height used along with the $kendo-font-size of the medium Button.
|
|
13673
|
+
/// @group button
|
|
13674
|
+
$kendo-button-md-line-height: $kendo-line-height-md !default;
|
|
13675
|
+
/// The line height used along with the $kendo-font-size of the large Button.
|
|
13676
|
+
/// @group button
|
|
13189
13677
|
$kendo-button-lg-line-height: $kendo-line-height-lg !default;
|
|
13190
13678
|
|
|
13191
|
-
///
|
|
13679
|
+
/// The calculated height of the Button.
|
|
13192
13680
|
/// @group button
|
|
13193
13681
|
$kendo-button-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-button-padding-y * 2} + #{$kendo-button-border-width * 2} ) !default;
|
|
13194
13682
|
$kendo-button-sm-calc-size: calc( #{$kendo-button-sm-line-height * 1em} + #{$kendo-button-sm-padding-y * 2} + #{$kendo-button-border-width * 2} ) !default;
|
|
13195
13683
|
$kendo-button-md-calc-size: calc( #{$kendo-button-md-line-height * 1em} + #{$kendo-button-md-padding-y * 2} + #{$kendo-button-border-width * 2} ) !default;
|
|
13196
13684
|
$kendo-button-lg-calc-size: calc( #{$kendo-button-lg-line-height * 1em} + #{$kendo-button-lg-padding-y * 2} + #{$kendo-button-border-width * 2} ) !default;
|
|
13197
13685
|
|
|
13198
|
-
///
|
|
13686
|
+
/// The calculated inner height of the Button excluding the border width.
|
|
13199
13687
|
/// @group button
|
|
13200
13688
|
$kendo-button-inner-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-button-padding-y * 2} ) !default;
|
|
13201
13689
|
$kendo-button-sm-inner-calc-size: calc( #{$kendo-button-sm-line-height * 1em} + #{$kendo-button-sm-padding-y * 2} ) !default;
|
|
13202
13690
|
$kendo-button-md-inner-calc-size: calc( #{$kendo-button-md-line-height * 1em} + #{$kendo-button-md-padding-y * 2} ) !default;
|
|
13203
13691
|
$kendo-button-lg-inner-calc-size: calc( #{$kendo-button-lg-line-height * 1em} + #{$kendo-button-lg-padding-y * 2} ) !default;
|
|
13204
13692
|
|
|
13693
|
+
/// The sizes map for the Button.
|
|
13694
|
+
/// @group button
|
|
13205
13695
|
$kendo-button-sizes: (
|
|
13206
13696
|
sm: (
|
|
13207
13697
|
padding-x: $kendo-button-sm-padding-x,
|
|
@@ -13223,110 +13713,110 @@ $kendo-button-sizes: (
|
|
|
13223
13713
|
)
|
|
13224
13714
|
) !default;
|
|
13225
13715
|
|
|
13226
|
-
///
|
|
13716
|
+
/// The theme colors map for the Button.
|
|
13227
13717
|
/// @group button
|
|
13228
13718
|
$kendo-button-theme-colors: k-map-merge(
|
|
13229
13719
|
$kendo-theme-colors,
|
|
13230
13720
|
( "base": $kendo-base-bg )
|
|
13231
13721
|
) !default;
|
|
13232
13722
|
|
|
13233
|
-
/// The base background of the
|
|
13723
|
+
/// The base background of the Button.
|
|
13234
13724
|
/// @group button
|
|
13235
13725
|
$kendo-button-bg: $kendo-base-bg !default;
|
|
13236
|
-
/// The base text color of the
|
|
13726
|
+
/// The base text color of the Button.
|
|
13237
13727
|
/// @group button
|
|
13238
13728
|
$kendo-button-text: $kendo-base-text !default;
|
|
13239
|
-
/// The base border color of the
|
|
13729
|
+
/// The base border color of the Button.
|
|
13240
13730
|
/// @group button
|
|
13241
13731
|
$kendo-button-border: k-try-shade( $kendo-button-bg, 2 ) !default;
|
|
13242
|
-
/// The base background gradient of the
|
|
13732
|
+
/// The base background gradient of the Button.
|
|
13243
13733
|
/// @group button
|
|
13244
13734
|
$kendo-button-gradient: $kendo-base-gradient !default;
|
|
13245
|
-
/// The base shadow of the
|
|
13735
|
+
/// The base shadow of the Button.
|
|
13246
13736
|
/// @group button
|
|
13247
13737
|
$kendo-button-shadow: null !default;
|
|
13248
13738
|
|
|
13249
|
-
/// The base background of hovered
|
|
13739
|
+
/// The base background of the hovered Button.
|
|
13250
13740
|
/// @group button
|
|
13251
13741
|
$kendo-button-hover-bg: k-try-shade( $kendo-button-bg, 1 ) !default;
|
|
13252
|
-
/// The base text color of hovered
|
|
13742
|
+
/// The base text color of the hovered Button.
|
|
13253
13743
|
/// @group button
|
|
13254
13744
|
$kendo-button-hover-text: null !default;
|
|
13255
|
-
/// The base border color of hovered
|
|
13745
|
+
/// The base border color of the hovered Button.
|
|
13256
13746
|
/// @group button
|
|
13257
13747
|
$kendo-button-hover-border: k-try-shade( $kendo-button-bg, 3 ) !default;
|
|
13258
|
-
/// The base background gradient of hovered
|
|
13748
|
+
/// The base background gradient of the hovered Button.
|
|
13259
13749
|
/// @group button
|
|
13260
13750
|
$kendo-button-hover-gradient: null !default;
|
|
13261
|
-
/// The base shadow of hovered
|
|
13751
|
+
/// The base shadow of the hovered Button.
|
|
13262
13752
|
/// @group button
|
|
13263
13753
|
$kendo-button-hover-shadow: null !default;
|
|
13264
13754
|
|
|
13265
|
-
/// The base background color of active
|
|
13755
|
+
/// The base background color of the active Button.
|
|
13266
13756
|
/// @group button
|
|
13267
13757
|
$kendo-button-active-bg: k-try-shade( $kendo-button-bg, 2 ) !default;
|
|
13268
|
-
/// The base text color of active
|
|
13758
|
+
/// The base text color of the active Button.
|
|
13269
13759
|
/// @group button
|
|
13270
13760
|
$kendo-button-active-text: null !default;
|
|
13271
|
-
/// The base border color of active
|
|
13761
|
+
/// The base border color of the active Button.
|
|
13272
13762
|
/// @group button
|
|
13273
13763
|
$kendo-button-active-border: k-try-shade( $kendo-button-bg, 4 ) !default;
|
|
13274
|
-
/// The base background gradient of active
|
|
13764
|
+
/// The base background gradient of the active Button.
|
|
13275
13765
|
/// @group button
|
|
13276
13766
|
$kendo-button-active-gradient: null !default;
|
|
13277
|
-
/// The base shadow of active
|
|
13767
|
+
/// The base shadow of the active Button.
|
|
13278
13768
|
/// @group button
|
|
13279
13769
|
$kendo-button-active-shadow: null !default;
|
|
13280
13770
|
|
|
13281
|
-
/// The base background color of selected
|
|
13771
|
+
/// The base background color of the selected Button.
|
|
13282
13772
|
/// @group button
|
|
13283
13773
|
$kendo-button-selected-bg: $kendo-color-primary !default;
|
|
13284
|
-
/// The text color of selected
|
|
13774
|
+
/// The text color of the selected Button.
|
|
13285
13775
|
/// @group button
|
|
13286
13776
|
$kendo-button-selected-text: k-contrast-legacy( $kendo-button-selected-bg ) !default;
|
|
13287
|
-
/// The border color of selected
|
|
13777
|
+
/// The border color of the selected Button.
|
|
13288
13778
|
/// @group button
|
|
13289
13779
|
$kendo-button-selected-border: $kendo-button-selected-bg !default;
|
|
13290
|
-
/// The background gradient of selected
|
|
13780
|
+
/// The background gradient of the selected Button.
|
|
13291
13781
|
/// @group button
|
|
13292
13782
|
$kendo-button-selected-gradient: $kendo-button-active-gradient !default;
|
|
13293
|
-
/// The base shadow of selected
|
|
13783
|
+
/// The base shadow of the selected Button.
|
|
13294
13784
|
/// @group button
|
|
13295
13785
|
$kendo-button-selected-shadow: $kendo-button-active-shadow !default;
|
|
13296
13786
|
|
|
13297
|
-
/// The base background of focused
|
|
13787
|
+
/// The base background of the focused Button.
|
|
13298
13788
|
/// @group button
|
|
13299
13789
|
$kendo-button-focus-bg: null !default;
|
|
13300
|
-
/// The base text color of focused
|
|
13790
|
+
/// The base text color of the focused Button.
|
|
13301
13791
|
/// @group button
|
|
13302
13792
|
$kendo-button-focus-text: null !default;
|
|
13303
|
-
/// The base border color of focused
|
|
13793
|
+
/// The base border color of the focused Button.
|
|
13304
13794
|
/// @group button
|
|
13305
13795
|
$kendo-button-focus-border: null !default;
|
|
13306
|
-
/// The base background gradient of focused
|
|
13796
|
+
/// The base background gradient of the focused Button.
|
|
13307
13797
|
/// @group button
|
|
13308
13798
|
$kendo-button-focus-gradient: null !default;
|
|
13309
|
-
/// The base shadow of focused
|
|
13799
|
+
/// The base shadow of the focused Button.
|
|
13310
13800
|
/// @group button
|
|
13311
13801
|
$kendo-button-focus-shadow: 0 0 4px 0 rgba( $kendo-button-border, .75 ) !default;
|
|
13312
13802
|
|
|
13313
|
-
/// The base background of disabled
|
|
13803
|
+
/// The base background of the disabled Button.
|
|
13314
13804
|
/// @group button
|
|
13315
13805
|
$kendo-button-disabled-bg: null !default;
|
|
13316
|
-
/// The base text color of disabled
|
|
13806
|
+
/// The base text color of the disabled Button.
|
|
13317
13807
|
/// @group button
|
|
13318
13808
|
$kendo-button-disabled-text: null !default;
|
|
13319
|
-
/// The base border color of disabled
|
|
13809
|
+
/// The base border color of the disabled Button.
|
|
13320
13810
|
/// @group button
|
|
13321
13811
|
$kendo-button-disabled-border: null !default;
|
|
13322
|
-
/// The base background gradient of disabled
|
|
13812
|
+
/// The base background gradient of the disabled Button.
|
|
13323
13813
|
/// @group button
|
|
13324
13814
|
$kendo-button-disabled-gradient: null !default;
|
|
13325
|
-
/// The base shadow of disabled
|
|
13815
|
+
/// The base shadow of the disabled Button.
|
|
13326
13816
|
/// @group button
|
|
13327
13817
|
$kendo-button-disabled-shadow: null !default;
|
|
13328
13818
|
|
|
13329
|
-
// Solid
|
|
13819
|
+
// Solid Button
|
|
13330
13820
|
$kendo-solid-button-gradient: $kendo-base-gradient !default;
|
|
13331
13821
|
$kendo-solid-button-shade-function: "k-try-shade" !default;
|
|
13332
13822
|
$kendo-solid-button-shade-text-amount: 0 !default;
|
|
@@ -13343,38 +13833,38 @@ $kendo-solid-button-shadow-blur: 4px !default;
|
|
|
13343
13833
|
$kendo-solid-button-shadow-spread: 0px !default;
|
|
13344
13834
|
$kendo-solid-button-shadow-opacity: .75 !default;
|
|
13345
13835
|
|
|
13346
|
-
// Outline
|
|
13836
|
+
// Outline Button
|
|
13347
13837
|
$kendo-outline-button-shadow: true !default;
|
|
13348
13838
|
$kendo-outline-button-shadow-blur: 4px !default;
|
|
13349
13839
|
$kendo-outline-button-shadow-spread: 0px !default;
|
|
13350
13840
|
$kendo-outline-button-shadow-opacity: .75 !default;
|
|
13351
13841
|
|
|
13352
|
-
// Link
|
|
13842
|
+
// Link Button
|
|
13353
13843
|
$kendo-link-button-shadow: true !default;
|
|
13354
13844
|
$kendo-link-button-shadow-blur: 4px !default;
|
|
13355
13845
|
$kendo-link-button-shadow-spread: 0px !default;
|
|
13356
13846
|
$kendo-link-button-shadow-opacity: .75 !default;
|
|
13357
13847
|
|
|
13358
|
-
// Clear
|
|
13848
|
+
// Clear Button
|
|
13359
13849
|
$kendo-clear-button-focus-opacity: .1 !default;
|
|
13360
13850
|
|
|
13361
|
-
/// The overlay opacity of hovered flat
|
|
13851
|
+
/// The overlay opacity of the hovered flat Button. Used to create a background for the flat Button.
|
|
13362
13852
|
/// @group button
|
|
13363
13853
|
$kendo-flat-button-hover-opacity: .08 !default;
|
|
13364
|
-
/// The overlay opacity of focused flat
|
|
13854
|
+
/// The overlay opacity of the focused flat Button. Used to create a background for the flat Button.
|
|
13365
13855
|
/// @group button
|
|
13366
13856
|
$kendo-flat-button-focus-opacity: .12 !default;
|
|
13367
|
-
/// The overlay opacity of active flat
|
|
13857
|
+
/// The overlay opacity of the active flat Button. Used to create background for the flat Button.
|
|
13368
13858
|
/// @group button
|
|
13369
13859
|
$kendo-flat-button-active-opacity: .16 !default;
|
|
13370
|
-
/// The overlay opacity of selected flat
|
|
13860
|
+
/// The overlay opacity of the selected flat Button. Used to create background for the flat Button.
|
|
13371
13861
|
/// @group button
|
|
13372
13862
|
$kendo-flat-button-selected-opacity: .2 !default;
|
|
13373
|
-
/// The opacity of the flat
|
|
13863
|
+
/// The opacity of the flat Button focus ring. Used to create a border for the flat Button.
|
|
13374
13864
|
/// @group button
|
|
13375
13865
|
$kendo-flat-button-focus-ring-opacity: .12 !default;
|
|
13376
13866
|
|
|
13377
|
-
/// The color transition of the flat
|
|
13867
|
+
/// The color transition of the flat Button.
|
|
13378
13868
|
/// @group button
|
|
13379
13869
|
$kendo-button-transition: color .2s ease-in-out !default;
|
|
13380
13870
|
|
|
@@ -13383,47 +13873,71 @@ $kendo-button-transition: color .2s ease-in-out !default;
|
|
|
13383
13873
|
|
|
13384
13874
|
// Chip
|
|
13385
13875
|
|
|
13386
|
-
///
|
|
13876
|
+
/// The width of the border around the Chip.
|
|
13387
13877
|
/// @group chip
|
|
13388
13878
|
$kendo-chip-border-width: 1px !default;
|
|
13389
|
-
/// The spacing between the text and the icons of the
|
|
13879
|
+
/// The spacing between the text and the icons of the Chip.
|
|
13390
13880
|
/// @group chip
|
|
13391
13881
|
$kendo-chip-spacing: k-map-get( $kendo-spacing, 1 ) !default;
|
|
13392
13882
|
|
|
13393
|
-
///
|
|
13883
|
+
/// The horizontal padding of the Chip.
|
|
13394
13884
|
/// @group chip
|
|
13395
13885
|
$kendo-chip-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
13886
|
+
/// The horizontal padding of the small Chip.
|
|
13887
|
+
/// @group chip
|
|
13396
13888
|
$kendo-chip-sm-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
13889
|
+
/// The horizontal padding of the medium Chip.
|
|
13890
|
+
/// @group chip
|
|
13397
13891
|
$kendo-chip-md-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
13892
|
+
/// The horizontal padding of the large Chip.
|
|
13893
|
+
/// @group chip
|
|
13398
13894
|
$kendo-chip-lg-padding-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
13399
13895
|
|
|
13400
|
-
///
|
|
13896
|
+
/// The vertical padding of the Chip.
|
|
13401
13897
|
/// @group chip
|
|
13402
13898
|
$kendo-chip-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
13899
|
+
/// The vertical padding of the small Chip.
|
|
13900
|
+
/// @group chip
|
|
13403
13901
|
$kendo-chip-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
|
|
13902
|
+
/// The vertical padding of the medium Chip.
|
|
13903
|
+
/// @group chip
|
|
13404
13904
|
$kendo-chip-md-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
13905
|
+
/// The vertical padding of the large Chip.
|
|
13906
|
+
/// @group chip
|
|
13405
13907
|
$kendo-chip-lg-padding-y: k-map-get( $kendo-spacing, 1.5 ) !default;
|
|
13406
13908
|
|
|
13407
|
-
///
|
|
13909
|
+
/// The font size of the Chip.
|
|
13408
13910
|
/// @group chip
|
|
13409
13911
|
$kendo-chip-font-size: $kendo-font-size-md !default;
|
|
13912
|
+
/// The font size of the small Chip.
|
|
13913
|
+
/// @group chip
|
|
13410
13914
|
$kendo-chip-sm-font-size: $kendo-font-size-md !default;
|
|
13915
|
+
/// The font size of the medium Chip.
|
|
13916
|
+
/// @group chip
|
|
13411
13917
|
$kendo-chip-md-font-size: $kendo-font-size-md !default;
|
|
13918
|
+
/// The font size of the large Chip.
|
|
13919
|
+
/// @group chip
|
|
13412
13920
|
$kendo-chip-lg-font-size: $kendo-font-size-md !default;
|
|
13413
13921
|
|
|
13414
|
-
///
|
|
13922
|
+
/// The Chip's line height that is related to the $kendo-font-size.
|
|
13415
13923
|
/// @group chip
|
|
13416
13924
|
$kendo-chip-line-height: 1 !default;
|
|
13925
|
+
/// The small Chip's line height that is related to the $kendo-font-size.
|
|
13926
|
+
/// @group chip
|
|
13417
13927
|
$kendo-chip-sm-line-height: $kendo-chip-line-height !default;
|
|
13928
|
+
/// The medium Chip's line height that is related to the $kendo-font-size.
|
|
13929
|
+
/// @group chip
|
|
13418
13930
|
$kendo-chip-md-line-height: $kendo-chip-line-height !default;
|
|
13931
|
+
/// The large Chip's line height that is related to the $kendo-font-size.
|
|
13932
|
+
/// @group chip
|
|
13419
13933
|
$kendo-chip-lg-line-height: $kendo-chip-line-height !default;
|
|
13420
13934
|
|
|
13421
|
-
///
|
|
13935
|
+
/// The calculated height of the Chip.
|
|
13422
13936
|
/// @group chip
|
|
13423
13937
|
$kendo-chip-calc-size: calc( #{$kendo-chip-line-height * 1em} + #{$kendo-chip-padding-y * 2} + #{$kendo-chip-border-width * 2} ) !default;
|
|
13424
13938
|
$kendo-chip-sm-calc-size: calc( #{$kendo-chip-sm-line-height * 1em} + #{$kendo-chip-sm-padding-y * 2} + #{$kendo-chip-border-width * 2} ) !default;
|
|
13425
13939
|
|
|
13426
|
-
///
|
|
13940
|
+
/// The map with the sizes of the Chip.
|
|
13427
13941
|
/// @group chip
|
|
13428
13942
|
$kendo-chip-sizes: (
|
|
13429
13943
|
sm: (
|
|
@@ -13446,11 +13960,11 @@ $kendo-chip-sizes: (
|
|
|
13446
13960
|
)
|
|
13447
13961
|
) !default;
|
|
13448
13962
|
|
|
13449
|
-
/// The base background of the
|
|
13963
|
+
/// The base background of the Chip.
|
|
13450
13964
|
/// @group chip
|
|
13451
13965
|
$kendo-chip-base-bg: $kendo-button-bg !default;
|
|
13452
13966
|
|
|
13453
|
-
///
|
|
13967
|
+
/// The theme colors map for the Chip.
|
|
13454
13968
|
/// @group chip
|
|
13455
13969
|
$kendo-chip-theme-colors: (
|
|
13456
13970
|
"base": $kendo-chip-base-bg,
|
|
@@ -13460,73 +13974,73 @@ $kendo-chip-theme-colors: (
|
|
|
13460
13974
|
"success": k-map-get( $kendo-theme-colors, "success" )
|
|
13461
13975
|
) !default;
|
|
13462
13976
|
|
|
13463
|
-
/// The base background color of solid
|
|
13977
|
+
/// The base background color of the solid Chip.
|
|
13464
13978
|
/// @group chip
|
|
13465
13979
|
$kendo-chip-solid-bg: $kendo-chip-base-bg !default;
|
|
13466
|
-
/// The base text color of solid
|
|
13980
|
+
/// The base text color of the solid Chip.
|
|
13467
13981
|
/// @group chip
|
|
13468
13982
|
$kendo-chip-solid-text: $kendo-button-text !default;
|
|
13469
|
-
/// The base border color of solid
|
|
13983
|
+
/// The base border color of the solid Chip.
|
|
13470
13984
|
/// @group chip
|
|
13471
13985
|
$kendo-chip-solid-border: $kendo-button-border !default;
|
|
13472
|
-
/// The base shadow of solid
|
|
13986
|
+
/// The base shadow of the solid Chip.
|
|
13473
13987
|
/// @group chip
|
|
13474
13988
|
$kendo-chip-solid-shadow: 0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) ) !default;
|
|
13475
|
-
/// The base gradient of solid
|
|
13989
|
+
/// The base gradient of the solid Chip.
|
|
13476
13990
|
/// @group chip
|
|
13477
13991
|
$kendo-chip-solid-gradient: $kendo-button-gradient !default;
|
|
13478
13992
|
|
|
13479
|
-
/// The base background color of focused solid
|
|
13993
|
+
/// The base background color of the focused solid Chip.
|
|
13480
13994
|
/// @group chip
|
|
13481
13995
|
$kendo-chip-solid-focus-bg: null !default;
|
|
13482
|
-
/// The base text color of focused solid
|
|
13996
|
+
/// The base text color of the focused solid Chip.
|
|
13483
13997
|
/// @group chip
|
|
13484
13998
|
$kendo-chip-solid-focus-text: null !default;
|
|
13485
13999
|
|
|
13486
|
-
/// The base background color of hovered solid
|
|
14000
|
+
/// The base background color of the hovered solid Chip.
|
|
13487
14001
|
/// @group chip
|
|
13488
14002
|
$kendo-chip-solid-hover-bg: $kendo-button-hover-bg !default;
|
|
13489
|
-
/// The base text color of hovered solid
|
|
14003
|
+
/// The base text color of the hovered solid Chip.
|
|
13490
14004
|
/// @group chip
|
|
13491
14005
|
$kendo-chip-solid-hover-text: null !default;
|
|
13492
14006
|
|
|
13493
|
-
/// The base background color of selected solid
|
|
14007
|
+
/// The base background color of the selected solid Chip
|
|
13494
14008
|
/// @group chip
|
|
13495
14009
|
$kendo-chip-solid-selected-bg: $kendo-button-active-bg !default;
|
|
13496
|
-
/// The base text color of selected solid
|
|
14010
|
+
/// The base text color of the selected solid Chip.
|
|
13497
14011
|
/// @group chip
|
|
13498
14012
|
$kendo-chip-solid-selected-text: null !default;
|
|
13499
14013
|
|
|
13500
|
-
/// The base background color of outline
|
|
14014
|
+
/// The base background color of the outline Chip.
|
|
13501
14015
|
/// @group chip
|
|
13502
14016
|
$kendo-chip-outline-bg: $kendo-component-bg !default;
|
|
13503
|
-
/// The base text color of outline
|
|
14017
|
+
/// The base text color of the outline Chip.
|
|
13504
14018
|
/// @group chip
|
|
13505
14019
|
$kendo-chip-outline-text: $kendo-chip-solid-text !default;
|
|
13506
|
-
/// The base border color of outline
|
|
14020
|
+
/// The base border color of the outline Chip.
|
|
13507
14021
|
/// @group chip
|
|
13508
14022
|
$kendo-chip-outline-border: $kendo-chip-outline-text !default;
|
|
13509
|
-
/// The base shadow of outline
|
|
14023
|
+
/// The base shadow of the outline Chip.
|
|
13510
14024
|
/// @group chip
|
|
13511
14025
|
$kendo-chip-outline-shadow: 0 0 0 2px if( $kendo-is-dark-theme, rgba( $kendo-color-white, .16 ), rgba( $kendo-color-black, .16 ) ) !default;
|
|
13512
14026
|
|
|
13513
|
-
/// The base background color of hovered outline
|
|
14027
|
+
/// The base background color of the hovered outline Chip.
|
|
13514
14028
|
/// @group chip
|
|
13515
14029
|
$kendo-chip-outline-hover-bg: $kendo-chip-outline-text !default;
|
|
13516
|
-
/// The base text color of hovered outline
|
|
14030
|
+
/// The base text color of the hovered outline Chip.
|
|
13517
14031
|
/// @group chip
|
|
13518
14032
|
$kendo-chip-outline-hover-text: k-contrast-legacy( $kendo-chip-outline-hover-bg ) !default;
|
|
13519
14033
|
|
|
13520
|
-
/// The base background color of selected outline
|
|
14034
|
+
/// The base background color of the selected outline Chip.
|
|
13521
14035
|
/// @group chip
|
|
13522
14036
|
$kendo-chip-outline-selected-bg: $kendo-chip-outline-hover-bg !default;
|
|
13523
|
-
/// The base text color of selected outline
|
|
14037
|
+
/// The base text color of the selected outline Chip.
|
|
13524
14038
|
/// @group chip
|
|
13525
14039
|
$kendo-chip-outline-selected-text: $kendo-chip-outline-hover-text !default;
|
|
13526
14040
|
|
|
13527
14041
|
// Chip List
|
|
13528
14042
|
|
|
13529
|
-
/// The sizes of the
|
|
14043
|
+
/// The sizes of the Chip list.
|
|
13530
14044
|
/// @group chip
|
|
13531
14045
|
$kendo-chip-list-sizes: (
|
|
13532
14046
|
sm: k-map-get( $kendo-spacing, 1 ),
|
|
@@ -16954,49 +17468,77 @@ $kendo-actions-gradient: null !default;
|
|
|
16954
17468
|
// #region @import "../input/_variables.scss"; -> scss/input/_variables.scss
|
|
16955
17469
|
// Input
|
|
16956
17470
|
|
|
16957
|
-
///
|
|
17471
|
+
/// The default width of the Input components.
|
|
16958
17472
|
/// @group input
|
|
16959
17473
|
$kendo-input-default-width: 100% !default;
|
|
16960
17474
|
|
|
16961
|
-
///
|
|
17475
|
+
/// The border width of the Input components.
|
|
16962
17476
|
/// @group input
|
|
16963
17477
|
$kendo-input-border-width: 1px !default;
|
|
16964
17478
|
$kendo-input-border-height: ( $kendo-input-border-width * 2 ) !default;
|
|
16965
|
-
///
|
|
17479
|
+
/// The border radius of the Input components.
|
|
16966
17480
|
/// @group input
|
|
16967
17481
|
$kendo-input-border-radius: null !default;
|
|
16968
17482
|
|
|
16969
|
-
///
|
|
17483
|
+
/// The horizontal padding of the Input components.
|
|
16970
17484
|
/// @group input
|
|
16971
17485
|
$kendo-input-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
16972
|
-
///
|
|
17486
|
+
/// The horizontal padding of the small Input components.
|
|
17487
|
+
/// @group input
|
|
17488
|
+
$kendo-input-sm-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
17489
|
+
/// The horizontal padding of the medium Input components.
|
|
17490
|
+
/// @group input
|
|
17491
|
+
$kendo-input-md-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
17492
|
+
/// The horizontal padding of the large Input components.
|
|
17493
|
+
/// @group input
|
|
17494
|
+
$kendo-input-lg-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
17495
|
+
|
|
17496
|
+
/// The vertical padding of the Input components.
|
|
16973
17497
|
/// @group input
|
|
16974
17498
|
$kendo-input-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
17499
|
+
/// The vertical padding of the small Input components.
|
|
17500
|
+
/// @group input
|
|
17501
|
+
$kendo-input-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
|
|
17502
|
+
/// The vertical padding of the medium Input components.
|
|
17503
|
+
/// @group input
|
|
17504
|
+
$kendo-input-md-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
17505
|
+
/// The vertical padding of the large Input components.
|
|
17506
|
+
/// @group input
|
|
17507
|
+
$kendo-input-lg-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
17508
|
+
|
|
16975
17509
|
/// Font family of input components.
|
|
16976
17510
|
/// @group input
|
|
16977
17511
|
$kendo-input-font-family: $kendo-font-family !default;
|
|
17512
|
+
|
|
16978
17513
|
/// Font size of input components.
|
|
16979
17514
|
/// @group input
|
|
16980
17515
|
$kendo-input-font-size: $kendo-font-size-md !default;
|
|
17516
|
+
/// The font size of the small Input components.
|
|
17517
|
+
/// @group input
|
|
17518
|
+
$kendo-input-sm-font-size: $kendo-font-size-md !default;
|
|
17519
|
+
/// The font size of the medium Input components.
|
|
17520
|
+
/// @group input
|
|
17521
|
+
$kendo-input-md-font-size: $kendo-font-size-md !default;
|
|
17522
|
+
/// The font size of the large Input components.
|
|
17523
|
+
/// @group input
|
|
17524
|
+
$kendo-input-lg-font-size: $kendo-font-size-lg !default;
|
|
17525
|
+
|
|
17526
|
+
|
|
16981
17527
|
/// Line height of input components.
|
|
16982
17528
|
/// @group input
|
|
16983
17529
|
$kendo-input-line-height: $kendo-line-height-md !default;
|
|
16984
|
-
|
|
16985
|
-
|
|
16986
|
-
$kendo-input-sm-padding-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
|
|
16987
|
-
$kendo-input-sm-font-size: $kendo-font-size-md !default;
|
|
17530
|
+
/// The line height of the small Input components.
|
|
17531
|
+
/// @group input
|
|
16988
17532
|
$kendo-input-sm-line-height: $kendo-line-height-md !default;
|
|
16989
|
-
|
|
16990
|
-
|
|
16991
|
-
$kendo-input-md-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
16992
|
-
$kendo-input-md-font-size: $kendo-font-size-md !default;
|
|
17533
|
+
/// The line height of the medium Input components.
|
|
17534
|
+
/// @group input
|
|
16993
17535
|
$kendo-input-md-line-height: $kendo-line-height-md !default;
|
|
16994
|
-
|
|
16995
|
-
|
|
16996
|
-
$kendo-input-lg-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
16997
|
-
$kendo-input-lg-font-size: $kendo-font-size-lg !default;
|
|
17536
|
+
/// The line height of the large Input components.
|
|
17537
|
+
/// @group input
|
|
16998
17538
|
$kendo-input-lg-line-height: $kendo-line-height-lg !default;
|
|
16999
17539
|
|
|
17540
|
+
/// The sizes map for the Input components.
|
|
17541
|
+
/// @group input
|
|
17000
17542
|
$kendo-input-sizes: (
|
|
17001
17543
|
sm: (
|
|
17002
17544
|
padding-x: $kendo-input-sm-padding-x,
|
|
@@ -17027,142 +17569,344 @@ $kendo-input-sizes: (
|
|
|
17027
17569
|
)
|
|
17028
17570
|
) !default;
|
|
17029
17571
|
|
|
17572
|
+
/// The background color of the Input components.
|
|
17573
|
+
/// @group input
|
|
17030
17574
|
$kendo-input-bg: $kendo-component-bg !default;
|
|
17575
|
+
/// The text color of the Input components.
|
|
17576
|
+
/// @group input
|
|
17031
17577
|
$kendo-input-text: $kendo-component-text !default;
|
|
17578
|
+
/// The border color of the Input components.
|
|
17579
|
+
/// @group input
|
|
17032
17580
|
$kendo-input-border: $kendo-button-border !default;
|
|
17581
|
+
/// The shadow of the Input components.
|
|
17582
|
+
/// @group input
|
|
17033
17583
|
$kendo-input-shadow: null !default;
|
|
17034
17584
|
|
|
17585
|
+
/// The background color of the hovered Input components.
|
|
17586
|
+
/// @group input
|
|
17035
17587
|
$kendo-input-hover-bg: null !default;
|
|
17588
|
+
/// The text color of the hovered Input components.
|
|
17589
|
+
/// @group input
|
|
17036
17590
|
$kendo-input-hover-text: null !default;
|
|
17591
|
+
/// The border color of the hovered Input components.
|
|
17592
|
+
/// @group input
|
|
17037
17593
|
$kendo-input-hover-border: $kendo-button-hover-border !default;
|
|
17594
|
+
/// The shadow of the hovered Input components.
|
|
17595
|
+
/// @group input
|
|
17038
17596
|
$kendo-input-hover-shadow: null !default;
|
|
17039
17597
|
|
|
17598
|
+
/// The background color of the focused Input components.
|
|
17599
|
+
/// @group input
|
|
17040
17600
|
$kendo-input-focus-bg: null !default;
|
|
17601
|
+
/// The text color of the focused Input components.
|
|
17602
|
+
/// @group input
|
|
17041
17603
|
$kendo-input-focus-text: null !default;
|
|
17604
|
+
/// The border color of the focused Input components.
|
|
17605
|
+
/// @group input
|
|
17042
17606
|
$kendo-input-focus-border: rgba( black, .1 ) !default;
|
|
17607
|
+
/// The shadow of the focused Input components.
|
|
17608
|
+
/// @group input
|
|
17043
17609
|
$kendo-input-focus-shadow: 0 2px 4px 0 rgba( black, .03 ), 0 4px 5px 0 rgba( black, .04 ) !default;
|
|
17044
17610
|
|
|
17611
|
+
/// The background color of the selected Input components.
|
|
17612
|
+
/// @group input
|
|
17613
|
+
$kendo-input-selected-bg: null !default;
|
|
17614
|
+
/// The text color of the selected Input components.
|
|
17615
|
+
/// @group input
|
|
17616
|
+
$kendo-input-selected-text: null !default;
|
|
17617
|
+
|
|
17618
|
+
/// The background color of the disabled Input components.
|
|
17619
|
+
/// @group input
|
|
17045
17620
|
$kendo-input-disabled-bg: null !default;
|
|
17621
|
+
/// The text color of the disabled Input components.
|
|
17622
|
+
/// @group input
|
|
17046
17623
|
$kendo-input-disabled-text: null !default;
|
|
17624
|
+
/// The border color of the disabled Input components.
|
|
17625
|
+
/// @group input
|
|
17047
17626
|
$kendo-input-disabled-border: null !default;
|
|
17627
|
+
/// The gradient of the disabled Input components.
|
|
17628
|
+
/// @group input
|
|
17048
17629
|
$kendo-input-disabled-gradient: null !default;
|
|
17630
|
+
/// The shadow of the disabled Input components.
|
|
17631
|
+
/// @group input
|
|
17049
17632
|
$kendo-input-disabled-shadow: null !default;
|
|
17050
17633
|
|
|
17634
|
+
/// The background color of the outline Input components.
|
|
17635
|
+
/// @group input
|
|
17051
17636
|
$kendo-input-outline-bg: null !default;
|
|
17637
|
+
/// The text color of the outline Input components.
|
|
17638
|
+
/// @group input
|
|
17052
17639
|
$kendo-input-outline-text: null !default;
|
|
17640
|
+
/// The border color of the outline Input components.
|
|
17641
|
+
/// @group input
|
|
17053
17642
|
$kendo-input-outline-border: rgba( $kendo-button-text, .5) !default;
|
|
17054
17643
|
|
|
17644
|
+
/// The background color of the outline hovered Input components.
|
|
17645
|
+
/// @group input
|
|
17055
17646
|
$kendo-input-outline-hover-bg: null !default;
|
|
17647
|
+
/// The text color of the outline hovered Input components.
|
|
17648
|
+
/// @group input
|
|
17056
17649
|
$kendo-input-outline-hover-text: null !default;
|
|
17650
|
+
/// The border color of the outline hovered Input components.
|
|
17651
|
+
/// @group input
|
|
17057
17652
|
$kendo-input-outline-hover-border: rgba( $kendo-button-text, .8) !default;
|
|
17058
17653
|
|
|
17654
|
+
/// The background color of the outline focused Input components.
|
|
17655
|
+
/// @group input
|
|
17059
17656
|
$kendo-input-outline-focus-bg: null !default;
|
|
17657
|
+
/// The text color of the outline focused Input components.
|
|
17658
|
+
/// @group input
|
|
17060
17659
|
$kendo-input-outline-focus-text: null !default;
|
|
17660
|
+
/// The border color of the outline focused Input components.
|
|
17661
|
+
/// @group input
|
|
17061
17662
|
$kendo-input-outline-focus-border: null !default;
|
|
17663
|
+
/// The shadow of the outline focused Input components.
|
|
17664
|
+
/// @group input
|
|
17062
17665
|
$kendo-input-outline-focus-shadow: $kendo-input-focus-shadow !default;
|
|
17063
17666
|
|
|
17667
|
+
/// The background color of the flat Input components.
|
|
17668
|
+
/// @group input
|
|
17064
17669
|
$kendo-input-flat-bg: null !default;
|
|
17670
|
+
/// The text color of the flat Input components.
|
|
17671
|
+
/// @group input
|
|
17065
17672
|
$kendo-input-flat-text: $kendo-input-text !default;
|
|
17673
|
+
/// The border color of the flat Input components.
|
|
17674
|
+
/// @group input
|
|
17066
17675
|
$kendo-input-flat-border: $kendo-input-border !default;
|
|
17067
17676
|
|
|
17677
|
+
/// The background color of the flat hovered Input components.
|
|
17678
|
+
/// @group input
|
|
17068
17679
|
$kendo-input-flat-hover-bg: null !default;
|
|
17680
|
+
/// The text color of the flat hovered Input components.
|
|
17681
|
+
/// @group input
|
|
17069
17682
|
$kendo-input-flat-hover-text: null !default;
|
|
17683
|
+
/// The border color of the flat hovered Input components.
|
|
17684
|
+
/// @group input
|
|
17070
17685
|
$kendo-input-flat-hover-border: $kendo-input-hover-border !default;
|
|
17071
17686
|
|
|
17687
|
+
/// The background color of the flat focused Input components.
|
|
17688
|
+
/// @group input
|
|
17072
17689
|
$kendo-input-flat-focus-bg: null !default;
|
|
17690
|
+
/// The text color of the flat focused Input components.
|
|
17691
|
+
/// @group input
|
|
17073
17692
|
$kendo-input-flat-focus-text: null !default;
|
|
17693
|
+
/// The border color of the flat focused Input components.
|
|
17694
|
+
/// @group input
|
|
17074
17695
|
$kendo-input-flat-focus-border: null !default;
|
|
17696
|
+
/// The shadow of the flat focused Input components.
|
|
17697
|
+
/// @group input
|
|
17075
17698
|
$kendo-input-flat-focus-shadow: $kendo-input-focus-shadow !default;
|
|
17076
17699
|
|
|
17700
|
+
/// The text color of the Input placeholder.
|
|
17701
|
+
/// @group input
|
|
17702
|
+
$kendo-input-placeholder-text: $kendo-subtle-text !default;
|
|
17703
|
+
/// The opacity of the Input placeholder.
|
|
17704
|
+
/// @group input
|
|
17705
|
+
$kendo-input-placeholder-opacity: 1 !default;
|
|
17706
|
+
|
|
17707
|
+
|
|
17708
|
+
/// The color of the Input clear value icon.
|
|
17709
|
+
/// @group input
|
|
17710
|
+
$kendo-input-clear-value-text: null !default;
|
|
17711
|
+
/// The opacity of the Input clear value icon.
|
|
17712
|
+
/// @group input
|
|
17713
|
+
$kendo-input-clear-value-opacity: .5 !default;
|
|
17714
|
+
/// The color of the hovered Input clear value icon.
|
|
17715
|
+
/// @group input
|
|
17716
|
+
$kendo-input-clear-value-hover-text: null !default;
|
|
17717
|
+
/// The opacity of the hovered Input clear value icon.
|
|
17718
|
+
/// @group input
|
|
17719
|
+
$kendo-input-clear-value-hover-opacity: 1 !default;
|
|
17720
|
+
|
|
17721
|
+
/// The vertical margin of the clear value icon.
|
|
17722
|
+
/// @group input
|
|
17723
|
+
$kendo-input-values-margin-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
|
|
17724
|
+
/// The horizontal margin of the clear value icon.
|
|
17725
|
+
/// @group input
|
|
17726
|
+
$kendo-input-values-margin-x: $kendo-input-values-margin-y !default;
|
|
17727
|
+
|
|
17728
|
+
|
|
17729
|
+
/// The width of the Input button.
|
|
17730
|
+
/// @group input
|
|
17731
|
+
$kendo-input-button-width: null !default;
|
|
17732
|
+
/// The border width of the Input button.
|
|
17733
|
+
/// @group input
|
|
17734
|
+
$kendo-input-button-border-width: 1px !default;
|
|
17735
|
+
/// The width of the Input spinner button.
|
|
17736
|
+
/// @group input
|
|
17737
|
+
$kendo-input-spinner-width: null !default;
|
|
17738
|
+
/// The icon offset of the Input spinner button.
|
|
17739
|
+
/// @group input
|
|
17740
|
+
$kendo-input-spinner-icon-offset: null !default;
|
|
17741
|
+
|
|
17742
|
+
|
|
17743
|
+
/// The color of the Input separator.
|
|
17744
|
+
/// @group input
|
|
17745
|
+
$kendo-input-separator-color: $kendo-input-text !default;
|
|
17746
|
+
/// The opacity of the Input separator.
|
|
17747
|
+
/// @group input
|
|
17748
|
+
$kendo-input-separator-opacity: .5 !default;
|
|
17749
|
+
|
|
17750
|
+
|
|
17751
|
+
/// The border color of the invalid Input components.
|
|
17752
|
+
/// @group input
|
|
17753
|
+
$kendo-input-invalid-border: $kendo-invalid-border !default;
|
|
17754
|
+
/// The shadow of the invalid Input components.
|
|
17755
|
+
/// @group input
|
|
17756
|
+
$kendo-input-invalid-shadow: $kendo-invalid-shadow !default;
|
|
17757
|
+
|
|
17758
|
+
/// The background color of the Picker components.
|
|
17759
|
+
/// @group picker
|
|
17077
17760
|
$kendo-picker-bg: $kendo-button-bg !default;
|
|
17761
|
+
/// The text color of the Picker components.
|
|
17762
|
+
/// @group picker
|
|
17078
17763
|
$kendo-picker-text: $kendo-button-text !default;
|
|
17764
|
+
/// The border color of the Picker components.
|
|
17765
|
+
/// @group picker
|
|
17079
17766
|
$kendo-picker-border: $kendo-button-border !default;
|
|
17767
|
+
/// The gradient of the Picker components.
|
|
17768
|
+
/// @group picker
|
|
17080
17769
|
$kendo-picker-gradient: $kendo-button-gradient !default;
|
|
17770
|
+
/// The shadow of the Picker components.
|
|
17771
|
+
/// @group picker
|
|
17081
17772
|
$kendo-picker-shadow: $kendo-button-shadow !default;
|
|
17082
17773
|
|
|
17774
|
+
/// The background color of the hovered Picker components.
|
|
17775
|
+
/// @group picker
|
|
17083
17776
|
$kendo-picker-hover-bg: $kendo-button-hover-bg !default;
|
|
17777
|
+
/// The text color of the hovered Picker components.
|
|
17778
|
+
/// @group picker
|
|
17084
17779
|
$kendo-picker-hover-text: $kendo-button-hover-text !default;
|
|
17780
|
+
/// The border color of the hovered Picker components.
|
|
17781
|
+
/// @group picker
|
|
17085
17782
|
$kendo-picker-hover-border: $kendo-button-hover-border !default;
|
|
17783
|
+
/// The gradient of the hovered Picker components.
|
|
17784
|
+
/// @group picker
|
|
17086
17785
|
$kendo-picker-hover-gradient: $kendo-button-hover-gradient !default;
|
|
17786
|
+
/// The shadow of the hovered Picker components.
|
|
17787
|
+
/// @group picker
|
|
17087
17788
|
$kendo-picker-hover-shadow: $kendo-button-hover-shadow !default;
|
|
17088
17789
|
|
|
17790
|
+
/// The background color of the focused Picker components.
|
|
17791
|
+
/// @group picker
|
|
17089
17792
|
$kendo-picker-focus-bg: $kendo-button-focus-bg !default;
|
|
17793
|
+
/// The text color of the focused Picker components.
|
|
17794
|
+
/// @group picker
|
|
17090
17795
|
$kendo-picker-focus-text: $kendo-button-focus-text !default;
|
|
17796
|
+
/// The border color of the focused Picker components.
|
|
17797
|
+
/// @group picker
|
|
17091
17798
|
$kendo-picker-focus-border: $kendo-button-focus-border !default;
|
|
17799
|
+
/// The gradient of the focused Picker components.
|
|
17800
|
+
/// @group picker
|
|
17092
17801
|
$kendo-picker-focus-gradient: $kendo-button-focus-gradient !default;
|
|
17802
|
+
/// The shadow of the focused Picker components.
|
|
17803
|
+
/// @group picker
|
|
17093
17804
|
$kendo-picker-focus-shadow: $kendo-button-focus-shadow !default;
|
|
17094
17805
|
|
|
17806
|
+
/// The background color of the disabled Picker components.
|
|
17807
|
+
/// @group picker
|
|
17095
17808
|
$kendo-picker-disabled-bg: null !default;
|
|
17809
|
+
/// The text color of the disabled Picker components.
|
|
17810
|
+
/// @group picker
|
|
17096
17811
|
$kendo-picker-disabled-text: null !default;
|
|
17812
|
+
/// The border color of the disabled Picker components.
|
|
17813
|
+
/// @group picker
|
|
17097
17814
|
$kendo-picker-disabled-border: null !default;
|
|
17815
|
+
/// The gradient of the disabled Picker components.
|
|
17816
|
+
/// @group picker
|
|
17098
17817
|
$kendo-picker-disabled-gradient: null !default;
|
|
17818
|
+
/// The shadow of the disabled Picker components.
|
|
17819
|
+
/// @group picker
|
|
17099
17820
|
$kendo-picker-disabled-shadow: null !default;
|
|
17100
17821
|
|
|
17822
|
+
/// The background color of the outline Picker components.
|
|
17823
|
+
/// @group picker
|
|
17101
17824
|
$kendo-picker-outline-bg: null !default;
|
|
17825
|
+
/// The text color of the outline Picker components.
|
|
17826
|
+
/// @group picker
|
|
17102
17827
|
$kendo-picker-outline-text: $kendo-button-text !default;
|
|
17828
|
+
/// The border color of the outline Picker components.
|
|
17829
|
+
/// @group picker
|
|
17103
17830
|
$kendo-picker-outline-border: rgba( $kendo-picker-outline-text, .5) !default;
|
|
17104
17831
|
|
|
17832
|
+
/// The background color of the outline hovered Picker components.
|
|
17833
|
+
/// @group picker
|
|
17105
17834
|
$kendo-picker-outline-hover-bg: $kendo-picker-outline-text !default;
|
|
17835
|
+
/// The text color of the outline hovered Picker components.
|
|
17836
|
+
/// @group picker
|
|
17106
17837
|
$kendo-picker-outline-hover-text: k-contrast-color( $kendo-picker-outline-hover-bg ) !default;
|
|
17838
|
+
/// The border color of the outline hovered Picker components.
|
|
17839
|
+
/// @group picker
|
|
17107
17840
|
$kendo-picker-outline-hover-border: $kendo-picker-outline-hover-bg !default;
|
|
17108
17841
|
|
|
17842
|
+
/// The background color of the outline focused Picker components.
|
|
17843
|
+
/// @group picker
|
|
17109
17844
|
$kendo-picker-outline-focus-bg: null !default;
|
|
17845
|
+
/// The text color of the outline focused Picker components.
|
|
17846
|
+
/// @group picker
|
|
17110
17847
|
$kendo-picker-outline-focus-text: null !default;
|
|
17848
|
+
/// The border color of the outline focused Picker components.
|
|
17849
|
+
/// @group picker
|
|
17111
17850
|
$kendo-picker-outline-focus-border: null !default;
|
|
17851
|
+
/// The shadow of the outline focused Picker components.
|
|
17852
|
+
/// @group picker
|
|
17112
17853
|
$kendo-picker-outline-focus-shadow: $kendo-picker-focus-shadow !default;
|
|
17113
17854
|
|
|
17855
|
+
/// The background color of the outline hovered and focused Picker components.
|
|
17856
|
+
/// @group picker
|
|
17114
17857
|
$kendo-picker-outline-hover-focus-bg: null !default;
|
|
17858
|
+
/// The text color of the outline hovered and focused Picker components.
|
|
17859
|
+
/// @group picker
|
|
17115
17860
|
$kendo-picker-outline-hover-focus-text: null !default;
|
|
17861
|
+
/// The border color of the outline hovered and focused Picker components.
|
|
17862
|
+
/// @group picker
|
|
17116
17863
|
$kendo-picker-outline-hover-focus-border: null !default;
|
|
17117
17864
|
|
|
17865
|
+
/// The background color of the flat Picker components.
|
|
17866
|
+
/// @group picker
|
|
17118
17867
|
$kendo-picker-flat-bg: null !default;
|
|
17868
|
+
/// The text color of the flat Picker components.
|
|
17869
|
+
/// @group picker
|
|
17119
17870
|
$kendo-picker-flat-text: $kendo-button-text !default;
|
|
17871
|
+
/// The border color of the flat Picker components.
|
|
17872
|
+
/// @group picker
|
|
17120
17873
|
$kendo-picker-flat-border: $kendo-button-border !default;
|
|
17121
17874
|
|
|
17875
|
+
/// The background color of the flat hovered Picker components.
|
|
17876
|
+
/// @group picker
|
|
17122
17877
|
$kendo-picker-flat-hover-bg: rgba( $kendo-button-text, .04 ) !default;
|
|
17878
|
+
/// The text color of the flat hovered Picker components.
|
|
17879
|
+
/// @group picker
|
|
17123
17880
|
$kendo-picker-flat-hover-text: null !default;
|
|
17881
|
+
/// The border color of the flat hovered Picker components.
|
|
17882
|
+
/// @group picker
|
|
17124
17883
|
$kendo-picker-flat-hover-border: rgba( $kendo-button-border, .16 ) !default;
|
|
17125
17884
|
|
|
17885
|
+
/// The background color of the flat focused Picker components.
|
|
17886
|
+
/// @group picker
|
|
17126
17887
|
$kendo-picker-flat-focus-bg: null !default;
|
|
17888
|
+
/// The text color of the flat focused Picker components.
|
|
17889
|
+
/// @group picker
|
|
17127
17890
|
$kendo-picker-flat-focus-text: null !default;
|
|
17891
|
+
/// The border color of the flat focused Picker components.
|
|
17892
|
+
/// @group picker
|
|
17128
17893
|
$kendo-picker-flat-focus-border: null !default;
|
|
17894
|
+
/// The shadow of the flat focused Picker components.
|
|
17895
|
+
/// @group picker
|
|
17129
17896
|
$kendo-picker-flat-focus-shadow: $kendo-picker-focus-shadow !default;
|
|
17130
17897
|
|
|
17898
|
+
/// The background color of the flat hovered and focused Picker components.
|
|
17899
|
+
/// @group picker
|
|
17131
17900
|
$kendo-picker-flat-hover-focus-bg: null !default;
|
|
17901
|
+
/// The text color of the flat hovered and focused Picker components.
|
|
17902
|
+
/// @group picker
|
|
17132
17903
|
$kendo-picker-flat-hover-focus-text: null !default;
|
|
17904
|
+
/// The border color of the flat hovered and focused Picker components.
|
|
17905
|
+
/// @group picker
|
|
17133
17906
|
$kendo-picker-flat-hover-focus-border: null !default;
|
|
17134
17907
|
|
|
17135
|
-
$kendo-input-placeholder-text: $kendo-subtle-text !default;
|
|
17136
|
-
$kendo-input-placeholder-opacity: 1 !default;
|
|
17137
|
-
|
|
17138
|
-
$kendo-input-selected-bg: null !default;
|
|
17139
|
-
$kendo-input-selected-text: null !default;
|
|
17140
|
-
|
|
17141
|
-
$kendo-input-clear-value-text: null !default;
|
|
17142
|
-
$kendo-input-clear-value-opacity: .5 !default;
|
|
17143
|
-
$kendo-input-clear-value-hover-text: null !default;
|
|
17144
|
-
$kendo-input-clear-value-hover-opacity: 1 !default;
|
|
17145
|
-
|
|
17146
|
-
$kendo-input-values-margin-y: k-map-get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
|
|
17147
|
-
$kendo-input-values-margin-x: $kendo-input-values-margin-y !default;
|
|
17148
|
-
|
|
17149
|
-
|
|
17150
|
-
// Input actions
|
|
17151
|
-
$kendo-input-button-width: null !default;
|
|
17152
|
-
$kendo-input-button-border-width: 1px !default;
|
|
17153
|
-
$kendo-input-spinner-width: null !default;
|
|
17154
|
-
$kendo-input-spinner-icon-offset: null !default;
|
|
17155
|
-
|
|
17156
|
-
|
|
17157
|
-
// Input separator
|
|
17158
|
-
$kendo-input-separator-color: $kendo-input-text !default;
|
|
17159
|
-
$kendo-input-separator-opacity: .5 !default;
|
|
17160
17908
|
|
|
17161
17909
|
|
|
17162
|
-
// Invalid
|
|
17163
|
-
$kendo-input-invalid-border: $kendo-invalid-border !default;
|
|
17164
|
-
$kendo-input-invalid-shadow: $kendo-invalid-shadow !default;
|
|
17165
|
-
|
|
17166
17910
|
// #endregion
|
|
17167
17911
|
// #region @import "../tooltip/_variables.scss"; -> scss/tooltip/_variables.scss
|
|
17168
17912
|
// Tooltip
|
|
@@ -19334,22 +20078,34 @@ $_kendo-module-meta: (
|
|
|
19334
20078
|
// #region @import "./_variables.scss"; -> scss/split-button/_variables.scss
|
|
19335
20079
|
// Split-button
|
|
19336
20080
|
|
|
19337
|
-
///
|
|
20081
|
+
/// The focus shadow of the SplitButton.
|
|
19338
20082
|
/// @group split-button
|
|
19339
20083
|
$kendo-split-button-focus-shadow: $kendo-button-focus-shadow !default;
|
|
19340
20084
|
|
|
19341
|
-
///
|
|
20085
|
+
/// The horizontal padding of the arrow Button.
|
|
19342
20086
|
/// @group split-button
|
|
19343
20087
|
$kendo-split-button-arrow-padding-x: $kendo-button-padding-y !default;
|
|
20088
|
+
/// The horizontal padding of the small arrow Button.
|
|
20089
|
+
/// @group split-button
|
|
19344
20090
|
$kendo-split-button-sm-arrow-padding-x: $kendo-button-sm-padding-y !default;
|
|
20091
|
+
/// The horizontal padding of the medium arrow Button.
|
|
20092
|
+
/// @group split-button
|
|
19345
20093
|
$kendo-split-button-md-arrow-padding-x: $kendo-button-md-padding-y !default;
|
|
20094
|
+
/// The horizontal padding of the large arrow Button.
|
|
20095
|
+
/// @group split-button
|
|
19346
20096
|
$kendo-split-button-lg-arrow-padding-x: $kendo-button-lg-padding-y !default;
|
|
19347
20097
|
|
|
19348
|
-
///
|
|
20098
|
+
/// The vertical padding of the arrow Button.
|
|
19349
20099
|
/// @group split-button
|
|
19350
20100
|
$kendo-split-button-arrow-padding-y: $kendo-button-padding-y !default;
|
|
20101
|
+
/// The vertical padding of the small arrow Button.
|
|
20102
|
+
/// @group split-button
|
|
19351
20103
|
$kendo-split-button-sm-arrow-padding-y: $kendo-button-sm-padding-y !default;
|
|
20104
|
+
/// The vertical padding of the medium arrow Button.
|
|
20105
|
+
/// @group split-button
|
|
19352
20106
|
$kendo-split-button-md-arrow-padding-y: $kendo-button-md-padding-y !default;
|
|
20107
|
+
/// The vertical padding of the large arrow Button.
|
|
20108
|
+
/// @group split-button
|
|
19353
20109
|
$kendo-split-button-lg-arrow-padding-y: $kendo-button-lg-padding-y !default;
|
|
19354
20110
|
|
|
19355
20111
|
// #endregion
|
|
@@ -20279,153 +21035,185 @@ $_kendo-module-meta: (
|
|
|
20279
21035
|
|
|
20280
21036
|
// Radio button
|
|
20281
21037
|
|
|
20282
|
-
///
|
|
21038
|
+
/// The border radius of the RadioButton.
|
|
20283
21039
|
/// @group radio
|
|
20284
21040
|
$kendo-radio-radius: 50% !default;
|
|
20285
|
-
///
|
|
21041
|
+
/// The border width of the RadioButton.
|
|
20286
21042
|
/// @group radio
|
|
20287
21043
|
$kendo-radio-border-width: 1px !default;
|
|
20288
21044
|
|
|
20289
|
-
|
|
21045
|
+
/// The size of a small RadioButton.
|
|
21046
|
+
/// @group radio
|
|
21047
|
+
$kendo-radio-sm-size: k-map-get( $kendo-spacing, 3 ) !default;
|
|
21048
|
+
/// The size of a medium RadioButton.
|
|
21049
|
+
/// @group radio
|
|
21050
|
+
$kendo-radio-md-size: k-map-get( $kendo-spacing, 4 ) !default;
|
|
21051
|
+
/// The size of a large RadioButton.
|
|
21052
|
+
/// @group radio
|
|
21053
|
+
$kendo-radio-lg-size: k-map-get( $kendo-spacing, 5 ) !default;
|
|
21054
|
+
|
|
21055
|
+
/// The glyph size of a small RadioButton.
|
|
21056
|
+
/// @group radio
|
|
21057
|
+
$kendo-radio-sm-glyph-size: k-map-get( $kendo-spacing, 2.5 ) !default;
|
|
21058
|
+
/// The glyph size of a medium RadioButton.
|
|
21059
|
+
/// @group radio
|
|
21060
|
+
$kendo-radio-md-glyph-size: k-map-get( $kendo-spacing, 3.5 ) !default;
|
|
21061
|
+
/// The glyph size of a large RadioButton.
|
|
21062
|
+
/// @group radio
|
|
21063
|
+
$kendo-radio-lg-glyph-size: k-map-get( $kendo-spacing, 4.5 ) !default;
|
|
21064
|
+
|
|
21065
|
+
/// The ripple size of a small RadioButton.
|
|
21066
|
+
/// @group radio
|
|
21067
|
+
$kendo-radio-sm-ripple-size: 300% !default;
|
|
21068
|
+
/// The ripple size of a medium RadioButton.
|
|
21069
|
+
/// @group radio
|
|
21070
|
+
$kendo-radio-md-ripple-size: 300% !default;
|
|
21071
|
+
/// The ripple size of a large RadioButton.
|
|
21072
|
+
/// @group radio
|
|
21073
|
+
$kendo-radio-lg-ripple-size: 300% !default;
|
|
21074
|
+
|
|
21075
|
+
/// The map with the different RadioButton sizes.
|
|
21076
|
+
/// @group radio
|
|
20290
21077
|
$kendo-radio-sizes: (
|
|
20291
21078
|
sm: (
|
|
20292
|
-
size:
|
|
20293
|
-
glyph-size:
|
|
20294
|
-
ripple-size:
|
|
21079
|
+
size: $kendo-radio-sm-size,
|
|
21080
|
+
glyph-size: $kendo-radio-sm-glyph-size,
|
|
21081
|
+
ripple-size: $kendo-radio-sm-ripple-size
|
|
20295
21082
|
),
|
|
20296
21083
|
md: (
|
|
20297
|
-
size:
|
|
20298
|
-
glyph-size:
|
|
20299
|
-
ripple-size:
|
|
21084
|
+
size: $kendo-radio-md-size,
|
|
21085
|
+
glyph-size: $kendo-radio-md-glyph-size,
|
|
21086
|
+
ripple-size: $kendo-radio-md-ripple-size
|
|
20300
21087
|
),
|
|
20301
21088
|
lg: (
|
|
20302
|
-
size:
|
|
20303
|
-
glyph-size:
|
|
20304
|
-
ripple-size:
|
|
21089
|
+
size: $kendo-radio-lg-size,
|
|
21090
|
+
glyph-size: $kendo-radio-lg-glyph-size,
|
|
21091
|
+
ripple-size: $kendo-radio-lg-ripple-size
|
|
20305
21092
|
)
|
|
20306
21093
|
) !default;
|
|
20307
21094
|
|
|
20308
|
-
///
|
|
21095
|
+
/// The background color of the RadioButton.
|
|
20309
21096
|
/// @group radio
|
|
20310
21097
|
$kendo-radio-bg: $kendo-checkbox-bg !default;
|
|
20311
|
-
///
|
|
21098
|
+
/// The color of the RadioButton.
|
|
20312
21099
|
/// @group radio
|
|
20313
21100
|
$kendo-radio-text: $kendo-checkbox-text !default;
|
|
20314
|
-
///
|
|
21101
|
+
/// The border color of the RadioButton.
|
|
20315
21102
|
/// @group radio
|
|
20316
21103
|
$kendo-radio-border: $kendo-checkbox-border !default;
|
|
20317
21104
|
|
|
20318
|
-
///
|
|
21105
|
+
/// The background color of the hovered RadioButton.
|
|
20319
21106
|
/// @group radio
|
|
20320
21107
|
$kendo-radio-hover-bg: $kendo-checkbox-hover-bg !default;
|
|
20321
|
-
///
|
|
21108
|
+
/// The color of the hovered RadioButton.
|
|
20322
21109
|
/// @group radio
|
|
20323
21110
|
$kendo-radio-hover-text: $kendo-checkbox-hover-text !default;
|
|
20324
|
-
///
|
|
21111
|
+
/// The border color of the hovered RadioButton.
|
|
20325
21112
|
/// @group radio
|
|
20326
21113
|
$kendo-radio-hover-border: $kendo-checkbox-hover-border !default;
|
|
20327
21114
|
|
|
20328
|
-
///
|
|
21115
|
+
/// The background color of the checked RadioButton.
|
|
20329
21116
|
/// @group radio
|
|
20330
21117
|
$kendo-radio-checked-bg: $kendo-checkbox-checked-bg !default;
|
|
20331
|
-
///
|
|
21118
|
+
/// The color of the checked RadioButton.
|
|
20332
21119
|
/// @group radio
|
|
20333
21120
|
$kendo-radio-checked-text: $kendo-checkbox-checked-text !default;
|
|
20334
|
-
///
|
|
21121
|
+
/// The border color of the checked RadioButton.
|
|
20335
21122
|
/// @group radio
|
|
20336
21123
|
$kendo-radio-checked-border: $kendo-checkbox-checked-border !default;
|
|
20337
21124
|
|
|
20338
|
-
///
|
|
21125
|
+
/// The border color of the focused RadioButton.
|
|
20339
21126
|
/// @group radio
|
|
20340
21127
|
$kendo-radio-focus-border: $kendo-checkbox-focus-border !default;
|
|
20341
|
-
///
|
|
21128
|
+
/// The box shadow of the focused RadioButton.
|
|
20342
21129
|
/// @group radio
|
|
20343
21130
|
$kendo-radio-focus-shadow: $kendo-checkbox-focus-shadow !default;
|
|
20344
|
-
|
|
21131
|
+
|
|
21132
|
+
/// The border color of the focused and checked RadioButton.
|
|
20345
21133
|
/// @group radio
|
|
20346
21134
|
$kendo-radio-focus-checked-border: $kendo-checkbox-focus-checked-border !default;
|
|
20347
|
-
///
|
|
21135
|
+
/// The box shadow of the focused and checked RadioButton.
|
|
20348
21136
|
/// @group radio
|
|
20349
21137
|
$kendo-radio-focus-checked-shadow: $kendo-checkbox-focus-checked-shadow !default;
|
|
20350
21138
|
|
|
20351
|
-
///
|
|
21139
|
+
/// The background color of the disabled RadioButton.
|
|
20352
21140
|
/// @group radio
|
|
20353
21141
|
$kendo-radio-disabled-bg: $kendo-checkbox-disabled-bg !default;
|
|
20354
|
-
///
|
|
21142
|
+
/// The color of the disabled RadioButton.
|
|
20355
21143
|
/// @group radio
|
|
20356
21144
|
$kendo-radio-disabled-text: $kendo-checkbox-disabled-text !default;
|
|
20357
|
-
///
|
|
21145
|
+
/// The border color of the disabled RadioButton.
|
|
20358
21146
|
/// @group radio
|
|
20359
21147
|
$kendo-radio-disabled-border: $kendo-checkbox-disabled-border !default;
|
|
20360
21148
|
|
|
20361
|
-
///
|
|
21149
|
+
/// The background color of the disabled and checked RadioButton.
|
|
20362
21150
|
/// @group radio
|
|
20363
21151
|
$kendo-radio-disabled-checked-bg: $kendo-checkbox-disabled-checked-bg !default;
|
|
20364
|
-
///
|
|
21152
|
+
/// The color of the disabled and checked RadioButton.
|
|
20365
21153
|
/// @group radio
|
|
20366
21154
|
$kendo-radio-disabled-checked-text: $kendo-checkbox-disabled-checked-text !default;
|
|
20367
|
-
///
|
|
21155
|
+
/// The border color of disabled and checked RadioButton.
|
|
20368
21156
|
/// @group radio
|
|
20369
21157
|
$kendo-radio-disabled-checked-border: $kendo-checkbox-disabled-checked-border !default;
|
|
20370
21158
|
|
|
20371
|
-
///
|
|
21159
|
+
/// The background color of the invalid RadioButton.
|
|
20372
21160
|
/// @group radio
|
|
20373
21161
|
$kendo-radio-invalid-bg: $kendo-checkbox-invalid-bg !default;
|
|
20374
|
-
///
|
|
21162
|
+
/// The color of the invalid RadioButton.
|
|
20375
21163
|
/// @group radio
|
|
20376
21164
|
$kendo-radio-invalid-text: $kendo-checkbox-invalid-text !default;
|
|
20377
|
-
///
|
|
21165
|
+
/// The border color of the invalid RadioButton.
|
|
20378
21166
|
/// @group radio
|
|
20379
21167
|
$kendo-radio-invalid-border: $kendo-checkbox-invalid-border !default;
|
|
20380
21168
|
|
|
20381
21169
|
|
|
20382
21170
|
// Radio indicator
|
|
20383
21171
|
|
|
20384
|
-
///
|
|
21172
|
+
/// The type of the RadioButton indicator.
|
|
20385
21173
|
/// @group radio
|
|
20386
21174
|
$kendo-radio-indicator-type: image !default;
|
|
20387
21175
|
|
|
20388
|
-
///
|
|
21176
|
+
/// The font family of the RadioButton indicator glyph.
|
|
20389
21177
|
/// @group radio
|
|
20390
21178
|
$kendo-radio-glyph-font-family: "WebComponentsIcons", monospace !default;
|
|
20391
|
-
///
|
|
21179
|
+
/// The glyph of the RadioButton indicator.
|
|
20392
21180
|
/// @group radio
|
|
20393
21181
|
$kendo-radio-checked-glyph: "\e308" !default;
|
|
20394
21182
|
|
|
20395
|
-
///
|
|
21183
|
+
/// The image of the checked RadioButton indicator.
|
|
20396
21184
|
/// @group radio
|
|
20397
21185
|
$kendo-radio-checked-image: k-escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><circle cx='50%' cy='50%' r='4' fill='#{$kendo-radio-checked-text}'/></svg>") ) !default;
|
|
20398
|
-
///
|
|
21186
|
+
/// The image of the disabled and checked RadioButton indicator.
|
|
20399
21187
|
/// @group radio
|
|
20400
21188
|
$kendo-radio-disabled-checked-image: null !default;
|
|
20401
21189
|
|
|
20402
21190
|
|
|
20403
21191
|
// Radio label
|
|
20404
21192
|
|
|
20405
|
-
/// The horizontal margin of the
|
|
21193
|
+
/// The horizontal margin of the RadioButton inside of a label.
|
|
20406
21194
|
/// @group radio
|
|
20407
21195
|
$kendo-radio-label-margin-x: k-map-get( $kendo-spacing, 1 ) !default;
|
|
20408
21196
|
|
|
20409
21197
|
|
|
20410
21198
|
// Radio list
|
|
20411
21199
|
|
|
20412
|
-
///
|
|
21200
|
+
/// The horizontal list item margin of the RadioButton.
|
|
20413
21201
|
/// @group radio
|
|
20414
21202
|
$kendo-radio-list-spacing: k-map-get( $kendo-spacing, 4 ) !default;
|
|
20415
|
-
///
|
|
21203
|
+
/// The horizontal list item padding of the RadioButton.
|
|
20416
21204
|
/// @group radio
|
|
20417
21205
|
$kendo-radio-list-item-padding-x: 0px !default;
|
|
20418
|
-
///
|
|
21206
|
+
/// The vertical list item padding of the RadioButton.
|
|
20419
21207
|
/// @group radio
|
|
20420
21208
|
$kendo-radio-list-item-padding-y: $kendo-list-md-item-padding-y !default;
|
|
20421
21209
|
|
|
20422
21210
|
|
|
20423
21211
|
// Radio ripple
|
|
20424
21212
|
|
|
20425
|
-
///
|
|
21213
|
+
/// The background color of the RadioButton ripple.
|
|
20426
21214
|
/// @group radio
|
|
20427
21215
|
$kendo-radio-ripple-bg: $kendo-radio-checked-bg !default;
|
|
20428
|
-
///
|
|
21216
|
+
/// The opacity of the RadioButton ripple.
|
|
20429
21217
|
/// @group radio
|
|
20430
21218
|
$kendo-radio-ripple-opacity: .25 !default;
|
|
20431
21219
|
|
|
@@ -25548,26 +26336,27 @@ $_kendo-module-meta: (
|
|
|
25548
26336
|
// #region @import "./_variables.scss"; -> scss/switch/_variables.scss
|
|
25549
26337
|
// Switch
|
|
25550
26338
|
|
|
25551
|
-
///
|
|
26339
|
+
/// The font family of the Switch.
|
|
25552
26340
|
/// @group switch
|
|
25553
26341
|
$kendo-switch-font-family: null !default;
|
|
25554
26342
|
|
|
25555
|
-
///
|
|
26343
|
+
/// The border width of the Switch track.
|
|
25556
26344
|
/// @group switch
|
|
25557
26345
|
$kendo-switch-track-border-width: 1px !default;
|
|
25558
26346
|
|
|
25559
|
-
///
|
|
26347
|
+
/// The border width of the Switch thumb.
|
|
25560
26348
|
/// @group switch
|
|
25561
26349
|
$kendo-switch-thumb-border-width: 1px !default;
|
|
25562
26350
|
|
|
25563
|
-
///
|
|
26351
|
+
/// The text transform of the Switch label.
|
|
25564
26352
|
/// @group switch
|
|
25565
26353
|
$kendo-switch-label-text-transform: null !default;
|
|
25566
|
-
|
|
26354
|
+
|
|
26355
|
+
/// The display of the Switch label.
|
|
25567
26356
|
/// @group switch
|
|
25568
26357
|
$kendo-switch-label-display: inline !default;
|
|
25569
26358
|
|
|
25570
|
-
///
|
|
26359
|
+
/// The map with the different Switch sizes.
|
|
25571
26360
|
/// @group switch
|
|
25572
26361
|
$kendo-switch-sizes: (
|
|
25573
26362
|
sm: ( font-size: 12px, track-width: 48px, track-height: 26px, thumb-width: 20px, thumb-height: 20px, thumb-offset: 3px, label-offset: 4px ),
|
|
@@ -25575,166 +26364,166 @@ $kendo-switch-sizes: (
|
|
|
25575
26364
|
lg: ( font-size: 12px, track-width: 64px, track-height: 34px, thumb-width: 28px, thumb-height: 28px, thumb-offset: 3px, label-offset: 8px )
|
|
25576
26365
|
) !default;
|
|
25577
26366
|
|
|
25578
|
-
/// The background of the track when the
|
|
26367
|
+
/// The background of the track when the Switch is not checked.
|
|
25579
26368
|
/// @group switch
|
|
25580
26369
|
$kendo-switch-off-track-bg: $kendo-component-bg !default;
|
|
25581
|
-
/// The text color of the track when the
|
|
26370
|
+
/// The text color of the track when the Switch is not checked.
|
|
25582
26371
|
/// @group switch
|
|
25583
26372
|
$kendo-switch-off-track-text: $kendo-component-text !default;
|
|
25584
|
-
/// The border color of the track when the
|
|
26373
|
+
/// The border color of the track when the Switch is not checked.
|
|
25585
26374
|
/// @group switch
|
|
25586
26375
|
$kendo-switch-off-track-border: $kendo-component-border !default;
|
|
25587
|
-
/// The background gradient of the track when the
|
|
26376
|
+
/// The background gradient of the track when the Switch is not checked.
|
|
25588
26377
|
/// @group switch
|
|
25589
26378
|
$kendo-switch-off-track-gradient: null !default;
|
|
25590
26379
|
|
|
25591
|
-
/// The background of the track when the hovered
|
|
26380
|
+
/// The background of the track when the hovered Switch is not checked.
|
|
25592
26381
|
/// @group switch
|
|
25593
26382
|
$kendo-switch-off-track-hover-bg: null !default;
|
|
25594
|
-
/// The text color of the track when the hovered
|
|
26383
|
+
/// The text color of the track when the hovered Switch is not checked.
|
|
25595
26384
|
/// @group switch
|
|
25596
26385
|
$kendo-switch-off-track-hover-text: null !default;
|
|
25597
|
-
/// The border color of the track when the hovered
|
|
26386
|
+
/// The border color of the track when the hovered Switch is not checked.
|
|
25598
26387
|
/// @group switch
|
|
25599
26388
|
$kendo-switch-off-track-hover-border: null !default;
|
|
25600
|
-
/// The background gradient of the track when the hovered
|
|
26389
|
+
/// The background gradient of the track when the hovered Switch is not checked.
|
|
25601
26390
|
/// @group switch
|
|
25602
26391
|
$kendo-switch-off-track-hover-gradient: null !default;
|
|
25603
26392
|
|
|
25604
|
-
/// The background of the track when the focused
|
|
26393
|
+
/// The background of the track when the focused Switch is not checked.
|
|
25605
26394
|
/// @group switch
|
|
25606
26395
|
$kendo-switch-off-track-focus-bg: null !default;
|
|
25607
|
-
/// The text color of the track when the focused
|
|
26396
|
+
/// The text color of the track when the focused Switch is not checked.
|
|
25608
26397
|
/// @group switch
|
|
25609
26398
|
$kendo-switch-off-track-focus-text: null !default;
|
|
25610
|
-
/// The border color of the track when the focused
|
|
26399
|
+
/// The border color of the track when the focused Switch is not checked.
|
|
25611
26400
|
/// @group switch
|
|
25612
26401
|
$kendo-switch-off-track-focus-border: null !default;
|
|
25613
|
-
/// The background gradient of the track when the focused
|
|
26402
|
+
/// The background gradient of the track when the focused Switch is not checked.
|
|
25614
26403
|
/// @group switch
|
|
25615
26404
|
$kendo-switch-off-track-focus-gradient: null !default;
|
|
25616
|
-
/// The ring around the track when the focused
|
|
26405
|
+
/// The ring around the track when the focused Switch is not checked.
|
|
25617
26406
|
/// @group switch
|
|
25618
26407
|
$kendo-switch-off-track-focus-ring: 0 0 3px 1px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 ) !default;
|
|
25619
26408
|
|
|
25620
|
-
/// The background of the track when the disabled
|
|
26409
|
+
/// The background of the track when the disabled Switch is not checked.
|
|
25621
26410
|
/// @group switch
|
|
25622
26411
|
$kendo-switch-off-track-disabled-bg: null !default;
|
|
25623
|
-
/// The text color of the track when the disabled
|
|
26412
|
+
/// The text color of the track when the disabled Switch is not checked.
|
|
25624
26413
|
/// @group switch
|
|
25625
26414
|
$kendo-switch-off-track-disabled-text: null !default;
|
|
25626
|
-
/// The border color of the track when the disabled
|
|
26415
|
+
/// The border color of the track when the disabled Switch is not checked.
|
|
25627
26416
|
/// @group switch
|
|
25628
26417
|
$kendo-switch-off-track-disabled-border: null !default;
|
|
25629
|
-
/// The background gradient of the track when the disabled
|
|
26418
|
+
/// The background gradient of the track when the disabled Switch is not checked.
|
|
25630
26419
|
/// @group switch
|
|
25631
26420
|
$kendo-switch-off-track-disabled-gradient: null !default;
|
|
25632
26421
|
|
|
25633
|
-
/// The background of the thumb when the
|
|
26422
|
+
/// The background of the thumb when the Switch is not checked.
|
|
25634
26423
|
/// @group switch
|
|
25635
26424
|
$kendo-switch-off-thumb-bg: k-try-shade( $kendo-switch-off-track-bg ) !default;
|
|
25636
|
-
/// The text color of the thumb when the
|
|
26425
|
+
/// The text color of the thumb when the Switch is not checked.
|
|
25637
26426
|
/// @group switch
|
|
25638
26427
|
$kendo-switch-off-thumb-text: null !default;
|
|
25639
|
-
/// The border color of the thumb when the
|
|
26428
|
+
/// The border color of the thumb when the Switch is not checked.
|
|
25640
26429
|
/// @group switch
|
|
25641
26430
|
$kendo-switch-off-thumb-border: $kendo-switch-off-track-border !default;
|
|
25642
|
-
/// The background gradient of the thumb when the
|
|
26431
|
+
/// The background gradient of the thumb when the Switch is not checked.
|
|
25643
26432
|
/// @group switch
|
|
25644
26433
|
$kendo-switch-off-thumb-gradient: $kendo-base-gradient !default;
|
|
25645
26434
|
|
|
25646
|
-
/// The background of the thumb when the hovered
|
|
26435
|
+
/// The background of the thumb when the hovered Switch is not checked.
|
|
25647
26436
|
/// @group switch
|
|
25648
26437
|
$kendo-switch-off-thumb-hover-bg: k-try-shade( $kendo-switch-off-thumb-bg ) !default;
|
|
25649
|
-
/// The text color of the thumb when the hovered
|
|
26438
|
+
/// The text color of the thumb when the hovered Switch is not checked.
|
|
25650
26439
|
/// @group switch
|
|
25651
26440
|
$kendo-switch-off-thumb-hover-text: null !default;
|
|
25652
|
-
/// The border color of the thumb when the hovered
|
|
26441
|
+
/// The border color of the thumb when the hovered Switch is not checked.
|
|
25653
26442
|
/// @group switch
|
|
25654
26443
|
$kendo-switch-off-thumb-hover-border: $kendo-switch-off-thumb-border !default;
|
|
25655
|
-
/// The background gradient of the thumb when the hovered
|
|
26444
|
+
/// The background gradient of the thumb when the hovered Switch is not checked.
|
|
25656
26445
|
/// @group switch
|
|
25657
26446
|
$kendo-switch-off-thumb-hover-gradient: null !default;
|
|
25658
26447
|
|
|
25659
26448
|
|
|
25660
|
-
/// The background of the track when the
|
|
26449
|
+
/// The background of the track when the Switch is checked.
|
|
25661
26450
|
/// @group switch
|
|
25662
26451
|
$kendo-switch-on-track-bg: $kendo-component-bg !default;
|
|
25663
|
-
/// The text color of the track when the
|
|
26452
|
+
/// The text color of the track when the Switch is checked.
|
|
25664
26453
|
/// @group switch
|
|
25665
26454
|
$kendo-switch-on-track-text: $kendo-color-primary !default;
|
|
25666
|
-
/// The border color of the track when the
|
|
26455
|
+
/// The border color of the track when the Switch is checked.
|
|
25667
26456
|
/// @group switch
|
|
25668
26457
|
$kendo-switch-on-track-border: $kendo-component-border !default;
|
|
25669
|
-
/// The background gradient of the track when the
|
|
26458
|
+
/// The background gradient of the track when the Switch is checked.
|
|
25670
26459
|
/// @group switch
|
|
25671
26460
|
$kendo-switch-on-track-gradient: null !default;
|
|
25672
26461
|
|
|
25673
|
-
/// The background of the track wen the hovered
|
|
26462
|
+
/// The background of the track wen the hovered Switch is checked.
|
|
25674
26463
|
/// @group switch
|
|
25675
26464
|
$kendo-switch-on-track-hover-bg: null !default;
|
|
25676
|
-
/// The text color of the track wen the hovered
|
|
26465
|
+
/// The text color of the track wen the hovered Switch is checked.
|
|
25677
26466
|
/// @group switch
|
|
25678
26467
|
$kendo-switch-on-track-hover-text: null !default;
|
|
25679
|
-
/// The border color of the track wen the hovered
|
|
26468
|
+
/// The border color of the track wen the hovered Switch is checked.
|
|
25680
26469
|
/// @group switch
|
|
25681
26470
|
$kendo-switch-on-track-hover-border: null !default;
|
|
25682
|
-
/// The background gradient of the track wen the hovered
|
|
26471
|
+
/// The background gradient of the track wen the hovered Switch is checked.
|
|
25683
26472
|
/// @group switch
|
|
25684
26473
|
$kendo-switch-on-track-hover-gradient: null !default;
|
|
25685
26474
|
|
|
25686
|
-
/// The background of the track wen the focused
|
|
26475
|
+
/// The background of the track wen the focused Switch is checked.
|
|
25687
26476
|
/// @group switch
|
|
25688
26477
|
$kendo-switch-on-track-focus-bg: null !default;
|
|
25689
|
-
/// The text color of the track wen the focused
|
|
26478
|
+
/// The text color of the track wen the focused Switch is checked.
|
|
25690
26479
|
/// @group switch
|
|
25691
26480
|
$kendo-switch-on-track-focus-text: null !default;
|
|
25692
|
-
/// The border color of the track wen the focused
|
|
26481
|
+
/// The border color of the track wen the focused Switch is checked.
|
|
25693
26482
|
/// @group switch
|
|
25694
26483
|
$kendo-switch-on-track-focus-border: null !default;
|
|
25695
|
-
/// The background gradient of the track wen the focused
|
|
26484
|
+
/// The background gradient of the track wen the focused Switch is checked.
|
|
25696
26485
|
/// @group switch
|
|
25697
26486
|
$kendo-switch-on-track-focus-gradient: null !default;
|
|
25698
|
-
/// The ring around the track wen the focused
|
|
26487
|
+
/// The ring around the track wen the focused Switch is checked.
|
|
25699
26488
|
/// @group switch
|
|
25700
26489
|
$kendo-switch-on-track-focus-ring: 0 0 3px 1px rgba( if( $kendo-is-dark-theme, $kendo-color-white, $kendo-color-black ), .25 ) !default;
|
|
25701
26490
|
|
|
25702
|
-
/// The background of the track when the disabled
|
|
26491
|
+
/// The background of the track when the disabled Switch is checked.
|
|
25703
26492
|
/// @group switch
|
|
25704
26493
|
$kendo-switch-on-track-disabled-bg: null !default;
|
|
25705
|
-
/// The text color of the track when the disabled
|
|
26494
|
+
/// The text color of the track when the disabled Switch is checked.
|
|
25706
26495
|
/// @group switch
|
|
25707
26496
|
$kendo-switch-on-track-disabled-text: null !default;
|
|
25708
|
-
/// The border color of the track when the disabled
|
|
26497
|
+
/// The border color of the track when the disabled Switch is checked.
|
|
25709
26498
|
/// @group switch
|
|
25710
26499
|
$kendo-switch-on-track-disabled-border: null !default;
|
|
25711
|
-
/// The background gradient of the track when the disabled
|
|
26500
|
+
/// The background gradient of the track when the disabled Switch is checked.
|
|
25712
26501
|
/// @group switch
|
|
25713
26502
|
$kendo-switch-on-track-disabled-gradient: null !default;
|
|
25714
26503
|
|
|
25715
|
-
/// The background of the thumb when the
|
|
26504
|
+
/// The background of the thumb when the Switch is checked.
|
|
25716
26505
|
/// @group switch
|
|
25717
26506
|
$kendo-switch-on-thumb-bg: $kendo-color-primary !default;
|
|
25718
|
-
/// The text color of the thumb when the
|
|
26507
|
+
/// The text color of the thumb when the Switch is checked.
|
|
25719
26508
|
/// @group switch
|
|
25720
26509
|
$kendo-switch-on-thumb-text: null !default;
|
|
25721
|
-
/// The border color of the thumb when the
|
|
26510
|
+
/// The border color of the thumb when the Switch is checked.
|
|
25722
26511
|
/// @group switch
|
|
25723
26512
|
$kendo-switch-on-thumb-border: k-try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
25724
|
-
/// The background gradient of the thumb when the
|
|
26513
|
+
/// The background gradient of the thumb when the Switch is checked.
|
|
25725
26514
|
/// @group switch
|
|
25726
26515
|
$kendo-switch-on-thumb-gradient: $kendo-base-gradient !default;
|
|
25727
26516
|
|
|
25728
|
-
/// The background of the thumb when the hovered
|
|
26517
|
+
/// The background of the thumb when the hovered Switch is checked.
|
|
25729
26518
|
/// @group switch
|
|
25730
26519
|
$kendo-switch-on-thumb-hover-bg: k-try-shade( $kendo-switch-on-thumb-bg ) !default;
|
|
25731
|
-
/// The text color of the thumb when the hovered
|
|
26520
|
+
/// The text color of the thumb when the hovered Switch is checked.
|
|
25732
26521
|
/// @group switch
|
|
25733
26522
|
$kendo-switch-on-thumb-hover-text: null !default;
|
|
25734
|
-
/// The border color of the thumb when the hovered
|
|
26523
|
+
/// The border color of the thumb when the hovered Switch is checked.
|
|
25735
26524
|
/// @group switch
|
|
25736
26525
|
$kendo-switch-on-thumb-hover-border: k-try-shade( $kendo-switch-on-thumb-hover-bg ) !default;
|
|
25737
|
-
/// The background gradient of the thumb when the hovered
|
|
26526
|
+
/// The background gradient of the thumb when the hovered Switch is checked.
|
|
25738
26527
|
/// @group switch
|
|
25739
26528
|
$kendo-switch-on-thumb-hover-gradient: null !default;
|
|
25740
26529
|
|
|
@@ -40610,7 +41399,6 @@ $kendo-editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-li
|
|
|
40610
41399
|
display: flex;
|
|
40611
41400
|
flex-flow: column nowrap;
|
|
40612
41401
|
position: relative;
|
|
40613
|
-
z-index: 1;
|
|
40614
41402
|
-webkit-touch-callout: none;
|
|
40615
41403
|
-webkit-tap-highlight-color: $kendo-color-rgba-transparent;
|
|
40616
41404
|
|