@progress/kendo-theme-bootstrap 5.4.0 → 5.4.1
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 +490 -216
- package/dist/all.scss +475 -185
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +3 -3
- package/scss/breadcrumb/_layout.scss +2 -1
- package/scss/breadcrumb/_theme.scss +2 -1
- package/scss/grid/_theme.scss +82 -23
- package/scss/pager/_theme.scss +2 -1
- package/scss/scrollview/_theme.scss +8 -4
- package/scss/spreadsheet/_theme.scss +13 -6
- package/scss/tabstrip/_theme.scss +12 -4
package/dist/all.scss
CHANGED
|
@@ -910,13 +910,15 @@ $_kendo-imported-modules: ();
|
|
|
910
910
|
background-color: $primary;
|
|
911
911
|
}
|
|
912
912
|
|
|
913
|
-
&.k-state-focused::after
|
|
913
|
+
&.k-state-focused::after ,
|
|
914
|
+
&.k-focus::after {
|
|
914
915
|
opacity: 1;
|
|
915
916
|
transform: scaleX(1);
|
|
916
917
|
}
|
|
917
918
|
|
|
918
919
|
|
|
919
|
-
&.k-state-invalid::after
|
|
920
|
+
&.k-state-invalid::after ,
|
|
921
|
+
&.k-invalid::after {
|
|
920
922
|
background-color: $error;
|
|
921
923
|
transition: none;
|
|
922
924
|
}
|
|
@@ -3765,6 +3767,7 @@ $display4-letter-spacing: null !default;
|
|
|
3765
3767
|
|
|
3766
3768
|
// Disabled state
|
|
3767
3769
|
.k-state-disabled,
|
|
3770
|
+
.k-disabled,
|
|
3768
3771
|
.k-widget[disabled],
|
|
3769
3772
|
.k-disabled {
|
|
3770
3773
|
@include disabled( $disabled-styling );
|
|
@@ -11601,6 +11604,14 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
11601
11604
|
}
|
|
11602
11605
|
}
|
|
11603
11606
|
|
|
11607
|
+
|
|
11608
|
+
// Angular specific
|
|
11609
|
+
.k-input > kendo-popup,
|
|
11610
|
+
.k-picker > kendo-popup {
|
|
11611
|
+
position: fixed;
|
|
11612
|
+
}
|
|
11613
|
+
|
|
11614
|
+
|
|
11604
11615
|
}
|
|
11605
11616
|
|
|
11606
11617
|
|
|
@@ -17255,7 +17266,8 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17255
17266
|
|
|
17256
17267
|
|
|
17257
17268
|
// Selection
|
|
17258
|
-
> .k-state-selected
|
|
17269
|
+
> .k-state-selected ,
|
|
17270
|
+
> .k-selected {
|
|
17259
17271
|
border-width: 0;
|
|
17260
17272
|
border-style: solid;
|
|
17261
17273
|
display: flex;
|
|
@@ -17325,7 +17337,8 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17325
17337
|
flex-direction: row;
|
|
17326
17338
|
}
|
|
17327
17339
|
|
|
17328
|
-
> .k-state-selected
|
|
17340
|
+
> .k-state-selected ,
|
|
17341
|
+
> .k-selected {
|
|
17329
17342
|
width: 0;
|
|
17330
17343
|
width: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
|
|
17331
17344
|
flex-direction: row;
|
|
@@ -17351,7 +17364,8 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17351
17364
|
// Horizontal reverse
|
|
17352
17365
|
&.k-progressbar-reverse {
|
|
17353
17366
|
|
|
17354
|
-
> .k-state-selected
|
|
17367
|
+
> .k-state-selected ,
|
|
17368
|
+
> .k-selected {
|
|
17355
17369
|
flex-direction: row-reverse;
|
|
17356
17370
|
justify-self: flex-end;
|
|
17357
17371
|
}
|
|
@@ -17375,7 +17389,8 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17375
17389
|
writing-mode: vertical-lr;
|
|
17376
17390
|
}
|
|
17377
17391
|
|
|
17378
|
-
> .k-state-selected
|
|
17392
|
+
> .k-state-selected ,
|
|
17393
|
+
> .k-selected {
|
|
17379
17394
|
height: 0;
|
|
17380
17395
|
height: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
|
|
17381
17396
|
flex-direction: column-reverse;
|
|
@@ -17404,7 +17419,8 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17404
17419
|
&.k-progressbar-reverse {
|
|
17405
17420
|
flex-direction: column;
|
|
17406
17421
|
|
|
17407
|
-
> .k-state-selected
|
|
17422
|
+
> .k-state-selected ,
|
|
17423
|
+
> .k-selected {
|
|
17408
17424
|
flex-direction: column;
|
|
17409
17425
|
align-self: flex-start;
|
|
17410
17426
|
}
|
|
@@ -17416,6 +17432,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17416
17432
|
.k-progressbar-indeterminate {
|
|
17417
17433
|
.k-progress-status-wrap,
|
|
17418
17434
|
.k-state-selected,
|
|
17435
|
+
.k-selected,
|
|
17419
17436
|
.k-item {
|
|
17420
17437
|
display: none;
|
|
17421
17438
|
}
|
|
@@ -17426,7 +17443,9 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17426
17443
|
.telerik-blazor.k-progressbar-horizontal {
|
|
17427
17444
|
|
|
17428
17445
|
> .k-state-selected,
|
|
17429
|
-
> .k-
|
|
17446
|
+
> .k-selected,
|
|
17447
|
+
> .k-state-selected > .k-progress-status-wrap ,
|
|
17448
|
+
> .k-selected > .k-progress-status-wrap {
|
|
17430
17449
|
transition: width .1s ease-in-out;
|
|
17431
17450
|
}
|
|
17432
17451
|
}
|
|
@@ -17454,7 +17473,8 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17454
17473
|
display: -ms-inline-grid;
|
|
17455
17474
|
|
|
17456
17475
|
> .k-progress-status-wrap,
|
|
17457
|
-
> .k-state-selected
|
|
17476
|
+
> .k-state-selected ,
|
|
17477
|
+
> .k-selected {
|
|
17458
17478
|
-ms-grid-column: 1;
|
|
17459
17479
|
-ms-grid-row: 1;
|
|
17460
17480
|
}
|
|
@@ -17463,7 +17483,8 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17463
17483
|
-ms-grid-columns: 1fr;
|
|
17464
17484
|
-ms-grid-rows: $progressbar-height;
|
|
17465
17485
|
|
|
17466
|
-
&.k-progressbar-reverse > .k-state-selected
|
|
17486
|
+
&.k-progressbar-reverse > .k-state-selected ,
|
|
17487
|
+
&.k-progressbar-reverse > .k-selected {
|
|
17467
17488
|
-ms-grid-column-align: end;
|
|
17468
17489
|
}
|
|
17469
17490
|
}
|
|
@@ -17471,11 +17492,13 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17471
17492
|
-ms-grid-columns: $progressbar-height;
|
|
17472
17493
|
-ms-grid-rows: 1fr;
|
|
17473
17494
|
|
|
17474
|
-
> .k-state-selected
|
|
17495
|
+
> .k-state-selected ,
|
|
17496
|
+
> .k-selected {
|
|
17475
17497
|
-ms-grid-row-align: end;
|
|
17476
17498
|
}
|
|
17477
17499
|
|
|
17478
|
-
&.k-progressbar-reverse > .k-state-selected
|
|
17500
|
+
&.k-progressbar-reverse > .k-state-selected ,
|
|
17501
|
+
&.k-progressbar-reverse > .k-selected {
|
|
17479
17502
|
-ms-grid-row-align: start;
|
|
17480
17503
|
}
|
|
17481
17504
|
}
|
|
@@ -17497,7 +17520,8 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17497
17520
|
.k-progressbar {
|
|
17498
17521
|
@include fill( $progressbar-text, $progressbar-bg, $progressbar-border, $progressbar-gradient );
|
|
17499
17522
|
|
|
17500
|
-
.k-state-selected
|
|
17523
|
+
.k-state-selected ,
|
|
17524
|
+
.k-selected {
|
|
17501
17525
|
@include fill( $progressbar-fill-text, $progressbar-fill-bg, $progressbar-fill-border, $progressbar-fill-gradient );
|
|
17502
17526
|
}
|
|
17503
17527
|
|
|
@@ -17866,7 +17890,8 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
17866
17890
|
}
|
|
17867
17891
|
|
|
17868
17892
|
.k-radio:focus,
|
|
17869
|
-
.k-radio.k-state-focus
|
|
17893
|
+
.k-radio.k-state-focus ,
|
|
17894
|
+
.k-radio.k-focus {
|
|
17870
17895
|
box-shadow: none !important; // sass-lint:disable-line no-important
|
|
17871
17896
|
|
|
17872
17897
|
&::after {
|
|
@@ -17929,7 +17954,8 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
17929
17954
|
|
|
17930
17955
|
// Hover state
|
|
17931
17956
|
.k-radio:hover,
|
|
17932
|
-
.k-radio.k-state-hover
|
|
17957
|
+
.k-radio.k-state-hover ,
|
|
17958
|
+
.k-radio.k-hover {
|
|
17933
17959
|
@include fill(
|
|
17934
17960
|
$kendo-radio-hover-text,
|
|
17935
17961
|
$kendo-radio-hover-bg,
|
|
@@ -17940,7 +17966,8 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
17940
17966
|
|
|
17941
17967
|
// Focus state
|
|
17942
17968
|
.k-radio:focus,
|
|
17943
|
-
.k-radio.k-state-focus
|
|
17969
|
+
.k-radio.k-state-focus ,
|
|
17970
|
+
.k-radio.k-focus {
|
|
17944
17971
|
@include fill( $border: $kendo-radio-focus-border );
|
|
17945
17972
|
@include box-shadow( $kendo-radio-focus-shadow );
|
|
17946
17973
|
}
|
|
@@ -17971,7 +17998,8 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
17971
17998
|
);
|
|
17972
17999
|
}
|
|
17973
18000
|
.k-radio:checked:focus,
|
|
17974
|
-
.k-radio.k-checked.k-state-focus
|
|
18001
|
+
.k-radio.k-checked.k-state-focus ,
|
|
18002
|
+
.k-radio.k-checked.k-focus {
|
|
17975
18003
|
@include fill( $border: $kendo-radio-focus-checked-border );
|
|
17976
18004
|
@include box-shadow( $kendo-radio-focus-checked-shadow );
|
|
17977
18005
|
}
|
|
@@ -18147,7 +18175,8 @@ $slider-disabled-opacity: null !default;
|
|
|
18147
18175
|
}
|
|
18148
18176
|
|
|
18149
18177
|
|
|
18150
|
-
&.k-state-disabled
|
|
18178
|
+
&.k-state-disabled ,
|
|
18179
|
+
&.k-disabled {
|
|
18151
18180
|
.k-tick,
|
|
18152
18181
|
.k-slider-track,
|
|
18153
18182
|
.k-draghandle {
|
|
@@ -18593,18 +18622,21 @@ $slider-disabled-opacity: null !default;
|
|
|
18593
18622
|
}
|
|
18594
18623
|
|
|
18595
18624
|
&:focus,
|
|
18596
|
-
&.k-state-focused
|
|
18625
|
+
&.k-state-focused ,
|
|
18626
|
+
&.k-focus {
|
|
18597
18627
|
@include box-shadow( $slider-draghandle-focused-shadow );
|
|
18598
18628
|
}
|
|
18599
18629
|
}
|
|
18600
18630
|
|
|
18601
|
-
&.k-state-focused
|
|
18631
|
+
&.k-state-focused ,
|
|
18632
|
+
&.k-focus {
|
|
18602
18633
|
.k-draghandle {
|
|
18603
18634
|
@include box-shadow( $slider-draghandle-focused-shadow );
|
|
18604
18635
|
}
|
|
18605
18636
|
}
|
|
18606
18637
|
|
|
18607
|
-
&.k-state-disabled
|
|
18638
|
+
&.k-state-disabled ,
|
|
18639
|
+
&.k-disabled {
|
|
18608
18640
|
opacity: $slider-disabled-opacity;
|
|
18609
18641
|
}
|
|
18610
18642
|
}
|
|
@@ -19153,7 +19185,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19153
19185
|
}
|
|
19154
19186
|
|
|
19155
19187
|
// // styles are applied to the k-link element inside
|
|
19156
|
-
// .k-state-selected
|
|
19188
|
+
// .k-state-selected ,
|
|
19189
|
+
// .k-selected {
|
|
19157
19190
|
// color: inherit;
|
|
19158
19191
|
// background: transparent;
|
|
19159
19192
|
// border-color: transparent;
|
|
@@ -19352,7 +19385,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19352
19385
|
);
|
|
19353
19386
|
}
|
|
19354
19387
|
.k-calendar-td.k-state-selected:hover .k-link,
|
|
19388
|
+
.k-calendar-td.k-selected:hover .k-link,
|
|
19355
19389
|
.k-calendar-td.k-state-selected.k-state-hover .k-link,
|
|
19390
|
+
.k-calendar-td.k-selected.k-hover .k-link,
|
|
19356
19391
|
.k-calendar-td.k-selected:hover .k-link,
|
|
19357
19392
|
.k-calendar-td.k-selected.k-hover .k-link {
|
|
19358
19393
|
@include fill(
|
|
@@ -19363,12 +19398,15 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19363
19398
|
);
|
|
19364
19399
|
}
|
|
19365
19400
|
.k-calendar-td.k-state-focused .k-link,
|
|
19401
|
+
.k-calendar-td.k-focus .k-link,
|
|
19366
19402
|
.k-calendar-td.k-state-focus .k-link,
|
|
19367
19403
|
.k-calendar-td.k-focus .k-link {
|
|
19368
19404
|
box-shadow: $calendar-cell-focused-shadow;
|
|
19369
19405
|
}
|
|
19370
19406
|
.k-calendar-td.k-state-selected.k-state-focused .k-link,
|
|
19407
|
+
.k-calendar-td.k-selected.k-focused .k-link,
|
|
19371
19408
|
.k-calendar-td.k-state-selected.k-state-focus .k-link,
|
|
19409
|
+
.k-calendar-td.k-selected.k-focus .k-link,
|
|
19372
19410
|
.k-calendar-td.k-selected:focus .k-link,
|
|
19373
19411
|
.k-calendar-td.k-selected.k-focus .k-link {
|
|
19374
19412
|
box-shadow: $calendar-cell-selected-focus-shadow;
|
|
@@ -19468,6 +19506,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19468
19506
|
}
|
|
19469
19507
|
|
|
19470
19508
|
.k-range-start.k-state-active,
|
|
19509
|
+
.k-range-start.k-active,
|
|
19471
19510
|
.k-range-end.k-state-active,
|
|
19472
19511
|
.k-range-end.k-active {
|
|
19473
19512
|
.k-link {
|
|
@@ -19667,7 +19706,8 @@ $time-list-focused-bg: rgba(0, 0, 0, .02) !default;
|
|
|
19667
19706
|
display: block;
|
|
19668
19707
|
}
|
|
19669
19708
|
|
|
19670
|
-
&.k-state-focused
|
|
19709
|
+
&.k-state-focused ,
|
|
19710
|
+
&.k-focus {
|
|
19671
19711
|
&::before,
|
|
19672
19712
|
&::after {
|
|
19673
19713
|
display: block;
|
|
@@ -19811,7 +19851,8 @@ $time-list-focused-bg: rgba(0, 0, 0, .02) !default;
|
|
|
19811
19851
|
color: $time-list-title-text;
|
|
19812
19852
|
}
|
|
19813
19853
|
|
|
19814
|
-
&.k-state-focused
|
|
19854
|
+
&.k-state-focused ,
|
|
19855
|
+
&.k-focus {
|
|
19815
19856
|
.k-title {
|
|
19816
19857
|
color: $time-list-title-focus-text;
|
|
19817
19858
|
}
|
|
@@ -20135,8 +20176,11 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
20135
20176
|
|
|
20136
20177
|
&:focus,
|
|
20137
20178
|
&.k-state-focus,
|
|
20179
|
+
&.k-focus,
|
|
20138
20180
|
&.k-state-selected,
|
|
20139
|
-
&.k-
|
|
20181
|
+
&.k-selected,
|
|
20182
|
+
&.k-state-selected:hover ,
|
|
20183
|
+
&.k-selected:hover {
|
|
20140
20184
|
position: relative;
|
|
20141
20185
|
z-index: 100;
|
|
20142
20186
|
}
|
|
@@ -20167,6 +20211,7 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
20167
20211
|
}
|
|
20168
20212
|
|
|
20169
20213
|
&.k-state-selected,
|
|
20214
|
+
&.k-selected,
|
|
20170
20215
|
&.k-state-selected:hover,
|
|
20171
20216
|
&.k-selected,
|
|
20172
20217
|
&.k-selected:hover {
|
|
@@ -22159,14 +22204,16 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
22159
22204
|
color: $component-text;
|
|
22160
22205
|
|
|
22161
22206
|
&:focus,
|
|
22162
|
-
&.k-state-focused
|
|
22207
|
+
&.k-state-focused ,
|
|
22208
|
+
&.k-focus {
|
|
22163
22209
|
|
|
22164
22210
|
.k-rating-item {
|
|
22165
22211
|
> .k-icon {
|
|
22166
22212
|
text-shadow: $rating-icon-focused-shadow;
|
|
22167
22213
|
}
|
|
22168
22214
|
|
|
22169
|
-
&.k-state-selected > .k-icon
|
|
22215
|
+
&.k-state-selected > .k-icon ,
|
|
22216
|
+
&.k-selected > .k-icon {
|
|
22170
22217
|
text-shadow: $rating-icon-focused-selected-shadow;
|
|
22171
22218
|
}
|
|
22172
22219
|
}
|
|
@@ -22176,17 +22223,20 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
22176
22223
|
.k-rating-item {
|
|
22177
22224
|
color: $rating-icon-text;
|
|
22178
22225
|
|
|
22179
|
-
&.k-state-selected
|
|
22226
|
+
&.k-state-selected ,
|
|
22227
|
+
&.k-selected {
|
|
22180
22228
|
color: $rating-icon-selected-text;
|
|
22181
22229
|
|
|
22182
22230
|
&:focus,
|
|
22183
|
-
&.k-state-focused
|
|
22231
|
+
&.k-state-focused ,
|
|
22232
|
+
&.k-focus {
|
|
22184
22233
|
color: $rating-icon-focused-text;
|
|
22185
22234
|
}
|
|
22186
22235
|
}
|
|
22187
22236
|
|
|
22188
22237
|
&:hover,
|
|
22189
|
-
&.k-state-hover
|
|
22238
|
+
&.k-state-hover ,
|
|
22239
|
+
&.k-hover {
|
|
22190
22240
|
color: $rating-icon-hover-text;
|
|
22191
22241
|
cursor: pointer;
|
|
22192
22242
|
}
|
|
@@ -23427,7 +23477,8 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
23427
23477
|
z-index: 1;
|
|
23428
23478
|
}
|
|
23429
23479
|
input[disabled],
|
|
23430
|
-
input.k-state-disabled
|
|
23480
|
+
input.k-state-disabled ,
|
|
23481
|
+
input.k-disabled {
|
|
23431
23482
|
visibility: hidden;
|
|
23432
23483
|
}
|
|
23433
23484
|
}
|
|
@@ -23474,11 +23525,13 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
23474
23525
|
|
|
23475
23526
|
.k-file {
|
|
23476
23527
|
|
|
23477
|
-
&.k-state-focused
|
|
23528
|
+
&.k-state-focused ,
|
|
23529
|
+
&.k-focus {
|
|
23478
23530
|
box-shadow: inset $upload-focused-shadow;
|
|
23479
23531
|
}
|
|
23480
23532
|
|
|
23481
|
-
.k-upload-action.k-state-focused
|
|
23533
|
+
.k-upload-action.k-state-focused ,
|
|
23534
|
+
.k-upload-action.k-focus {
|
|
23482
23535
|
box-shadow: $upload-focused-shadow;
|
|
23483
23536
|
}
|
|
23484
23537
|
|
|
@@ -23570,6 +23623,7 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
23570
23623
|
|
|
23571
23624
|
// Invalid,
|
|
23572
23625
|
&.k-state-invalid,
|
|
23626
|
+
&.k-invalid,
|
|
23573
23627
|
&.ng-invalid.ng-touched,
|
|
23574
23628
|
&.ng-invalid.ng-dirty {
|
|
23575
23629
|
border-color: $invalid-border;
|
|
@@ -24538,7 +24592,8 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
24538
24592
|
|
|
24539
24593
|
// Hover state
|
|
24540
24594
|
&:hover,
|
|
24541
|
-
&.k-state-hover
|
|
24595
|
+
&.k-state-hover ,
|
|
24596
|
+
&.k-hover {
|
|
24542
24597
|
@include fill(
|
|
24543
24598
|
$actionsheet-item-hover-text,
|
|
24544
24599
|
$actionsheet-item-hover-bg,
|
|
@@ -24551,7 +24606,8 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
24551
24606
|
|
|
24552
24607
|
// Focus state
|
|
24553
24608
|
&:focus,
|
|
24554
|
-
&.k-state-focus
|
|
24609
|
+
&.k-state-focus ,
|
|
24610
|
+
&.k-focus {
|
|
24555
24611
|
@include fill(
|
|
24556
24612
|
$actionsheet-item-focus-text,
|
|
24557
24613
|
$actionsheet-item-focus-bg,
|
|
@@ -24564,7 +24620,8 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
24564
24620
|
|
|
24565
24621
|
// Disabed state
|
|
24566
24622
|
&:disabled,
|
|
24567
|
-
&.k-state-disabled
|
|
24623
|
+
&.k-state-disabled ,
|
|
24624
|
+
&.k-disabled {
|
|
24568
24625
|
@include fill(
|
|
24569
24626
|
$actionsheet-item-disabled-text,
|
|
24570
24627
|
$actionsheet-item-disabled-bg,
|
|
@@ -24808,7 +24865,8 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
24808
24865
|
|
|
24809
24866
|
.k-window {
|
|
24810
24867
|
&:focus,
|
|
24811
|
-
&.k-state-focused
|
|
24868
|
+
&.k-state-focused ,
|
|
24869
|
+
&.k-focus {
|
|
24812
24870
|
@include box-shadow( $window-focused-shadow );
|
|
24813
24871
|
}
|
|
24814
24872
|
}
|
|
@@ -25311,29 +25369,34 @@ $drawer-selected-hover-text: $selected-text !default;
|
|
|
25311
25369
|
.k-drawer-item {
|
|
25312
25370
|
|
|
25313
25371
|
&:hover,
|
|
25314
|
-
&.k-state-hover
|
|
25372
|
+
&.k-state-hover ,
|
|
25373
|
+
&.k-hover {
|
|
25315
25374
|
color: $drawer-hovered-text;
|
|
25316
25375
|
background-color: $drawer-hovered-bg;
|
|
25317
25376
|
}
|
|
25318
25377
|
|
|
25319
25378
|
&:focus,
|
|
25320
|
-
&.k-state-focused
|
|
25379
|
+
&.k-state-focused ,
|
|
25380
|
+
&.k-focus {
|
|
25321
25381
|
background-color: $drawer-focused-bg;
|
|
25322
25382
|
box-shadow: $drawer-focused-shadow;
|
|
25323
25383
|
|
|
25324
25384
|
&:hover,
|
|
25325
|
-
&.k-state-hover
|
|
25385
|
+
&.k-state-hover ,
|
|
25386
|
+
&.k-hover {
|
|
25326
25387
|
color: $drawer-hovered-text;
|
|
25327
25388
|
background-color: $drawer-hovered-bg;
|
|
25328
25389
|
}
|
|
25329
25390
|
}
|
|
25330
25391
|
|
|
25331
|
-
&.k-state-selected
|
|
25392
|
+
&.k-state-selected ,
|
|
25393
|
+
&.k-selected {
|
|
25332
25394
|
color: $drawer-selected-text;
|
|
25333
25395
|
background-color: $drawer-selected-bg;
|
|
25334
25396
|
|
|
25335
25397
|
&:hover,
|
|
25336
|
-
&.k-state-hover
|
|
25398
|
+
&.k-state-hover ,
|
|
25399
|
+
&.k-hover {
|
|
25337
25400
|
color: $drawer-selected-hover-text;
|
|
25338
25401
|
background-color: $drawer-selected-hover-bg;
|
|
25339
25402
|
}
|
|
@@ -26589,7 +26652,8 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
26589
26652
|
outline: 0;
|
|
26590
26653
|
}
|
|
26591
26654
|
}
|
|
26592
|
-
.k-bottom-nav-item.k-state-disabled
|
|
26655
|
+
.k-bottom-nav-item.k-state-disabled ,
|
|
26656
|
+
.k-bottom-nav-item.k-disabled {
|
|
26593
26657
|
background-color: initial;
|
|
26594
26658
|
}
|
|
26595
26659
|
|
|
@@ -26636,12 +26700,15 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
26636
26700
|
);
|
|
26637
26701
|
|
|
26638
26702
|
.k-bottom-nav-item.k-state-focus,
|
|
26703
|
+
.k-bottom-nav-item.k-focus,
|
|
26639
26704
|
.k-bottom-nav-item.k-state-focused,
|
|
26705
|
+
.k-bottom-nav-item.k-focus,
|
|
26640
26706
|
.k-bottom-nav-item:focus {
|
|
26641
26707
|
@include fill( $bg: rgba(true-mix( $color, contrast-wcag( $color ), 35%), .2));
|
|
26642
26708
|
}
|
|
26643
26709
|
|
|
26644
|
-
.k-bottom-nav-item.k-state-selected
|
|
26710
|
+
.k-bottom-nav-item.k-state-selected ,
|
|
26711
|
+
.k-bottom-nav-item.k-selected {
|
|
26645
26712
|
@include fill( $color: contrast-wcag( $color ) );
|
|
26646
26713
|
}
|
|
26647
26714
|
}
|
|
@@ -26656,13 +26723,16 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
26656
26723
|
);
|
|
26657
26724
|
|
|
26658
26725
|
.k-bottom-nav-item.k-state-focus,
|
|
26726
|
+
.k-bottom-nav-item.k-focus,
|
|
26659
26727
|
.k-bottom-nav-item.k-state-focused,
|
|
26728
|
+
.k-bottom-nav-item.k-focus,
|
|
26660
26729
|
.k-bottom-nav-item:focus {
|
|
26661
26730
|
@include fill( $bg: rgba($bottom-nav-flat-text, .05) );
|
|
26662
26731
|
}
|
|
26663
26732
|
|
|
26664
26733
|
@each $name, $color in $kendo-theme-colors {
|
|
26665
|
-
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected
|
|
26734
|
+
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected ,
|
|
26735
|
+
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-selected {
|
|
26666
26736
|
@if $name == "secondary" or $name == "light" {
|
|
26667
26737
|
@include fill( $color: try-shade($color, 3) );
|
|
26668
26738
|
} @else {
|
|
@@ -26917,7 +26987,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
26917
26987
|
text-decoration: $link-decoration;
|
|
26918
26988
|
|
|
26919
26989
|
&:hover,
|
|
26920
|
-
&.k-state-hover
|
|
26990
|
+
&.k-state-hover ,
|
|
26991
|
+
&.k-hover {
|
|
26921
26992
|
text-decoration: $link-hover-decoration;
|
|
26922
26993
|
}
|
|
26923
26994
|
}
|
|
@@ -26937,7 +27008,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
26937
27008
|
);
|
|
26938
27009
|
|
|
26939
27010
|
&:focus,
|
|
26940
|
-
&.k-state-focused
|
|
27011
|
+
&.k-state-focused ,
|
|
27012
|
+
&.k-focus {
|
|
26941
27013
|
@include box-shadow( $breadcrumb-focused-shadow );
|
|
26942
27014
|
}
|
|
26943
27015
|
}
|
|
@@ -26953,7 +27025,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
26953
27025
|
|
|
26954
27026
|
// Hovered state
|
|
26955
27027
|
&:hover,
|
|
26956
|
-
&.k-state-hover
|
|
27028
|
+
&.k-state-hover ,
|
|
27029
|
+
&.k-hover {
|
|
26957
27030
|
@include fill(
|
|
26958
27031
|
$breadcrumb-link-hovered-text,
|
|
26959
27032
|
$breadcrumb-link-hovered-bg,
|
|
@@ -26963,7 +27036,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
26963
27036
|
|
|
26964
27037
|
// Focused state
|
|
26965
27038
|
&:focus,
|
|
26966
|
-
&.k-state-focused
|
|
27039
|
+
&.k-state-focused ,
|
|
27040
|
+
&.k-focus {
|
|
26967
27041
|
@include fill(
|
|
26968
27042
|
$breadcrumb-link-focused-text,
|
|
26969
27043
|
$breadcrumb-link-focused-bg,
|
|
@@ -26984,7 +27058,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
26984
27058
|
|
|
26985
27059
|
// Hovered state
|
|
26986
27060
|
&:hover,
|
|
26987
|
-
&.k-state-hover
|
|
27061
|
+
&.k-state-hover ,
|
|
27062
|
+
&.k-hover {
|
|
26988
27063
|
@include fill(
|
|
26989
27064
|
$breadcrumb-root-link-hovered-text,
|
|
26990
27065
|
$breadcrumb-root-link-hovered-bg,
|
|
@@ -26994,7 +27069,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
26994
27069
|
|
|
26995
27070
|
// Focused state
|
|
26996
27071
|
&:focus,
|
|
26997
|
-
&.k-state-focused
|
|
27072
|
+
&.k-state-focused ,
|
|
27073
|
+
&.k-focus {
|
|
26998
27074
|
@include fill(
|
|
26999
27075
|
$breadcrumb-root-link-focused-text,
|
|
27000
27076
|
$breadcrumb-root-link-focused-bg,
|
|
@@ -27017,7 +27093,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
27017
27093
|
color: $breadcrumb-active-color;
|
|
27018
27094
|
}
|
|
27019
27095
|
|
|
27020
|
-
.k-state-disabled
|
|
27096
|
+
.k-state-disabled ,
|
|
27097
|
+
.k-disabled {
|
|
27021
27098
|
opacity: 1;
|
|
27022
27099
|
filter: none;
|
|
27023
27100
|
}
|
|
@@ -27159,7 +27236,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27159
27236
|
|
|
27160
27237
|
// Focused state
|
|
27161
27238
|
&:focus,
|
|
27162
|
-
&.k-state-focus
|
|
27239
|
+
&.k-state-focus ,
|
|
27240
|
+
&.k-focus {
|
|
27163
27241
|
z-index: 3;
|
|
27164
27242
|
}
|
|
27165
27243
|
}
|
|
@@ -27208,7 +27286,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27208
27286
|
&:hover {
|
|
27209
27287
|
z-index: 2;
|
|
27210
27288
|
}
|
|
27211
|
-
&.k-state-disabled
|
|
27289
|
+
&.k-state-disabled ,
|
|
27290
|
+
&.k-disabled {
|
|
27212
27291
|
color: inherit;
|
|
27213
27292
|
}
|
|
27214
27293
|
}
|
|
@@ -27257,7 +27336,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27257
27336
|
}
|
|
27258
27337
|
|
|
27259
27338
|
// Selected state
|
|
27260
|
-
.k-state-selected
|
|
27339
|
+
.k-state-selected ,
|
|
27340
|
+
.k-selected {
|
|
27261
27341
|
cursor: inherit;
|
|
27262
27342
|
z-index: 2;
|
|
27263
27343
|
}
|
|
@@ -27429,7 +27509,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27429
27509
|
&:focus,
|
|
27430
27510
|
&.k-focus,
|
|
27431
27511
|
&.k-state-focus,
|
|
27432
|
-
&.k-state-focused
|
|
27512
|
+
&.k-state-focused ,
|
|
27513
|
+
&.k-focus {
|
|
27433
27514
|
@include fill( $bg: $pager-focus-bg );
|
|
27434
27515
|
@include box-shadow( $pager-focus-shadow );
|
|
27435
27516
|
}
|
|
@@ -27444,7 +27525,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27444
27525
|
);
|
|
27445
27526
|
|
|
27446
27527
|
&:hover,
|
|
27447
|
-
&.k-state-hover
|
|
27528
|
+
&.k-state-hover ,
|
|
27529
|
+
&.k-hover {
|
|
27448
27530
|
@include fill(
|
|
27449
27531
|
$pager-item-hover-text,
|
|
27450
27532
|
$pager-item-hover-bg,
|
|
@@ -27452,7 +27534,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27452
27534
|
);
|
|
27453
27535
|
}
|
|
27454
27536
|
|
|
27455
|
-
&.k-state-selected
|
|
27537
|
+
&.k-state-selected ,
|
|
27538
|
+
&.k-selected {
|
|
27456
27539
|
@include fill(
|
|
27457
27540
|
$pager-item-selected-text,
|
|
27458
27541
|
$pager-item-selected-bg,
|
|
@@ -27461,7 +27544,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27461
27544
|
}
|
|
27462
27545
|
|
|
27463
27546
|
&:focus,
|
|
27464
|
-
&.k-state-focus
|
|
27547
|
+
&.k-state-focus ,
|
|
27548
|
+
&.k-focus {
|
|
27465
27549
|
background-color: $pager-item-focus-bg;
|
|
27466
27550
|
@include box-shadow( $pager-item-focus-shadow );
|
|
27467
27551
|
}
|
|
@@ -27484,7 +27568,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27484
27568
|
);
|
|
27485
27569
|
|
|
27486
27570
|
&:hover,
|
|
27487
|
-
&.k-state-hover
|
|
27571
|
+
&.k-state-hover ,
|
|
27572
|
+
&.k-hover {
|
|
27488
27573
|
@include fill(
|
|
27489
27574
|
$pager-number-hover-text,
|
|
27490
27575
|
$pager-number-hover-bg,
|
|
@@ -27493,12 +27578,14 @@ $pager-dropdown-width: 5em !default;
|
|
|
27493
27578
|
}
|
|
27494
27579
|
|
|
27495
27580
|
&:focus,
|
|
27496
|
-
&.k-state-focus
|
|
27581
|
+
&.k-state-focus ,
|
|
27582
|
+
&.k-focus {
|
|
27497
27583
|
background-color: $pager-number-focus-bg;
|
|
27498
27584
|
@include box-shadow( $pager-number-focus-shadow );
|
|
27499
27585
|
}
|
|
27500
27586
|
|
|
27501
|
-
&.k-state-selected
|
|
27587
|
+
&.k-state-selected ,
|
|
27588
|
+
&.k-selected {
|
|
27502
27589
|
@include fill(
|
|
27503
27590
|
$pager-number-selected-text,
|
|
27504
27591
|
$pager-number-selected-bg,
|
|
@@ -27530,7 +27617,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27530
27617
|
);
|
|
27531
27618
|
|
|
27532
27619
|
&:hover,
|
|
27533
|
-
&.k-state-hover
|
|
27620
|
+
&.k-state-hover ,
|
|
27621
|
+
&.k-hover {
|
|
27534
27622
|
@include fill(
|
|
27535
27623
|
$dropdownlist-hovered-text,
|
|
27536
27624
|
$dropdownlist-hovered-bg,
|
|
@@ -27550,14 +27638,16 @@ $pager-dropdown-width: 5em !default;
|
|
|
27550
27638
|
.k-link {
|
|
27551
27639
|
|
|
27552
27640
|
&:hover,
|
|
27553
|
-
&.k-state-hover
|
|
27641
|
+
&.k-state-hover ,
|
|
27642
|
+
&.k-hover {
|
|
27554
27643
|
@include fill(
|
|
27555
27644
|
$kendo-list-item-hover-text,
|
|
27556
27645
|
$kendo-list-item-hover-bg
|
|
27557
27646
|
);
|
|
27558
27647
|
}
|
|
27559
27648
|
|
|
27560
|
-
&.k-state-selected
|
|
27649
|
+
&.k-state-selected ,
|
|
27650
|
+
&.k-selected {
|
|
27561
27651
|
@include fill(
|
|
27562
27652
|
$kendo-list-item-selected-text,
|
|
27563
27653
|
$kendo-list-item-selected-bg
|
|
@@ -27596,7 +27686,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27596
27686
|
);
|
|
27597
27687
|
|
|
27598
27688
|
&:hover,
|
|
27599
|
-
&.k-state-hover
|
|
27689
|
+
&.k-state-hover ,
|
|
27690
|
+
&.k-hover {
|
|
27600
27691
|
@include fill(
|
|
27601
27692
|
$pager-text,
|
|
27602
27693
|
$pager-item-hover-bg,
|
|
@@ -27862,7 +27953,8 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
27862
27953
|
opacity: $stepper-optional-label-opacity;
|
|
27863
27954
|
}
|
|
27864
27955
|
.k-step-disabled .k-step-label-optional,
|
|
27865
|
-
&.k-state-disabled .k-step-label-optional
|
|
27956
|
+
&.k-state-disabled .k-step-label-optional ,
|
|
27957
|
+
&.k-disabled .k-step-label-optional {
|
|
27866
27958
|
color: inherit;
|
|
27867
27959
|
}
|
|
27868
27960
|
|
|
@@ -28179,7 +28271,8 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
28179
28271
|
$bg: $stepper-progressbar-bg
|
|
28180
28272
|
);
|
|
28181
28273
|
|
|
28182
|
-
.k-state-selected
|
|
28274
|
+
.k-state-selected ,
|
|
28275
|
+
.k-selected {
|
|
28183
28276
|
@include fill(
|
|
28184
28277
|
$color: $stepper-progressbar-fill-text,
|
|
28185
28278
|
$bg: $stepper-progressbar-fill-bg
|
|
@@ -28429,12 +28522,14 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28429
28522
|
position: relative;
|
|
28430
28523
|
z-index: 1;
|
|
28431
28524
|
|
|
28432
|
-
&.k-state-active
|
|
28525
|
+
&.k-state-active ,
|
|
28526
|
+
&.k-active {
|
|
28433
28527
|
display: block;
|
|
28434
28528
|
}
|
|
28435
28529
|
|
|
28436
28530
|
&:focus,
|
|
28437
|
-
&.k-state-focused
|
|
28531
|
+
&.k-state-focused ,
|
|
28532
|
+
&.k-focus {
|
|
28438
28533
|
outline-width: 1px;
|
|
28439
28534
|
outline-style: dotted;
|
|
28440
28535
|
outline-offset: -1px;
|
|
@@ -28522,7 +28617,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28522
28617
|
margin-left: $tabstrip-item-gap;
|
|
28523
28618
|
}
|
|
28524
28619
|
|
|
28525
|
-
.k-item.k-state-active
|
|
28620
|
+
.k-item.k-state-active ,
|
|
28621
|
+
.k-item.k-active {
|
|
28526
28622
|
border-bottom-color: transparent;
|
|
28527
28623
|
}
|
|
28528
28624
|
}
|
|
@@ -28551,7 +28647,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28551
28647
|
margin-left: $tabstrip-item-gap;
|
|
28552
28648
|
}
|
|
28553
28649
|
|
|
28554
|
-
.k-item.k-state-active
|
|
28650
|
+
.k-item.k-state-active ,
|
|
28651
|
+
.k-item.k-active {
|
|
28555
28652
|
border-top-color: transparent;
|
|
28556
28653
|
}
|
|
28557
28654
|
}
|
|
@@ -28584,7 +28681,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28584
28681
|
margin-top: $tabstrip-item-gap;
|
|
28585
28682
|
}
|
|
28586
28683
|
|
|
28587
|
-
.k-item.k-state-active
|
|
28684
|
+
.k-item.k-state-active ,
|
|
28685
|
+
.k-item.k-active {
|
|
28588
28686
|
border-right-color: transparent;
|
|
28589
28687
|
}
|
|
28590
28688
|
}
|
|
@@ -28619,7 +28717,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28619
28717
|
margin-top: $tabstrip-item-gap;
|
|
28620
28718
|
}
|
|
28621
28719
|
|
|
28622
|
-
.k-item.k-state-active
|
|
28720
|
+
.k-item.k-state-active ,
|
|
28721
|
+
.k-item.k-active {
|
|
28623
28722
|
border-left-color: transparent;
|
|
28624
28723
|
}
|
|
28625
28724
|
}
|
|
@@ -28664,7 +28763,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28664
28763
|
border-left-width: $tabstrip-indicator-size;
|
|
28665
28764
|
}
|
|
28666
28765
|
}
|
|
28667
|
-
.k-item.k-state-active::after
|
|
28766
|
+
.k-item.k-state-active::after ,
|
|
28767
|
+
.k-item.k-active::after {
|
|
28668
28768
|
display: block;
|
|
28669
28769
|
}
|
|
28670
28770
|
|
|
@@ -28737,7 +28837,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28737
28837
|
);
|
|
28738
28838
|
|
|
28739
28839
|
&:hover,
|
|
28740
|
-
&.k-state-hover
|
|
28840
|
+
&.k-state-hover ,
|
|
28841
|
+
&.k-hover {
|
|
28741
28842
|
@include fill(
|
|
28742
28843
|
$tabstrip-item-hovered-text,
|
|
28743
28844
|
$tabstrip-item-hovered-bg,
|
|
@@ -28748,7 +28849,9 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28748
28849
|
|
|
28749
28850
|
&:active,
|
|
28750
28851
|
&.k-state-active,
|
|
28751
|
-
&.k-
|
|
28852
|
+
&.k-active,
|
|
28853
|
+
&.k-state-selected ,
|
|
28854
|
+
&.k-selected {
|
|
28752
28855
|
@include fill(
|
|
28753
28856
|
$tabstrip-item-selected-text,
|
|
28754
28857
|
$tabstrip-item-selected-bg,
|
|
@@ -28758,7 +28861,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28758
28861
|
}
|
|
28759
28862
|
|
|
28760
28863
|
&:focus,
|
|
28761
|
-
&.k-state-focused
|
|
28864
|
+
&.k-state-focused ,
|
|
28865
|
+
&.k-focus {
|
|
28762
28866
|
@include box-shadow( $tabstrip-item-focused-shadow );
|
|
28763
28867
|
}
|
|
28764
28868
|
|
|
@@ -28780,7 +28884,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28780
28884
|
);
|
|
28781
28885
|
|
|
28782
28886
|
&:focus,
|
|
28783
|
-
&.k-state-focused
|
|
28887
|
+
&.k-state-focused ,
|
|
28888
|
+
&.k-focus {
|
|
28784
28889
|
outline-color: $tabstrip-content-border-focused;
|
|
28785
28890
|
}
|
|
28786
28891
|
}
|
|
@@ -28790,7 +28895,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28790
28895
|
@if ($tabstrip-indicator-size) {
|
|
28791
28896
|
|
|
28792
28897
|
.k-tabstrip-items-wrapper {
|
|
28793
|
-
.k-item.k-state-active::after
|
|
28898
|
+
.k-item.k-state-active::after ,
|
|
28899
|
+
.k-item.k-active::after {
|
|
28794
28900
|
border-color: $tabstrip-indicator-color;
|
|
28795
28901
|
}
|
|
28796
28902
|
}
|
|
@@ -28807,28 +28913,36 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28807
28913
|
.k-tabstrip-top {
|
|
28808
28914
|
|
|
28809
28915
|
> .k-tabstrip-items .k-item.k-state-hover,
|
|
28810
|
-
> .k-tabstrip-items .k-item.k-
|
|
28916
|
+
> .k-tabstrip-items .k-item.k-hover,
|
|
28917
|
+
> .k-tabstrip-items .k-item.k-state-active ,
|
|
28918
|
+
> .k-tabstrip-items .k-item.k-active {
|
|
28811
28919
|
border-bottom-color: transparent;
|
|
28812
28920
|
}
|
|
28813
28921
|
}
|
|
28814
28922
|
.k-tabstrip-bottom {
|
|
28815
28923
|
|
|
28816
28924
|
> .k-tabstrip-items .k-item.k-state-hover,
|
|
28817
|
-
> .k-tabstrip-items .k-item.k-
|
|
28925
|
+
> .k-tabstrip-items .k-item.k-hover,
|
|
28926
|
+
> .k-tabstrip-items .k-item.k-state-active ,
|
|
28927
|
+
> .k-tabstrip-items .k-item.k-active {
|
|
28818
28928
|
border-top-color: transparent;
|
|
28819
28929
|
}
|
|
28820
28930
|
}
|
|
28821
28931
|
.k-tabstrip-left {
|
|
28822
28932
|
|
|
28823
28933
|
> .k-tabstrip-items .k-item.k-state-hover,
|
|
28824
|
-
> .k-tabstrip-items .k-item.k-
|
|
28934
|
+
> .k-tabstrip-items .k-item.k-hover,
|
|
28935
|
+
> .k-tabstrip-items .k-item.k-state-active ,
|
|
28936
|
+
> .k-tabstrip-items .k-item.k-active {
|
|
28825
28937
|
border-right-color: transparent;
|
|
28826
28938
|
}
|
|
28827
28939
|
}
|
|
28828
28940
|
.k-tabstrip-right {
|
|
28829
28941
|
|
|
28830
28942
|
> .k-tabstrip-items .k-item.k-state-hover,
|
|
28831
|
-
> .k-tabstrip-items .k-item.k-
|
|
28943
|
+
> .k-tabstrip-items .k-item.k-hover,
|
|
28944
|
+
> .k-tabstrip-items .k-item.k-state-active ,
|
|
28945
|
+
> .k-tabstrip-items .k-item.k-active {
|
|
28832
28946
|
border-left-color: transparent;
|
|
28833
28947
|
}
|
|
28834
28948
|
}
|
|
@@ -28918,7 +29032,8 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
28918
29032
|
justify-content: space-between;
|
|
28919
29033
|
|
|
28920
29034
|
&:focus,
|
|
28921
|
-
&.k-state-focused
|
|
29035
|
+
&.k-state-focused ,
|
|
29036
|
+
&.k-focus {
|
|
28922
29037
|
outline-width: 1px;
|
|
28923
29038
|
outline-style: dotted;
|
|
28924
29039
|
outline-offset: -1px;
|
|
@@ -29014,12 +29129,14 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
29014
29129
|
@include exports("wizard/theme") {
|
|
29015
29130
|
.k-wizard-step {
|
|
29016
29131
|
&:focus,
|
|
29017
|
-
&.k-state-focused
|
|
29132
|
+
&.k-state-focused ,
|
|
29133
|
+
&.k-focus {
|
|
29018
29134
|
outline-color: $wizard-step-border-focused;
|
|
29019
29135
|
}
|
|
29020
29136
|
|
|
29021
29137
|
.k-ie &:focus,
|
|
29022
|
-
.k-ie &.k-state-focused
|
|
29138
|
+
.k-ie &.k-state-focused ,
|
|
29139
|
+
.k-ie &.k-focus {
|
|
29023
29140
|
@include box-shadow($wizard-focused-shadow);
|
|
29024
29141
|
outline: none;
|
|
29025
29142
|
}
|
|
@@ -29189,7 +29306,8 @@ $expander-content-padding-y: $expander-content-padding-x !default;
|
|
|
29189
29306
|
$expander-border
|
|
29190
29307
|
);
|
|
29191
29308
|
|
|
29192
|
-
&.k-state-focus
|
|
29309
|
+
&.k-state-focus ,
|
|
29310
|
+
&.k-focus {
|
|
29193
29311
|
box-shadow: $expander-focus-shadow;
|
|
29194
29312
|
}
|
|
29195
29313
|
}
|
|
@@ -29203,12 +29321,14 @@ $expander-content-padding-y: $expander-content-padding-x !default;
|
|
|
29203
29321
|
outline: none;
|
|
29204
29322
|
|
|
29205
29323
|
&:hover,
|
|
29206
|
-
&.k-state-hover
|
|
29324
|
+
&.k-state-hover ,
|
|
29325
|
+
&.k-hover {
|
|
29207
29326
|
background-color: $expander-header-hover-bg;
|
|
29208
29327
|
}
|
|
29209
29328
|
|
|
29210
29329
|
// Should be removed
|
|
29211
|
-
&.k-state-focused
|
|
29330
|
+
&.k-state-focused ,
|
|
29331
|
+
&.k-focus {
|
|
29212
29332
|
background-color: $expander-header-focused-bg;
|
|
29213
29333
|
box-shadow: $expander-header-focused-shadow;
|
|
29214
29334
|
}
|
|
@@ -29579,7 +29699,8 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29579
29699
|
|
|
29580
29700
|
// Hover
|
|
29581
29701
|
> .k-link:hover,
|
|
29582
|
-
> .k-link.k-state-hover
|
|
29702
|
+
> .k-link.k-state-hover ,
|
|
29703
|
+
> .k-link.k-hover {
|
|
29583
29704
|
@include fill(
|
|
29584
29705
|
$panelbar-header-hovered-text,
|
|
29585
29706
|
$panelbar-header-hovered-bg,
|
|
@@ -29591,7 +29712,9 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29591
29712
|
// Focus
|
|
29592
29713
|
> .k-link:focus,
|
|
29593
29714
|
> .k-link.k-state-focus,
|
|
29594
|
-
> .k-link.k-
|
|
29715
|
+
> .k-link.k-focus,
|
|
29716
|
+
> .k-link.k-state-focused ,
|
|
29717
|
+
> .k-link.k-focus {
|
|
29595
29718
|
@include fill(
|
|
29596
29719
|
$panelbar-header-focused-text,
|
|
29597
29720
|
$panelbar-header-focused-bg,
|
|
@@ -29603,7 +29726,8 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29603
29726
|
|
|
29604
29727
|
// Focus & Hover
|
|
29605
29728
|
> .k-link:focus:hover,
|
|
29606
|
-
> .k-link.k-state-focus.k-state-hover
|
|
29729
|
+
> .k-link.k-state-focus.k-state-hover ,
|
|
29730
|
+
> .k-link.k-focus.k-hover {
|
|
29607
29731
|
@include fill(
|
|
29608
29732
|
$panelbar-header-hovered-focused-text,
|
|
29609
29733
|
$panelbar-header-hovered-focused-bg,
|
|
@@ -29613,7 +29737,8 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29613
29737
|
}
|
|
29614
29738
|
|
|
29615
29739
|
// Selected
|
|
29616
|
-
> .k-link.k-state-selected
|
|
29740
|
+
> .k-link.k-state-selected ,
|
|
29741
|
+
> .k-link.k-selected {
|
|
29617
29742
|
@include fill(
|
|
29618
29743
|
$panelbar-header-selected-text,
|
|
29619
29744
|
$panelbar-header-selected-bg,
|
|
@@ -29629,7 +29754,9 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29629
29754
|
|
|
29630
29755
|
// Selected Hover
|
|
29631
29756
|
> .k-link.k-state-selected:hover,
|
|
29632
|
-
> .k-link.k-
|
|
29757
|
+
> .k-link.k-selected:hover,
|
|
29758
|
+
> .k-link.k-state-selected.k-state-hover ,
|
|
29759
|
+
> .k-link.k-selected.k-hover {
|
|
29633
29760
|
@include fill(
|
|
29634
29761
|
$panelbar-header-selected-hovered-text,
|
|
29635
29762
|
$panelbar-header-selected-hovered-bg,
|
|
@@ -29640,8 +29767,11 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29640
29767
|
|
|
29641
29768
|
// Selected Focus
|
|
29642
29769
|
> .k-link.k-state-selected:focus,
|
|
29770
|
+
> .k-link.k-selected:focus,
|
|
29643
29771
|
> .k-link.k-state-selected.k-state-focus,
|
|
29644
|
-
> .k-link.k-
|
|
29772
|
+
> .k-link.k-selected.k-focus,
|
|
29773
|
+
> .k-link.k-state-selected.k-state-focused ,
|
|
29774
|
+
> .k-link.k-selected.k-focused {
|
|
29645
29775
|
@include fill(
|
|
29646
29776
|
$panelbar-header-selected-focused-text,
|
|
29647
29777
|
$panelbar-header-selected-focused-bg,
|
|
@@ -29652,8 +29782,11 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29652
29782
|
|
|
29653
29783
|
// Selected Focus & Hover
|
|
29654
29784
|
> .k-link.k-state-selected:hover:focus,
|
|
29785
|
+
> .k-link.k-selected:hover:focus,
|
|
29655
29786
|
> .k-link.k-state-selected.k-state-hover.k-state-focus,
|
|
29656
|
-
> .k-link.k-
|
|
29787
|
+
> .k-link.k-selected.k-hover.k-state-focus,
|
|
29788
|
+
> .k-link.k-state-selected.k-state-hover.k-state-focused ,
|
|
29789
|
+
> .k-link.k-selected.k-hover.k-state-focused {
|
|
29657
29790
|
@include fill(
|
|
29658
29791
|
$panelbar-header-selected-hovered-focused-text,
|
|
29659
29792
|
$panelbar-header-selected-hovered-focused-bg,
|
|
@@ -29671,8 +29804,10 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29671
29804
|
// Hover
|
|
29672
29805
|
> .k-item > .k-link:hover,
|
|
29673
29806
|
> .k-item > .k-link.k-state-hover,
|
|
29807
|
+
> .k-item > .k-link.k-hover,
|
|
29674
29808
|
> .k-panelbar-item > .k-link:hover,
|
|
29675
|
-
> .k-panelbar-item > .k-link.k-state-hover
|
|
29809
|
+
> .k-panelbar-item > .k-link.k-state-hover ,
|
|
29810
|
+
> .k-panelbar-item > .k-link.k-hover {
|
|
29676
29811
|
@include fill(
|
|
29677
29812
|
$panelbar-item-hovered-text,
|
|
29678
29813
|
$panelbar-item-hovered-bg,
|
|
@@ -29684,10 +29819,14 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29684
29819
|
// Focus
|
|
29685
29820
|
> .k-item > .k-link:focus,
|
|
29686
29821
|
> .k-item > .k-link.k-state-focus,
|
|
29822
|
+
> .k-item > .k-link.k-focus,
|
|
29687
29823
|
> .k-item > .k-link.k-state-focused,
|
|
29824
|
+
> .k-item > .k-link.k-focus,
|
|
29688
29825
|
> .k-panelbar-item > .k-link:focus,
|
|
29689
29826
|
> .k-panelbar-item > .k-link.k-state-focus,
|
|
29690
|
-
> .k-panelbar-item > .k-link.k-
|
|
29827
|
+
> .k-panelbar-item > .k-link.k-focus,
|
|
29828
|
+
> .k-panelbar-item > .k-link.k-state-focused ,
|
|
29829
|
+
> .k-panelbar-item > .k-link.k-focus {
|
|
29691
29830
|
@include fill(
|
|
29692
29831
|
$panelbar-item-focused-text,
|
|
29693
29832
|
$panelbar-item-focused-bg,
|
|
@@ -29700,8 +29839,10 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29700
29839
|
// Focus & Hover
|
|
29701
29840
|
> .k-item > .k-link:focus:hover,
|
|
29702
29841
|
> .k-item > .k-link.k-state-focus.k-state-hover,
|
|
29842
|
+
> .k-item > .k-link.k-focus.k-hover,
|
|
29703
29843
|
> .k-panelbar-item > .k-link:focus:hover,
|
|
29704
|
-
> .k-panelbar-item > .k-link.k-state-focus.k-state-hover
|
|
29844
|
+
> .k-panelbar-item > .k-link.k-state-focus.k-state-hover ,
|
|
29845
|
+
> .k-panelbar-item > .k-link.k-focus.k-hover {
|
|
29705
29846
|
@include fill(
|
|
29706
29847
|
$panelbar-item-hovered-focused-text,
|
|
29707
29848
|
$panelbar-item-hovered-focused-bg,
|
|
@@ -29712,7 +29853,9 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29712
29853
|
|
|
29713
29854
|
// Selected
|
|
29714
29855
|
> .k-item > .k-link.k-state-selected,
|
|
29715
|
-
> .k-
|
|
29856
|
+
> .k-item > .k-link.k-selected,
|
|
29857
|
+
> .k-panelbar-item > .k-link.k-state-selected ,
|
|
29858
|
+
> .k-panelbar-item > .k-link.k-selected {
|
|
29716
29859
|
@include fill(
|
|
29717
29860
|
$panelbar-item-selected-text,
|
|
29718
29861
|
$panelbar-item-selected-bg,
|
|
@@ -29723,9 +29866,13 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29723
29866
|
|
|
29724
29867
|
// Selected Hover
|
|
29725
29868
|
> .k-item > .k-link.k-state-selected:hover,
|
|
29869
|
+
> .k-item > .k-link.k-selected:hover,
|
|
29726
29870
|
> .k-item > .k-link.k-state-selected.k-state-hover,
|
|
29871
|
+
> .k-item > .k-link.k-selected.k-hover,
|
|
29727
29872
|
> .k-panelbar-item > .k-link.k-state-selected:hover,
|
|
29728
|
-
> .k-panelbar-item > .k-link.k-
|
|
29873
|
+
> .k-panelbar-item > .k-link.k-selected:hover,
|
|
29874
|
+
> .k-panelbar-item > .k-link.k-state-selected.k-state-hover ,
|
|
29875
|
+
> .k-panelbar-item > .k-link.k-selected.k-hover {
|
|
29729
29876
|
@include fill(
|
|
29730
29877
|
$panelbar-item-selected-hovered-text,
|
|
29731
29878
|
$panelbar-item-selected-hovered-bg,
|
|
@@ -29736,11 +29883,17 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29736
29883
|
|
|
29737
29884
|
// Selected Focus
|
|
29738
29885
|
> .k-item > .k-link.k-state-selected:focus,
|
|
29886
|
+
> .k-item > .k-link.k-selected:focus,
|
|
29739
29887
|
> .k-item > .k-link.k-state-selected.k-state-focus,
|
|
29888
|
+
> .k-item > .k-link.k-selected.k-focus,
|
|
29740
29889
|
> .k-item > .k-link.k-state-selected.k-state-focused,
|
|
29890
|
+
> .k-item > .k-link.k-selected.k-focused,
|
|
29741
29891
|
> .k-panelbar-item > .k-link.k-state-selected:focus,
|
|
29892
|
+
> .k-panelbar-item > .k-link.k-selected:focus,
|
|
29742
29893
|
> .k-panelbar-item > .k-link.k-state-selected.k-state-focus,
|
|
29743
|
-
> .k-item > .k-link.k-
|
|
29894
|
+
> .k-panelbar-item > .k-link.k-selected.k-focus,
|
|
29895
|
+
> .k-item > .k-link.k-state-selected.k-state-focused ,
|
|
29896
|
+
> .k-item > .k-link.k-selected.k-focused {
|
|
29744
29897
|
@include fill(
|
|
29745
29898
|
$panelbar-item-selected-focused-text,
|
|
29746
29899
|
$panelbar-item-selected-focused-bg,
|
|
@@ -29751,11 +29904,17 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29751
29904
|
|
|
29752
29905
|
// Selected Focus & Hover
|
|
29753
29906
|
> .k-item > .k-link.k-state-selected:focus:hover,
|
|
29907
|
+
> .k-item > .k-link.k-selected:focus:hover,
|
|
29754
29908
|
> .k-item > .k-link.k-state-selected.k-state-focus.k-state-hover,
|
|
29909
|
+
> .k-item > .k-link.k-selected.k-focus.k-state-hover,
|
|
29755
29910
|
> .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover,
|
|
29911
|
+
> .k-item > .k-link.k-selected.k-focused.k-state-hover,
|
|
29756
29912
|
> .k-panelbar-item > .k-link.k-state-selected:focus:hover,
|
|
29913
|
+
> .k-panelbar-item > .k-link.k-selected:focus:hover,
|
|
29757
29914
|
> .k-panelbar-item > .k-link.k-state-selected.k-state-focus.k-state-hover,
|
|
29758
|
-
> .k-item > .k-link.k-
|
|
29915
|
+
> .k-panelbar-item > .k-link.k-selected.k-focus.k-state-hover,
|
|
29916
|
+
> .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover ,
|
|
29917
|
+
> .k-item > .k-link.k-selected.k-focused.k-state-hover {
|
|
29759
29918
|
@include fill(
|
|
29760
29919
|
$panelbar-item-selected-hovered-focused-text,
|
|
29761
29920
|
$panelbar-item-selected-hovered-focused-bg,
|
|
@@ -30039,6 +30198,7 @@ $splitbar-selected-text: $selected-text !default;
|
|
|
30039
30198
|
}
|
|
30040
30199
|
.k-splitbar:hover,
|
|
30041
30200
|
.k-splitbar.k-state-hover,
|
|
30201
|
+
.k-splitbar.k-hover,
|
|
30042
30202
|
.k-splitbar-horizontal-hover,
|
|
30043
30203
|
.k-splitbar-vertical-hover {
|
|
30044
30204
|
color: $splitbar-hover-text;
|
|
@@ -30046,7 +30206,9 @@ $splitbar-selected-text: $selected-text !default;
|
|
|
30046
30206
|
}
|
|
30047
30207
|
.k-splitbar:focus,
|
|
30048
30208
|
.k-splitbar.k-state-focus,
|
|
30049
|
-
.k-splitbar.k-
|
|
30209
|
+
.k-splitbar.k-focus,
|
|
30210
|
+
.k-splitbar.k-state-focused ,
|
|
30211
|
+
.k-splitbar.k-focus {
|
|
30050
30212
|
color: $splitbar-selected-text;
|
|
30051
30213
|
background: $splitbar-selected-bg;
|
|
30052
30214
|
}
|
|
@@ -30158,7 +30320,8 @@ $tilelayout-hint-border: $component-border !default;
|
|
|
30158
30320
|
.k-tilelayout-item:focus,
|
|
30159
30321
|
.k-tilelayout-item.k-focus,
|
|
30160
30322
|
.k-tilelayout-item.k-state-focus,
|
|
30161
|
-
.k-tilelayout-item.k-state-focused
|
|
30323
|
+
.k-tilelayout-item.k-state-focused ,
|
|
30324
|
+
.k-tilelayout-item.k-focus {
|
|
30162
30325
|
@include box-shadow($tilelayout-card-focus-shadow);
|
|
30163
30326
|
}
|
|
30164
30327
|
|
|
@@ -30833,11 +30996,13 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30833
30996
|
|
|
30834
30997
|
.k-column-menu {
|
|
30835
30998
|
|
|
30836
|
-
.k-listgroup-item.k-state-selected
|
|
30999
|
+
.k-listgroup-item.k-state-selected ,
|
|
31000
|
+
.k-listgroup-item.k-selected {
|
|
30837
31001
|
color: $adaptive-grid-sort-text;
|
|
30838
31002
|
background: none;
|
|
30839
31003
|
}
|
|
30840
|
-
.k-listgroup-item.k-state-selected .k-link
|
|
31004
|
+
.k-listgroup-item.k-state-selected .k-link ,
|
|
31005
|
+
.k-listgroup-item.k-selected .k-link {
|
|
30841
31006
|
color: inherit;
|
|
30842
31007
|
}
|
|
30843
31008
|
}
|
|
@@ -32429,28 +32594,35 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32429
32594
|
|
|
32430
32595
|
// Hover state
|
|
32431
32596
|
tbody tr:not(.k-detail-row):hover,
|
|
32432
|
-
tbody tr:not(.k-detail-row).k-state-hover
|
|
32597
|
+
tbody tr:not(.k-detail-row).k-state-hover ,
|
|
32598
|
+
tbody tr:not(.k-detail-row).k-hover {
|
|
32433
32599
|
color: $grid-hovered-text;
|
|
32434
32600
|
background-color: $grid-hovered-bg;
|
|
32435
32601
|
}
|
|
32436
32602
|
|
|
32437
32603
|
// Selected state
|
|
32438
32604
|
th.k-state-selected,
|
|
32605
|
+
th.k-selected,
|
|
32439
32606
|
td.k-state-selected,
|
|
32440
|
-
|
|
32607
|
+
td.k-selected,
|
|
32608
|
+
tr.k-state-selected > td ,
|
|
32609
|
+
tr.k-selected > td {
|
|
32441
32610
|
color: $grid-selected-text;
|
|
32442
32611
|
background-color: $grid-selected-bg;
|
|
32443
32612
|
}
|
|
32444
32613
|
|
|
32445
32614
|
// Focused state
|
|
32446
32615
|
td.k-state-focused,
|
|
32616
|
+
td.k-focus,
|
|
32447
32617
|
th.k-state-focused,
|
|
32618
|
+
th.k-focus,
|
|
32448
32619
|
th:focus,
|
|
32449
32620
|
.k-master-row > td:focus,
|
|
32450
32621
|
.k-grouping-row > td:focus,
|
|
32451
32622
|
.k-detail-row > td:focus,
|
|
32452
32623
|
.k-group-footer > td:focus,
|
|
32453
32624
|
.k-grid-pager.k-state-focused,
|
|
32625
|
+
.k-grid-pager.k-focus,
|
|
32454
32626
|
.k-grid-pager:focus {
|
|
32455
32627
|
box-shadow: $grid-focused-shadow;
|
|
32456
32628
|
}
|
|
@@ -32484,17 +32656,21 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32484
32656
|
}
|
|
32485
32657
|
|
|
32486
32658
|
// Selected state
|
|
32487
|
-
.k-state-selected td
|
|
32659
|
+
.k-state-selected td ,
|
|
32660
|
+
.k-selected td {
|
|
32488
32661
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
32489
32662
|
}
|
|
32490
32663
|
|
|
32491
|
-
.k-state-selected.k-alt td
|
|
32664
|
+
.k-state-selected.k-alt td ,
|
|
32665
|
+
.k-selected.k-alt td {
|
|
32492
32666
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
32493
32667
|
}
|
|
32494
32668
|
|
|
32495
32669
|
// Selected hover
|
|
32496
32670
|
.k-state-selected:hover td,
|
|
32497
|
-
.k-
|
|
32671
|
+
.k-selected:hover td,
|
|
32672
|
+
.k-state-selected.k-state-hover td ,
|
|
32673
|
+
.k-selected.k-hover td {
|
|
32498
32674
|
@include fill( $bg: $grid-sticky-selected-hovered-bg );
|
|
32499
32675
|
}
|
|
32500
32676
|
}
|
|
@@ -32549,10 +32725,12 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32549
32725
|
.k-hierarchy-cell .k-icon {
|
|
32550
32726
|
&:focus,
|
|
32551
32727
|
&.k-state-focus,
|
|
32728
|
+
&.k-focus,
|
|
32552
32729
|
&.k-state-border-down {
|
|
32553
32730
|
box-shadow: inset 0 0 0 2px rgba( 0, 0, 0, .1 );
|
|
32554
32731
|
}
|
|
32555
|
-
&.k-state-active
|
|
32732
|
+
&.k-state-active ,
|
|
32733
|
+
&.k-active {
|
|
32556
32734
|
color: $selected-text;
|
|
32557
32735
|
background-color: $selected-bg;
|
|
32558
32736
|
}
|
|
@@ -32606,14 +32784,20 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32606
32784
|
|
|
32607
32785
|
// Selected state
|
|
32608
32786
|
&.k-state-selected .k-grid-content-sticky,
|
|
32787
|
+
&.k-selected .k-grid-content-sticky,
|
|
32609
32788
|
&.k-state-selected .k-grid-row-sticky,
|
|
32610
|
-
|
|
32789
|
+
&.k-selected .k-grid-row-sticky,
|
|
32790
|
+
td.k-grid-content-sticky.k-state-selected ,
|
|
32791
|
+
td.k-grid-content-sticky.k-selected {
|
|
32611
32792
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
32612
32793
|
}
|
|
32613
32794
|
|
|
32614
32795
|
&.k-state-selected.k-alt .k-grid-content-sticky,
|
|
32796
|
+
&.k-selected.k-alt .k-grid-content-sticky,
|
|
32615
32797
|
&.k-state-selected.k-alt .k-grid-row-sticky,
|
|
32616
|
-
&.k-alt
|
|
32798
|
+
&.k-selected.k-alt .k-grid-row-sticky,
|
|
32799
|
+
&.k-alt td.k-grid-content-sticky.k-state-selected ,
|
|
32800
|
+
&.k-alt td.k-grid-content-sticky.k-selected {
|
|
32617
32801
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
32618
32802
|
}
|
|
32619
32803
|
|
|
@@ -32622,18 +32806,26 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32622
32806
|
&:hover .k-grid-content-sticky,
|
|
32623
32807
|
&:hover .k-grid-row-sticky,
|
|
32624
32808
|
&.k-state-hover .k-grid-content-sticky,
|
|
32625
|
-
&.k-
|
|
32809
|
+
&.k-hover .k-grid-content-sticky,
|
|
32810
|
+
&.k-state-hover .k-grid-row-sticky ,
|
|
32811
|
+
&.k-hover .k-grid-row-sticky {
|
|
32626
32812
|
background-color: $grid-sticky-hovered-bg;
|
|
32627
32813
|
}
|
|
32628
32814
|
|
|
32629
32815
|
|
|
32630
32816
|
// Selected hover
|
|
32631
32817
|
&.k-state-selected:hover .k-grid-content-sticky,
|
|
32818
|
+
&.k-selected:hover .k-grid-content-sticky,
|
|
32632
32819
|
&.k-state-selected:hover .k-grid-row-sticky,
|
|
32820
|
+
&.k-selected:hover .k-grid-row-sticky,
|
|
32633
32821
|
&.k-state-selected.k-state-hover .k-grid-content-sticky,
|
|
32822
|
+
&.k-selected.k-hover .k-grid-content-sticky,
|
|
32634
32823
|
&.k-state-selected.k-state-hover .k-grid-row-sticky,
|
|
32824
|
+
&.k-selected.k-hover .k-grid-row-sticky,
|
|
32635
32825
|
&:hover td.k-grid-content-sticky.k-state-selected,
|
|
32636
|
-
|
|
32826
|
+
&:hover td.k-grid-content-sticky.k-selected,
|
|
32827
|
+
&.k-state-hover td.k-grid-content-sticky.k-state-selected ,
|
|
32828
|
+
&.k-hover td.k-grid-content-sticky.k-selected {
|
|
32637
32829
|
background-color: $grid-sticky-selected-hovered-bg;
|
|
32638
32830
|
}
|
|
32639
32831
|
}
|
|
@@ -32646,7 +32838,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32646
32838
|
background-color: $grid-sticky-bg;
|
|
32647
32839
|
|
|
32648
32840
|
&:hover,
|
|
32649
|
-
&.k-state-hover
|
|
32841
|
+
&.k-state-hover ,
|
|
32842
|
+
&.k-hover {
|
|
32650
32843
|
background-color: $grid-sticky-hovered-bg;
|
|
32651
32844
|
}
|
|
32652
32845
|
}
|
|
@@ -32657,7 +32850,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32657
32850
|
background-color: $grid-sticky-bg;
|
|
32658
32851
|
|
|
32659
32852
|
&:hover td,
|
|
32660
|
-
&.k-state-hover td
|
|
32853
|
+
&.k-state-hover td ,
|
|
32854
|
+
&.k-hover td {
|
|
32661
32855
|
background-color: $grid-sticky-hovered-bg;
|
|
32662
32856
|
}
|
|
32663
32857
|
}
|
|
@@ -32669,43 +32863,66 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32669
32863
|
|
|
32670
32864
|
// Selected state
|
|
32671
32865
|
tr.k-state-selected .k-grid-content-sticky,
|
|
32866
|
+
tr.k-selected .k-grid-content-sticky,
|
|
32672
32867
|
.k-state-selected.k-grid-row-sticky td,
|
|
32868
|
+
.k-selected.k-grid-row-sticky td,
|
|
32673
32869
|
.k-grid-row-sticky td.k-state-selected,
|
|
32674
|
-
.k-
|
|
32870
|
+
.k-grid-row-sticky td.k-selected,
|
|
32871
|
+
.k-state-selected.k-grid-content-sticky ,
|
|
32872
|
+
.k-selected.k-grid-content-sticky {
|
|
32675
32873
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
32676
32874
|
}
|
|
32677
32875
|
|
|
32678
32876
|
tr.k-state-selected.k-alt .k-grid-content-sticky,
|
|
32877
|
+
tr.k-selected.k-alt .k-grid-content-sticky,
|
|
32679
32878
|
.k-state-selected.k-alt.k-grid-row-sticky td,
|
|
32680
|
-
.k-
|
|
32879
|
+
.k-selected.k-alt.k-grid-row-sticky td,
|
|
32880
|
+
.k-alt .k-state-selected.k-grid-content-sticky ,
|
|
32881
|
+
.k-alt .k-selected.k-grid-content-sticky {
|
|
32681
32882
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
32682
32883
|
}
|
|
32683
32884
|
|
|
32684
32885
|
// Hover state
|
|
32685
32886
|
tr:hover .k-grid-content-sticky,
|
|
32686
32887
|
tr.k-state-hover .k-grid-content-sticky,
|
|
32888
|
+
tr.k-hover .k-grid-content-sticky,
|
|
32687
32889
|
.k-grid-row-sticky:hover td,
|
|
32688
32890
|
.k-grid-row-sticky.k-state-hover td,
|
|
32891
|
+
.k-grid-row-sticky.k-hover td,
|
|
32689
32892
|
.k-grid-row-sticky.k-alt:hover td,
|
|
32690
32893
|
.k-grid-row-sticky.k-alt.k-state-hover td,
|
|
32894
|
+
.k-grid-row-sticky.k-alt.k-hover td,
|
|
32691
32895
|
.k-alt:hover .k-grid-content-sticky,
|
|
32692
|
-
.k-alt.k-state-hover .k-grid-content-sticky
|
|
32896
|
+
.k-alt.k-state-hover .k-grid-content-sticky ,
|
|
32897
|
+
.k-alt.k-hover .k-grid-content-sticky {
|
|
32693
32898
|
background-color: $grid-sticky-hovered-bg;
|
|
32694
32899
|
}
|
|
32695
32900
|
|
|
32696
32901
|
// Selected + Hover
|
|
32697
32902
|
tr.k-state-selected:hover .k-grid-content-sticky,
|
|
32903
|
+
tr.k-selected:hover .k-grid-content-sticky,
|
|
32698
32904
|
tr.k-state-selected.k-state-hover .k-grid-content-sticky,
|
|
32905
|
+
tr.k-selected.k-hover .k-grid-content-sticky,
|
|
32699
32906
|
.k-state-selected.k-grid-row-sticky:hover td,
|
|
32907
|
+
.k-selected.k-grid-row-sticky:hover td,
|
|
32700
32908
|
.k-state-selected.k-grid-row-sticky.k-state-hover td,
|
|
32909
|
+
.k-selected.k-grid-row-sticky.k-hover td,
|
|
32701
32910
|
.k-state-selected.k-alt.k-grid-row-sticky:hover td,
|
|
32911
|
+
.k-selected.k-alt.k-grid-row-sticky:hover td,
|
|
32702
32912
|
.k-state-selected.k-alt.k-grid-row-sticky.k-state-hover td,
|
|
32913
|
+
.k-selected.k-alt.k-grid-row-sticky.k-hover td,
|
|
32703
32914
|
tr.k-state-selected.k-alt:hover .k-grid-content-sticky,
|
|
32915
|
+
tr.k-selected.k-alt:hover .k-grid-content-sticky,
|
|
32704
32916
|
tr.k-state-selected.k-alt.k-state-hover .k-grid-content-sticky,
|
|
32917
|
+
tr.k-selected.k-alt.k-hover .k-grid-content-sticky,
|
|
32705
32918
|
.k-grid-row-sticky:hover td.k-state-selected,
|
|
32919
|
+
.k-grid-row-sticky:hover td.k-selected,
|
|
32706
32920
|
.k-grid-row-sticky.k-state-hover td.k-state-selected,
|
|
32921
|
+
.k-grid-row-sticky.k-hover td.k-selected,
|
|
32707
32922
|
tr:hover .k-grid-content-sticky.k-state-selected,
|
|
32708
|
-
tr
|
|
32923
|
+
tr:hover .k-grid-content-sticky.k-selected,
|
|
32924
|
+
tr.k-state-hover .k-grid-content-sticky.k-state-selected ,
|
|
32925
|
+
tr.k-hover .k-grid-content-sticky.k-selected {
|
|
32709
32926
|
background-color: $grid-sticky-selected-hovered-bg;
|
|
32710
32927
|
}
|
|
32711
32928
|
}
|
|
@@ -32716,7 +32933,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32716
32933
|
}
|
|
32717
32934
|
|
|
32718
32935
|
&:hover .k-grid-content-sticky,
|
|
32719
|
-
&.k-state-hover .k-grid-content-sticky
|
|
32936
|
+
&.k-state-hover .k-grid-content-sticky ,
|
|
32937
|
+
&.k-hover .k-grid-content-sticky {
|
|
32720
32938
|
@include fill( $bg: $grid-sticky-hovered-bg );
|
|
32721
32939
|
}
|
|
32722
32940
|
}
|
|
@@ -32728,7 +32946,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32728
32946
|
}
|
|
32729
32947
|
|
|
32730
32948
|
&:hover .k-grid-footer-sticky,
|
|
32731
|
-
&.k-state-hover .k-grid-footer-sticky
|
|
32949
|
+
&.k-state-hover .k-grid-footer-sticky ,
|
|
32950
|
+
&.k-hover .k-grid-footer-sticky {
|
|
32732
32951
|
@include fill( $bg: $grid-sticky-footer-hovered-bg );
|
|
32733
32952
|
}
|
|
32734
32953
|
}
|
|
@@ -32770,7 +32989,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32770
32989
|
);
|
|
32771
32990
|
}
|
|
32772
32991
|
.k-columnmenu-item:focus,
|
|
32773
|
-
.k-columnmenu-item.k-state-focus
|
|
32992
|
+
.k-columnmenu-item.k-state-focus ,
|
|
32993
|
+
.k-columnmenu-item.k-focus {
|
|
32774
32994
|
@include box-shadow( $kendo-list-item-focus-shadow );
|
|
32775
32995
|
}
|
|
32776
32996
|
|
|
@@ -32779,7 +32999,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32779
32999
|
}
|
|
32780
33000
|
|
|
32781
33001
|
.k-columnmenu-item {
|
|
32782
|
-
&.k-state-selected
|
|
33002
|
+
&.k-state-selected ,
|
|
33003
|
+
&.k-selected {
|
|
32783
33004
|
@include fill(
|
|
32784
33005
|
$kendo-list-item-selected-text,
|
|
32785
33006
|
$kendo-list-item-selected-bg
|
|
@@ -32804,14 +33025,16 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32804
33025
|
);
|
|
32805
33026
|
|
|
32806
33027
|
&:hover,
|
|
32807
|
-
&.k-state-hover
|
|
33028
|
+
&.k-state-hover ,
|
|
33029
|
+
&.k-hover {
|
|
32808
33030
|
@include fill(
|
|
32809
33031
|
$kendo-list-item-hover-text,
|
|
32810
33032
|
$kendo-list-item-hover-bg
|
|
32811
33033
|
);
|
|
32812
33034
|
}
|
|
32813
33035
|
|
|
32814
|
-
&.k-state-selected
|
|
33036
|
+
&.k-state-selected ,
|
|
33037
|
+
&.k-selected {
|
|
32815
33038
|
@include fill(
|
|
32816
33039
|
$kendo-list-item-selected-text,
|
|
32817
33040
|
$kendo-list-item-selected-bg
|
|
@@ -32819,7 +33042,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32819
33042
|
}
|
|
32820
33043
|
|
|
32821
33044
|
&:focus,
|
|
32822
|
-
&.k-state-focused
|
|
33045
|
+
&.k-state-focused ,
|
|
33046
|
+
&.k-focus {
|
|
32823
33047
|
@include box-shadow( $kendo-list-item-focus-shadow );
|
|
32824
33048
|
}
|
|
32825
33049
|
}
|
|
@@ -33057,7 +33281,8 @@ $listview-item-focus-shadow: inset 0 0 0 3px rgba( $listview-text, .15 ) !defaul
|
|
|
33057
33281
|
// Listview content
|
|
33058
33282
|
.k-listview-content {
|
|
33059
33283
|
|
|
33060
|
-
> .k-state-focused
|
|
33284
|
+
> .k-state-focused ,
|
|
33285
|
+
> .k-focus {
|
|
33061
33286
|
@include fill(
|
|
33062
33287
|
$listview-item-focus-text,
|
|
33063
33288
|
$listview-item-focus-bg,
|
|
@@ -33066,7 +33291,8 @@ $listview-item-focus-shadow: inset 0 0 0 3px rgba( $listview-text, .15 ) !defaul
|
|
|
33066
33291
|
@include box-shadow( $listview-item-focus-shadow );
|
|
33067
33292
|
}
|
|
33068
33293
|
|
|
33069
|
-
> .k-state-selected
|
|
33294
|
+
> .k-state-selected ,
|
|
33295
|
+
> .k-selected {
|
|
33070
33296
|
@include fill(
|
|
33071
33297
|
$listview-item-selected-text,
|
|
33072
33298
|
$listview-item-selected-bg,
|
|
@@ -33446,7 +33672,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
33446
33672
|
overflow: hidden;
|
|
33447
33673
|
|
|
33448
33674
|
// disabled cells in the Spreadsheet should allow navigation if link is used
|
|
33449
|
-
.k-state-disabled
|
|
33675
|
+
.k-state-disabled ,
|
|
33676
|
+
.k-disabled {
|
|
33450
33677
|
pointer-events: auto;
|
|
33451
33678
|
}
|
|
33452
33679
|
}
|
|
@@ -34007,7 +34234,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34007
34234
|
background-position: 50% 50%;
|
|
34008
34235
|
|
|
34009
34236
|
&:hover div,
|
|
34010
|
-
&.k-state-hovered div
|
|
34237
|
+
&.k-state-hovered div ,
|
|
34238
|
+
&.k-hover div {
|
|
34011
34239
|
margin: 0;
|
|
34012
34240
|
align-self: center;
|
|
34013
34241
|
opacity: 1;
|
|
@@ -34072,7 +34300,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34072
34300
|
.k-spreadsheet-insert-image-dialog {
|
|
34073
34301
|
.k-spreadsheet-has-image {
|
|
34074
34302
|
&:hover,
|
|
34075
|
-
&.k-state-hovered
|
|
34303
|
+
&.k-state-hovered ,
|
|
34304
|
+
&.k-hover {
|
|
34076
34305
|
border-radius: $spreadsheet-insert-image-dialog-preview-overlay-border-radius;
|
|
34077
34306
|
}
|
|
34078
34307
|
}
|
|
@@ -34248,7 +34477,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34248
34477
|
);
|
|
34249
34478
|
box-shadow: inset 0 0 0 1px $kendo-button-border;
|
|
34250
34479
|
|
|
34251
|
-
&.k-state-active
|
|
34480
|
+
&.k-state-active ,
|
|
34481
|
+
&.k-active {
|
|
34252
34482
|
@include fill(
|
|
34253
34483
|
$kendo-button-active-text,
|
|
34254
34484
|
$kendo-button-active-bg,
|
|
@@ -34274,7 +34504,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34274
34504
|
> .k-menu,
|
|
34275
34505
|
> .k-menu:not(.k-context-menu) {
|
|
34276
34506
|
.k-item {
|
|
34277
|
-
&.k-state-hover
|
|
34507
|
+
&.k-state-hover ,
|
|
34508
|
+
&.k-hover {
|
|
34278
34509
|
@include fill(
|
|
34279
34510
|
$kendo-list-item-hover-text,
|
|
34280
34511
|
$kendo-list-item-hover-bg
|
|
@@ -34304,12 +34535,14 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34304
34535
|
|
|
34305
34536
|
.k-spreadsheet-has-image {
|
|
34306
34537
|
&:hover,
|
|
34307
|
-
&.k-state-hovered
|
|
34538
|
+
&.k-state-hovered ,
|
|
34539
|
+
&.k-hover {
|
|
34308
34540
|
box-shadow: $spreadsheet-insert-image-dialog-preview-overlay-shadow;
|
|
34309
34541
|
}
|
|
34310
34542
|
|
|
34311
34543
|
&:hover div,
|
|
34312
|
-
&.k-state-hovered div
|
|
34544
|
+
&.k-state-hovered div ,
|
|
34545
|
+
&.k-hover div {
|
|
34313
34546
|
color: $spreadsheet-insert-image-dialog-overlay-hovered-text;
|
|
34314
34547
|
}
|
|
34315
34548
|
}
|
|
@@ -34343,7 +34576,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34343
34576
|
.k-button {}
|
|
34344
34577
|
|
|
34345
34578
|
.k-button:hover,
|
|
34346
|
-
.k-button.k-state-hover
|
|
34579
|
+
.k-button.k-state-hover ,
|
|
34580
|
+
.k-button.k-hover {
|
|
34347
34581
|
@include fill(
|
|
34348
34582
|
$kendo-list-item-hover-text,
|
|
34349
34583
|
$kendo-list-item-hover-bg
|
|
@@ -34351,7 +34585,9 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34351
34585
|
}
|
|
34352
34586
|
.k-button:active,
|
|
34353
34587
|
.k-button.k-state-active,
|
|
34354
|
-
.k-button.k-
|
|
34588
|
+
.k-button.k-active,
|
|
34589
|
+
.k-button.k-state-selected ,
|
|
34590
|
+
.k-button.k-selected {
|
|
34355
34591
|
@include fill(
|
|
34356
34592
|
$kendo-list-item-selected-text,
|
|
34357
34593
|
$kendo-list-item-selected-bg
|
|
@@ -35298,10 +35534,13 @@ $pivotgrid-remove-text: null !default;
|
|
|
35298
35534
|
|
|
35299
35535
|
// Hover state
|
|
35300
35536
|
.k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-state-hover,
|
|
35537
|
+
.k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-hover,
|
|
35301
35538
|
.k-pivotgrid-row-headers tbody > .k-pivotgrid-row:hover,
|
|
35302
35539
|
.k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-state-hover,
|
|
35540
|
+
.k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-hover,
|
|
35303
35541
|
.k-pivotgrid-column-headers tbody > .k-pivotgrid-row:hover,
|
|
35304
35542
|
.k-pivotgrid-values tbody > .k-pivotgrid-row.k-state-hover,
|
|
35543
|
+
.k-pivotgrid-values tbody > .k-pivotgrid-row.k-hover,
|
|
35305
35544
|
.k-pivotgrid-values tbody > .k-pivotgrid-row:hover {
|
|
35306
35545
|
@include fill (
|
|
35307
35546
|
$pivotgrid-hover-text,
|
|
@@ -35312,6 +35551,7 @@ $pivotgrid-remove-text: null !default;
|
|
|
35312
35551
|
|
|
35313
35552
|
// Focus state
|
|
35314
35553
|
.k-pivotgrid-cell.k-state-focus,
|
|
35554
|
+
.k-pivotgrid-cell.k-focus,
|
|
35315
35555
|
.k-pivotgrid-cell:focus,
|
|
35316
35556
|
.k-master-row > .k-pivotgrid-cell:focus,
|
|
35317
35557
|
.k-grouping-row > .k-pivotgrid-cell:focus,
|
|
@@ -35322,7 +35562,9 @@ $pivotgrid-remove-text: null !default;
|
|
|
35322
35562
|
|
|
35323
35563
|
// Selected state
|
|
35324
35564
|
.k-pivotgrid-cell.k-state-selected,
|
|
35325
|
-
.k-pivotgrid-
|
|
35565
|
+
.k-pivotgrid-cell.k-selected,
|
|
35566
|
+
.k-pivotgrid-row.k-state-selected > .k-pivotgrid-cell ,
|
|
35567
|
+
.k-pivotgrid-row.k-selected > .k-pivotgrid-cell {
|
|
35326
35568
|
@include fill (
|
|
35327
35569
|
$pivotgrid-selected-text,
|
|
35328
35570
|
$pivotgrid-selected-bg,
|
|
@@ -35553,7 +35795,8 @@ $treelist-footer-row-border-width: 1px !default;
|
|
|
35553
35795
|
}
|
|
35554
35796
|
|
|
35555
35797
|
.k-treelist-dragging,
|
|
35556
|
-
.k-treelist-dragging .k-state-hover
|
|
35798
|
+
.k-treelist-dragging .k-state-hover ,
|
|
35799
|
+
.k-treelist-dragging .k-hover {
|
|
35557
35800
|
cursor: default;
|
|
35558
35801
|
}
|
|
35559
35802
|
|
|
@@ -36318,7 +36561,8 @@ $filemanager-preview-icon-border: null !default;
|
|
|
36318
36561
|
);
|
|
36319
36562
|
}
|
|
36320
36563
|
|
|
36321
|
-
&.k-state-selected .k-file-icon
|
|
36564
|
+
&.k-state-selected .k-file-icon ,
|
|
36565
|
+
&.k-selected .k-file-icon {
|
|
36322
36566
|
@include fill(
|
|
36323
36567
|
inherit,
|
|
36324
36568
|
transparent,
|
|
@@ -36781,7 +37025,8 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
36781
37025
|
);
|
|
36782
37026
|
}
|
|
36783
37027
|
.k-taskboard-column:focus,
|
|
36784
|
-
.k-taskboard-column.k-state-focus
|
|
37028
|
+
.k-taskboard-column.k-state-focus ,
|
|
37029
|
+
.k-taskboard-column.k-focus {
|
|
36785
37030
|
@include fill(
|
|
36786
37031
|
$taskboard-column-focus-text,
|
|
36787
37032
|
$taskboard-column-focus-bg,
|
|
@@ -36983,7 +37228,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
36983
37228
|
pointer-events: auto;
|
|
36984
37229
|
}
|
|
36985
37230
|
|
|
36986
|
-
.k-editor-content.k-state-focused
|
|
37231
|
+
.k-editor-content.k-state-focused ,
|
|
37232
|
+
.k-editor-content.k-focus {
|
|
36987
37233
|
outline-width: 1px;
|
|
36988
37234
|
outline-style: dashed;
|
|
36989
37235
|
}
|
|
@@ -37436,7 +37682,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
37436
37682
|
display: block;
|
|
37437
37683
|
margin: auto;
|
|
37438
37684
|
|
|
37439
|
-
&.k-state-selected
|
|
37685
|
+
&.k-state-selected ,
|
|
37686
|
+
&.k-selected {
|
|
37440
37687
|
color: inherit;
|
|
37441
37688
|
border-width: 0;
|
|
37442
37689
|
background-image: none;
|
|
@@ -37658,7 +37905,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
37658
37905
|
|
|
37659
37906
|
kendo-editor {
|
|
37660
37907
|
&.k-readonly {
|
|
37661
|
-
.k-editor-content.k-state-focused
|
|
37908
|
+
.k-editor-content.k-state-focused ,
|
|
37909
|
+
.k-editor-content.k-focus {
|
|
37662
37910
|
outline-color: $body-text;
|
|
37663
37911
|
}
|
|
37664
37912
|
}
|
|
@@ -37695,7 +37943,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
37695
37943
|
|
|
37696
37944
|
// Hover & Actve state
|
|
37697
37945
|
&:hover,
|
|
37698
|
-
&.k-state-active
|
|
37946
|
+
&.k-state-active ,
|
|
37947
|
+
&.k-active {
|
|
37699
37948
|
border-color: $panel-border;
|
|
37700
37949
|
}
|
|
37701
37950
|
}
|
|
@@ -37712,7 +37961,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
37712
37961
|
|
|
37713
37962
|
// Insert table
|
|
37714
37963
|
.k-ct-popup {
|
|
37715
|
-
.k-state-selected
|
|
37964
|
+
.k-state-selected ,
|
|
37965
|
+
.k-selected {
|
|
37716
37966
|
@include fill( $selected-text, $selected-bg, $selected-border, none );
|
|
37717
37967
|
}
|
|
37718
37968
|
}
|
|
@@ -38269,7 +38519,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
38269
38519
|
}
|
|
38270
38520
|
}
|
|
38271
38521
|
|
|
38272
|
-
tr.k-state-selected > td:last-child
|
|
38522
|
+
tr.k-state-selected > td:last-child ,
|
|
38523
|
+
tr.k-selected > td:last-child {
|
|
38273
38524
|
background: transparent;
|
|
38274
38525
|
}
|
|
38275
38526
|
|
|
@@ -38538,7 +38789,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
38538
38789
|
border-color: currentColor;
|
|
38539
38790
|
position: absolute;
|
|
38540
38791
|
}
|
|
38541
|
-
.k-gantt-line.k-state-selected
|
|
38792
|
+
.k-gantt-line.k-state-selected ,
|
|
38793
|
+
.k-gantt-line.k-selected {
|
|
38542
38794
|
z-index: 3;
|
|
38543
38795
|
}
|
|
38544
38796
|
|
|
@@ -38611,7 +38863,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
38611
38863
|
transform: translate(-50%, -50%);
|
|
38612
38864
|
}
|
|
38613
38865
|
.k-task-dot:hover::before,
|
|
38614
|
-
.k-task-dot.k-state-hover::before
|
|
38866
|
+
.k-task-dot.k-state-hover::before ,
|
|
38867
|
+
.k-task-dot.k-hover::before {
|
|
38615
38868
|
border-width: 1px;
|
|
38616
38869
|
}
|
|
38617
38870
|
.k-task-start { left: 0; }
|
|
@@ -39084,7 +39337,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39084
39337
|
$border: $gantt-milestone-border
|
|
39085
39338
|
);
|
|
39086
39339
|
}
|
|
39087
|
-
.k-task-milestone.k-state-selected .k-task-milestone-content
|
|
39340
|
+
.k-task-milestone.k-state-selected .k-task-milestone-content ,
|
|
39341
|
+
.k-task-milestone.k-selected .k-task-milestone-content {
|
|
39088
39342
|
@include fill(
|
|
39089
39343
|
$bg: $gantt-milestone-selected-bg,
|
|
39090
39344
|
$border: $gantt-milestone-selected-border
|
|
@@ -39098,7 +39352,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39098
39352
|
stroke: $gantt-line-fill;
|
|
39099
39353
|
}
|
|
39100
39354
|
|
|
39101
|
-
polyline.k-state-selected
|
|
39355
|
+
polyline.k-state-selected ,
|
|
39356
|
+
polyline.k-selected {
|
|
39102
39357
|
stroke: $gantt-line-selected-fill;
|
|
39103
39358
|
}
|
|
39104
39359
|
}
|
|
@@ -39151,7 +39406,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39151
39406
|
);
|
|
39152
39407
|
}
|
|
39153
39408
|
.k-task-dot:hover::before,
|
|
39154
|
-
.k-task-dot.k-state-hover::before
|
|
39409
|
+
.k-task-dot.k-state-hover::before ,
|
|
39410
|
+
.k-task-dot.k-hover::before {
|
|
39155
39411
|
@include fill(
|
|
39156
39412
|
$bg: $gantt-dot-hover-bg,
|
|
39157
39413
|
$border: $gantt-dot-hover-border
|
|
@@ -39176,7 +39432,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39176
39432
|
);
|
|
39177
39433
|
}
|
|
39178
39434
|
}
|
|
39179
|
-
.k-task-milestone.k-state-selected
|
|
39435
|
+
.k-task-milestone.k-state-selected ,
|
|
39436
|
+
.k-task-milestone.k-selected {
|
|
39180
39437
|
background-image: none;
|
|
39181
39438
|
@include fill(
|
|
39182
39439
|
$bg: $gantt-milestone-selected-bg,
|
|
@@ -39206,7 +39463,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39206
39463
|
.k-task-advanced .k-task-summary-complete {
|
|
39207
39464
|
color: $gantt-advanced-bg;
|
|
39208
39465
|
}
|
|
39209
|
-
.k-task-summary.k-state-selected
|
|
39466
|
+
.k-task-summary.k-state-selected ,
|
|
39467
|
+
.k-task-summary.k-selected {
|
|
39210
39468
|
color: $gantt-summary-selected-bg;
|
|
39211
39469
|
|
|
39212
39470
|
.k-task-summary-complete {
|
|
@@ -39249,7 +39507,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39249
39507
|
$bg: $gantt-advanced-bg
|
|
39250
39508
|
);
|
|
39251
39509
|
}
|
|
39252
|
-
.k-task-single.k-state-selected
|
|
39510
|
+
.k-task-single.k-state-selected ,
|
|
39511
|
+
.k-task-single.k-selected {
|
|
39253
39512
|
@include fill(
|
|
39254
39513
|
$gantt-task-selected-text,
|
|
39255
39514
|
$gantt-task-selected-bg,
|
|
@@ -39265,7 +39524,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39265
39524
|
.k-gantt-line {
|
|
39266
39525
|
color: $gantt-line-fill;
|
|
39267
39526
|
}
|
|
39268
|
-
.k-gantt-line.k-state-selected
|
|
39527
|
+
.k-gantt-line.k-state-selected ,
|
|
39528
|
+
.k-gantt-line.k-selected {
|
|
39269
39529
|
color: $gantt-line-selected-fill;
|
|
39270
39530
|
}
|
|
39271
39531
|
|
|
@@ -39923,7 +40183,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
39923
40183
|
}
|
|
39924
40184
|
|
|
39925
40185
|
&:hover,
|
|
39926
|
-
&.k-state-hover
|
|
40186
|
+
&.k-state-hover ,
|
|
40187
|
+
&.k-hover {
|
|
39927
40188
|
.k-event-delete {
|
|
39928
40189
|
opacity: 1;
|
|
39929
40190
|
}
|
|
@@ -39988,7 +40249,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
39988
40249
|
|
|
39989
40250
|
// Hover
|
|
39990
40251
|
&:hover,
|
|
39991
|
-
&.k-state-hover
|
|
40252
|
+
&.k-state-hover ,
|
|
40253
|
+
&.k-hover {
|
|
39992
40254
|
.k-event-actions .k-event-delete,
|
|
39993
40255
|
.k-resize-handle {
|
|
39994
40256
|
visibility: visible;
|
|
@@ -40246,9 +40508,11 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40246
40508
|
visibility: hidden;
|
|
40247
40509
|
}
|
|
40248
40510
|
.k-state-hover .k-task > .k-event-delete,
|
|
40511
|
+
.k-hover .k-task > .k-event-delete,
|
|
40249
40512
|
.k-scheduler-content tr:hover .k-event-delete,
|
|
40250
40513
|
.k-scheduler-content .k-scheduler-row:hover .k-event-delete,
|
|
40251
|
-
.k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete
|
|
40514
|
+
.k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete ,
|
|
40515
|
+
.k-scheduler-content .k-scheduler-row.k-hover .k-event-delete {
|
|
40252
40516
|
visibility: visible;
|
|
40253
40517
|
}
|
|
40254
40518
|
}
|
|
@@ -40321,7 +40585,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40321
40585
|
position: relative;
|
|
40322
40586
|
}
|
|
40323
40587
|
|
|
40324
|
-
td.k-state-selected
|
|
40588
|
+
td.k-state-selected ,
|
|
40589
|
+
td.k-selected {
|
|
40325
40590
|
background-color: inherit;
|
|
40326
40591
|
}
|
|
40327
40592
|
}
|
|
@@ -40702,7 +40967,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40702
40967
|
}
|
|
40703
40968
|
|
|
40704
40969
|
.k-scheduler-layout td.k-state-selected,
|
|
40705
|
-
.k-scheduler-layout .k-
|
|
40970
|
+
.k-scheduler-layout td.k-selected,
|
|
40971
|
+
.k-scheduler-layout .k-scheduler-cell.k-state-selected ,
|
|
40972
|
+
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
40706
40973
|
background-color: rgba($selected-bg, .25);
|
|
40707
40974
|
}
|
|
40708
40975
|
|
|
@@ -40724,7 +40991,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40724
40991
|
);
|
|
40725
40992
|
@include box-shadow( $scheduler-event-shadow );
|
|
40726
40993
|
|
|
40727
|
-
&.k-state-hover
|
|
40994
|
+
&.k-state-hover ,
|
|
40995
|
+
&.k-hover {
|
|
40728
40996
|
@include fill(
|
|
40729
40997
|
$scheduler-event-hover-text,
|
|
40730
40998
|
$scheduler-event-hover-bg,
|
|
@@ -40734,7 +41002,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40734
41002
|
@include box-shadow( $scheduler-event-hover-shadow );
|
|
40735
41003
|
}
|
|
40736
41004
|
|
|
40737
|
-
&.k-state-selected
|
|
41005
|
+
&.k-state-selected ,
|
|
41006
|
+
&.k-selected {
|
|
40738
41007
|
@include fill(
|
|
40739
41008
|
$scheduler-event-selected-text,
|
|
40740
41009
|
$scheduler-event-selected-bg,
|
|
@@ -40801,8 +41070,10 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40801
41070
|
// Hover
|
|
40802
41071
|
.k-scheduler-content tr:hover,
|
|
40803
41072
|
.k-scheduler-content tr.k-state-hover,
|
|
41073
|
+
.k-scheduler-content tr.k-hover,
|
|
40804
41074
|
.k-scheduler-content .k-scheduler-row:hover,
|
|
40805
|
-
.k-scheduler-content .k-scheduler-row.k-state-hover
|
|
41075
|
+
.k-scheduler-content .k-scheduler-row.k-state-hover ,
|
|
41076
|
+
.k-scheduler-content .k-scheduler-row.k-hover {
|
|
40806
41077
|
@include fill(
|
|
40807
41078
|
$hovered-text,
|
|
40808
41079
|
$hovered-bg,
|
|
@@ -40814,7 +41085,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40814
41085
|
.k-scheduler-content tr:hover .k-scheduler-datecolumn,
|
|
40815
41086
|
.k-scheduler-content tr:hover .k-scheduler-groupcolumn,
|
|
40816
41087
|
.k-scheduler-content tr.k-state-hover .k-scheduler-datecolumn,
|
|
40817
|
-
.k-scheduler-content tr.k-
|
|
41088
|
+
.k-scheduler-content tr.k-hover .k-scheduler-datecolumn,
|
|
41089
|
+
.k-scheduler-content tr.k-state-hover .k-scheduler-groupcolumn ,
|
|
41090
|
+
.k-scheduler-content tr.k-hover .k-scheduler-groupcolumn {
|
|
40818
41091
|
@include fill(
|
|
40819
41092
|
$scheduler-text,
|
|
40820
41093
|
$scheduler-bg,
|
|
@@ -40823,11 +41096,14 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40823
41096
|
}
|
|
40824
41097
|
|
|
40825
41098
|
// Selected
|
|
40826
|
-
.k-scheduler-content tr.k-state-selected
|
|
41099
|
+
.k-scheduler-content tr.k-state-selected ,
|
|
41100
|
+
.k-scheduler-content tr.k-selected {
|
|
40827
41101
|
background-color: rgba($selected-bg, .25);
|
|
40828
41102
|
}
|
|
40829
41103
|
.k-scheduler-content tr.k-state-selected .k-scheduler-datecolumn,
|
|
40830
|
-
.k-scheduler-content tr.k-
|
|
41104
|
+
.k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
|
|
41105
|
+
.k-scheduler-content tr.k-state-selected .k-scheduler-groupcolumn ,
|
|
41106
|
+
.k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
|
|
40831
41107
|
background-color: $scheduler-bg;
|
|
40832
41108
|
}
|
|
40833
41109
|
}
|
|
@@ -40844,7 +41120,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40844
41120
|
@include fill( $bg: $scheduler-yearview-indicator-bg );
|
|
40845
41121
|
}
|
|
40846
41122
|
|
|
40847
|
-
.k-state-selected .k-day-indicator
|
|
41123
|
+
.k-state-selected .k-day-indicator ,
|
|
41124
|
+
.k-selected .k-day-indicator {
|
|
40848
41125
|
@include fill( $bg: $scheduler-yearview-indicator-selected-bg );
|
|
40849
41126
|
}
|
|
40850
41127
|
}
|
|
@@ -41147,7 +41424,8 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
41147
41424
|
|
|
41148
41425
|
|
|
41149
41426
|
// Message states
|
|
41150
|
-
.k-message.k-state-selected
|
|
41427
|
+
.k-message.k-state-selected ,
|
|
41428
|
+
.k-message.k-selected {
|
|
41151
41429
|
margin-bottom: $chat-item-spacing-y;
|
|
41152
41430
|
border: 0;
|
|
41153
41431
|
color: inherit;
|
|
@@ -41276,6 +41554,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
41276
41554
|
|
|
41277
41555
|
&:focus,
|
|
41278
41556
|
&.k-state-focus,
|
|
41557
|
+
&.k-focus,
|
|
41279
41558
|
&:focus-within {
|
|
41280
41559
|
outline: 0;
|
|
41281
41560
|
box-shadow: none;
|
|
@@ -41355,7 +41634,8 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
41355
41634
|
flex: 0 0 auto;
|
|
41356
41635
|
}
|
|
41357
41636
|
|
|
41358
|
-
&.k-state-selected
|
|
41637
|
+
&.k-state-selected ,
|
|
41638
|
+
&.k-selected {
|
|
41359
41639
|
background: none;
|
|
41360
41640
|
}
|
|
41361
41641
|
}
|
|
@@ -41591,7 +41871,8 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
41591
41871
|
.k-bubble:hover {
|
|
41592
41872
|
@include box-shadow( $chat-bubble-hover-shadow );
|
|
41593
41873
|
}
|
|
41594
|
-
.k-state-selected .k-bubble
|
|
41874
|
+
.k-state-selected .k-bubble ,
|
|
41875
|
+
.k-selected .k-bubble {
|
|
41595
41876
|
@include box-shadow( $chat-bubble-selected-shadow );
|
|
41596
41877
|
}
|
|
41597
41878
|
|
|
@@ -41606,7 +41887,8 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
41606
41887
|
.k-alt .k-bubble:hover {
|
|
41607
41888
|
@include box-shadow( $chat-alt-bubble-hover-shadow );
|
|
41608
41889
|
}
|
|
41609
|
-
.k-alt .k-state-selected .k-bubble
|
|
41890
|
+
.k-alt .k-state-selected .k-bubble ,
|
|
41891
|
+
.k-alt .k-selected .k-bubble {
|
|
41610
41892
|
@include box-shadow( $chat-alt-bubble-selected-shadow );
|
|
41611
41893
|
}
|
|
41612
41894
|
|
|
@@ -42410,7 +42692,8 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
42410
42692
|
color: $body-text;
|
|
42411
42693
|
}
|
|
42412
42694
|
|
|
42413
|
-
.k-timeline-arrow.k-state-disabled
|
|
42695
|
+
.k-timeline-arrow.k-state-disabled ,
|
|
42696
|
+
.k-timeline-arrow.k-disabled {
|
|
42414
42697
|
opacity: 1; // The arrow button in disabled mode should have a solid background
|
|
42415
42698
|
color: $timeline-track-arrow-disabled-text;
|
|
42416
42699
|
background-color: $timeline-track-arrow-disabled-bg;
|
|
@@ -42430,7 +42713,8 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
42430
42713
|
background-color: $timeline-flag-bg;
|
|
42431
42714
|
}
|
|
42432
42715
|
|
|
42433
|
-
.k-timeline-track-item.k-state-focus .k-timeline-circle
|
|
42716
|
+
.k-timeline-track-item.k-state-focus .k-timeline-circle ,
|
|
42717
|
+
.k-timeline-track-item.k-focus .k-timeline-circle {
|
|
42434
42718
|
@include box-shadow( $timeline-track-item-focus-shadow );
|
|
42435
42719
|
}
|
|
42436
42720
|
}
|
|
@@ -43135,7 +43419,8 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
43135
43419
|
outline-width: 0;
|
|
43136
43420
|
|
|
43137
43421
|
&:focus,
|
|
43138
|
-
&.k-state-focus
|
|
43422
|
+
&.k-state-focus ,
|
|
43423
|
+
&.k-focus {
|
|
43139
43424
|
color: $scrollview-navigation-color;
|
|
43140
43425
|
opacity: $scrollview-navigation-hover-opacity;
|
|
43141
43426
|
.k-icon::before {
|
|
@@ -43145,7 +43430,8 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
43145
43430
|
}
|
|
43146
43431
|
|
|
43147
43432
|
&:hover,
|
|
43148
|
-
&.k-state-hover
|
|
43433
|
+
&.k-state-hover ,
|
|
43434
|
+
&.k-hover {
|
|
43149
43435
|
color: $scrollview-navigation-color;
|
|
43150
43436
|
opacity: $scrollview-navigation-hover-opacity;
|
|
43151
43437
|
|
|
@@ -43166,13 +43452,15 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
43166
43452
|
|
|
43167
43453
|
|
|
43168
43454
|
&:focus,
|
|
43169
|
-
&.k-state-focused
|
|
43455
|
+
&.k-state-focused ,
|
|
43456
|
+
&.k-focus {
|
|
43170
43457
|
box-shadow: $scrollview-pagebutton-shadow;
|
|
43171
43458
|
}
|
|
43172
43459
|
}
|
|
43173
43460
|
|
|
43174
43461
|
.k-scrollview-nav > .k-link:hover,
|
|
43175
|
-
.k-scrollview-nav > .k-link.k-state-hover
|
|
43462
|
+
.k-scrollview-nav > .k-link.k-state-hover ,
|
|
43463
|
+
.k-scrollview-nav > .k-link.k-hover {
|
|
43176
43464
|
box-shadow: $scrollview-pagebutton-shadow;
|
|
43177
43465
|
}
|
|
43178
43466
|
|
|
@@ -43990,7 +44278,8 @@ $treemap-line-height: $line-height !default;
|
|
|
43990
44278
|
.k-leaf.k-inverse {
|
|
43991
44279
|
color: $component-text;
|
|
43992
44280
|
}
|
|
43993
|
-
.k-leaf.k-state-hover
|
|
44281
|
+
.k-leaf.k-state-hover ,
|
|
44282
|
+
.k-leaf.k-hover {
|
|
43994
44283
|
box-shadow: inset 0 0 0 3px $component-border;
|
|
43995
44284
|
}
|
|
43996
44285
|
}
|
|
@@ -44488,7 +44777,8 @@ $orgchart-line-v-height: 25px !default;
|
|
|
44488
44777
|
.k-orgchart-node-group-container:focus,
|
|
44489
44778
|
.k-orgchart-node-group-container.k-focus,
|
|
44490
44779
|
.k-orgchart-node-group-container.k-state-focus,
|
|
44491
|
-
.k-orgchart-node-group-container.k-state-focused
|
|
44780
|
+
.k-orgchart-node-group-container.k-state-focused ,
|
|
44781
|
+
.k-orgchart-node-group-container.k-focus {
|
|
44492
44782
|
@include box-shadow( $orgchart-node-group-focus-shadow );
|
|
44493
44783
|
@include fill ( $border: $orgchart-node-group-focus-border );
|
|
44494
44784
|
}
|