@progress/kendo-theme-material 5.3.2-dev.3 → 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 +567 -236
- package/dist/all.scss +502 -197
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +3 -3
- package/scss/calendar/_theme.scss +4 -2
- package/scss/drawer/_theme.scss +4 -2
- package/scss/editor/_theme.scss +4 -2
- package/scss/floating-label/_theme.scss +1 -0
- package/scss/grid/_theme.scss +27 -10
- package/scss/listview/_theme.scss +2 -1
- package/scss/pivotgrid/_theme.scss +1 -0
- package/scss/progressbar/_theme.scss +2 -1
- package/scss/scheduler/_layout.scss +2 -1
- package/scss/slider/_theme.scss +2 -1
- package/scss/spreadsheet/_theme.scss +15 -7
- package/scss/timeline/_layout.scss +4 -2
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
|
}
|
|
@@ -2606,6 +2608,7 @@ $display4-letter-spacing: null !default;
|
|
|
2606
2608
|
|
|
2607
2609
|
// Disabled state
|
|
2608
2610
|
.k-state-disabled,
|
|
2611
|
+
.k-disabled,
|
|
2609
2612
|
.k-widget[disabled],
|
|
2610
2613
|
.k-disabled {
|
|
2611
2614
|
@include disabled( $disabled-styling );
|
|
@@ -10618,6 +10621,14 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
10618
10621
|
}
|
|
10619
10622
|
}
|
|
10620
10623
|
|
|
10624
|
+
|
|
10625
|
+
// Angular specific
|
|
10626
|
+
.k-input > kendo-popup,
|
|
10627
|
+
.k-picker > kendo-popup {
|
|
10628
|
+
position: fixed;
|
|
10629
|
+
}
|
|
10630
|
+
|
|
10631
|
+
|
|
10621
10632
|
}
|
|
10622
10633
|
|
|
10623
10634
|
|
|
@@ -11305,6 +11316,7 @@ $floating-label-focus-text: $primary !default;
|
|
|
11305
11316
|
.k-invalid + .k-label,
|
|
11306
11317
|
&.k-state-invalid + .k-label,
|
|
11307
11318
|
.k-state-invalid + .k-label,
|
|
11319
|
+
.k-invalid + .k-label,
|
|
11308
11320
|
.ng-invalid.ng-touched + .k-label,
|
|
11309
11321
|
.ng-invalid.ng-dirty + .k-label {
|
|
11310
11322
|
@include fill( $color: $error );
|
|
@@ -16592,7 +16604,8 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16592
16604
|
|
|
16593
16605
|
|
|
16594
16606
|
// Selection
|
|
16595
|
-
> .k-state-selected
|
|
16607
|
+
> .k-state-selected ,
|
|
16608
|
+
> .k-selected {
|
|
16596
16609
|
border-width: 0;
|
|
16597
16610
|
border-style: solid;
|
|
16598
16611
|
display: flex;
|
|
@@ -16662,7 +16675,8 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16662
16675
|
flex-direction: row;
|
|
16663
16676
|
}
|
|
16664
16677
|
|
|
16665
|
-
> .k-state-selected
|
|
16678
|
+
> .k-state-selected ,
|
|
16679
|
+
> .k-selected {
|
|
16666
16680
|
width: 0;
|
|
16667
16681
|
width: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
|
|
16668
16682
|
flex-direction: row;
|
|
@@ -16688,7 +16702,8 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16688
16702
|
// Horizontal reverse
|
|
16689
16703
|
&.k-progressbar-reverse {
|
|
16690
16704
|
|
|
16691
|
-
> .k-state-selected
|
|
16705
|
+
> .k-state-selected ,
|
|
16706
|
+
> .k-selected {
|
|
16692
16707
|
flex-direction: row-reverse;
|
|
16693
16708
|
justify-self: flex-end;
|
|
16694
16709
|
}
|
|
@@ -16712,7 +16727,8 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16712
16727
|
writing-mode: vertical-lr;
|
|
16713
16728
|
}
|
|
16714
16729
|
|
|
16715
|
-
> .k-state-selected
|
|
16730
|
+
> .k-state-selected ,
|
|
16731
|
+
> .k-selected {
|
|
16716
16732
|
height: 0;
|
|
16717
16733
|
height: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
|
|
16718
16734
|
flex-direction: column-reverse;
|
|
@@ -16741,7 +16757,8 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16741
16757
|
&.k-progressbar-reverse {
|
|
16742
16758
|
flex-direction: column;
|
|
16743
16759
|
|
|
16744
|
-
> .k-state-selected
|
|
16760
|
+
> .k-state-selected ,
|
|
16761
|
+
> .k-selected {
|
|
16745
16762
|
flex-direction: column;
|
|
16746
16763
|
align-self: flex-start;
|
|
16747
16764
|
}
|
|
@@ -16753,6 +16770,7 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16753
16770
|
.k-progressbar-indeterminate {
|
|
16754
16771
|
.k-progress-status-wrap,
|
|
16755
16772
|
.k-state-selected,
|
|
16773
|
+
.k-selected,
|
|
16756
16774
|
.k-item {
|
|
16757
16775
|
display: none;
|
|
16758
16776
|
}
|
|
@@ -16763,7 +16781,9 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16763
16781
|
.telerik-blazor.k-progressbar-horizontal {
|
|
16764
16782
|
|
|
16765
16783
|
> .k-state-selected,
|
|
16766
|
-
> .k-
|
|
16784
|
+
> .k-selected,
|
|
16785
|
+
> .k-state-selected > .k-progress-status-wrap ,
|
|
16786
|
+
> .k-selected > .k-progress-status-wrap {
|
|
16767
16787
|
transition: width .1s ease-in-out;
|
|
16768
16788
|
}
|
|
16769
16789
|
}
|
|
@@ -16791,7 +16811,8 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16791
16811
|
display: -ms-inline-grid;
|
|
16792
16812
|
|
|
16793
16813
|
> .k-progress-status-wrap,
|
|
16794
|
-
> .k-state-selected
|
|
16814
|
+
> .k-state-selected ,
|
|
16815
|
+
> .k-selected {
|
|
16795
16816
|
-ms-grid-column: 1;
|
|
16796
16817
|
-ms-grid-row: 1;
|
|
16797
16818
|
}
|
|
@@ -16800,7 +16821,8 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16800
16821
|
-ms-grid-columns: 1fr;
|
|
16801
16822
|
-ms-grid-rows: $progressbar-height;
|
|
16802
16823
|
|
|
16803
|
-
&.k-progressbar-reverse > .k-state-selected
|
|
16824
|
+
&.k-progressbar-reverse > .k-state-selected ,
|
|
16825
|
+
&.k-progressbar-reverse > .k-selected {
|
|
16804
16826
|
-ms-grid-column-align: end;
|
|
16805
16827
|
}
|
|
16806
16828
|
}
|
|
@@ -16808,11 +16830,13 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16808
16830
|
-ms-grid-columns: $progressbar-height;
|
|
16809
16831
|
-ms-grid-rows: 1fr;
|
|
16810
16832
|
|
|
16811
|
-
> .k-state-selected
|
|
16833
|
+
> .k-state-selected ,
|
|
16834
|
+
> .k-selected {
|
|
16812
16835
|
-ms-grid-row-align: end;
|
|
16813
16836
|
}
|
|
16814
16837
|
|
|
16815
|
-
&.k-progressbar-reverse > .k-state-selected
|
|
16838
|
+
&.k-progressbar-reverse > .k-state-selected ,
|
|
16839
|
+
&.k-progressbar-reverse > .k-selected {
|
|
16816
16840
|
-ms-grid-row-align: start;
|
|
16817
16841
|
}
|
|
16818
16842
|
}
|
|
@@ -16956,7 +16980,8 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16956
16980
|
$progressbar-gradient
|
|
16957
16981
|
);
|
|
16958
16982
|
|
|
16959
|
-
.k-state-selected
|
|
16983
|
+
.k-state-selected ,
|
|
16984
|
+
.k-selected {
|
|
16960
16985
|
@include fill(
|
|
16961
16986
|
$progressbar-fill-text,
|
|
16962
16987
|
$progressbar-fill-bg,
|
|
@@ -17320,7 +17345,8 @@ $kendo-radio-ripple-opacity: .2 !default;
|
|
|
17320
17345
|
}
|
|
17321
17346
|
|
|
17322
17347
|
.k-radio:focus,
|
|
17323
|
-
.k-radio.k-state-focus
|
|
17348
|
+
.k-radio.k-state-focus ,
|
|
17349
|
+
.k-radio.k-focus {
|
|
17324
17350
|
box-shadow: none !important; // sass-lint:disable-line no-important
|
|
17325
17351
|
|
|
17326
17352
|
&::after {
|
|
@@ -17392,7 +17418,8 @@ $kendo-radio-ripple-opacity: .2 !default;
|
|
|
17392
17418
|
|
|
17393
17419
|
// Hover state
|
|
17394
17420
|
.k-radio:hover,
|
|
17395
|
-
.k-radio.k-state-hover
|
|
17421
|
+
.k-radio.k-state-hover ,
|
|
17422
|
+
.k-radio.k-hover {
|
|
17396
17423
|
@include fill(
|
|
17397
17424
|
$kendo-radio-hover-text,
|
|
17398
17425
|
$kendo-radio-hover-bg,
|
|
@@ -17403,7 +17430,8 @@ $kendo-radio-ripple-opacity: .2 !default;
|
|
|
17403
17430
|
|
|
17404
17431
|
// Focus state
|
|
17405
17432
|
.k-radio:focus,
|
|
17406
|
-
.k-radio.k-state-focus
|
|
17433
|
+
.k-radio.k-state-focus ,
|
|
17434
|
+
.k-radio.k-focus {
|
|
17407
17435
|
@include fill( $border: $kendo-radio-focus-border );
|
|
17408
17436
|
@include box-shadow( $kendo-radio-focus-shadow );
|
|
17409
17437
|
}
|
|
@@ -17434,7 +17462,8 @@ $kendo-radio-ripple-opacity: .2 !default;
|
|
|
17434
17462
|
);
|
|
17435
17463
|
}
|
|
17436
17464
|
.k-radio:checked:focus,
|
|
17437
|
-
.k-radio.k-checked.k-state-focus
|
|
17465
|
+
.k-radio.k-checked.k-state-focus ,
|
|
17466
|
+
.k-radio.k-checked.k-focus {
|
|
17438
17467
|
@include fill( $border: $kendo-radio-focus-checked-border );
|
|
17439
17468
|
@include box-shadow( $kendo-radio-focus-checked-shadow );
|
|
17440
17469
|
}
|
|
@@ -17607,7 +17636,8 @@ $slider-disabled-opacity: .65 !default;
|
|
|
17607
17636
|
}
|
|
17608
17637
|
|
|
17609
17638
|
|
|
17610
|
-
&.k-state-disabled
|
|
17639
|
+
&.k-state-disabled ,
|
|
17640
|
+
&.k-disabled {
|
|
17611
17641
|
.k-tick,
|
|
17612
17642
|
.k-slider-track,
|
|
17613
17643
|
.k-draghandle {
|
|
@@ -18102,18 +18132,21 @@ $slider-disabled-opacity: .65 !default;
|
|
|
18102
18132
|
}
|
|
18103
18133
|
|
|
18104
18134
|
&:focus,
|
|
18105
|
-
&.k-state-focused
|
|
18135
|
+
&.k-state-focused ,
|
|
18136
|
+
&.k-focus {
|
|
18106
18137
|
@include box-shadow( $slider-draghandle-focused-shadow );
|
|
18107
18138
|
}
|
|
18108
18139
|
}
|
|
18109
18140
|
|
|
18110
|
-
&.k-state-focused
|
|
18141
|
+
&.k-state-focused ,
|
|
18142
|
+
&.k-focus {
|
|
18111
18143
|
.k-draghandle {
|
|
18112
18144
|
@include box-shadow( $slider-draghandle-focused-shadow );
|
|
18113
18145
|
}
|
|
18114
18146
|
}
|
|
18115
18147
|
|
|
18116
|
-
&.k-state-disabled
|
|
18148
|
+
&.k-state-disabled ,
|
|
18149
|
+
&.k-disabled {
|
|
18117
18150
|
opacity: $slider-disabled-opacity;
|
|
18118
18151
|
}
|
|
18119
18152
|
}
|
|
@@ -18151,7 +18184,8 @@ $slider-disabled-opacity: .65 !default;
|
|
|
18151
18184
|
}
|
|
18152
18185
|
}
|
|
18153
18186
|
|
|
18154
|
-
&.k-state-disabled
|
|
18187
|
+
&.k-state-disabled ,
|
|
18188
|
+
&.k-disabled {
|
|
18155
18189
|
opacity: 1;
|
|
18156
18190
|
|
|
18157
18191
|
.k-slider-track,
|
|
@@ -18700,7 +18734,8 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18700
18734
|
}
|
|
18701
18735
|
|
|
18702
18736
|
// // styles are applied to the k-link element inside
|
|
18703
|
-
// .k-state-selected
|
|
18737
|
+
// .k-state-selected ,
|
|
18738
|
+
// .k-selected {
|
|
18704
18739
|
// color: inherit;
|
|
18705
18740
|
// background: transparent;
|
|
18706
18741
|
// border-color: transparent;
|
|
@@ -18925,7 +18960,9 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18925
18960
|
);
|
|
18926
18961
|
}
|
|
18927
18962
|
.k-calendar-td.k-state-selected:hover .k-link,
|
|
18963
|
+
.k-calendar-td.k-selected:hover .k-link,
|
|
18928
18964
|
.k-calendar-td.k-state-selected.k-state-hover .k-link,
|
|
18965
|
+
.k-calendar-td.k-selected.k-hover .k-link,
|
|
18929
18966
|
.k-calendar-td.k-selected:hover .k-link,
|
|
18930
18967
|
.k-calendar-td.k-selected.k-hover .k-link {
|
|
18931
18968
|
@include fill(
|
|
@@ -18936,12 +18973,15 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18936
18973
|
);
|
|
18937
18974
|
}
|
|
18938
18975
|
.k-calendar-td.k-state-focused .k-link,
|
|
18976
|
+
.k-calendar-td.k-focus .k-link,
|
|
18939
18977
|
.k-calendar-td.k-state-focus .k-link,
|
|
18940
18978
|
.k-calendar-td.k-focus .k-link {
|
|
18941
18979
|
box-shadow: $calendar-cell-focused-shadow;
|
|
18942
18980
|
}
|
|
18943
18981
|
.k-calendar-td.k-state-selected.k-state-focused .k-link,
|
|
18982
|
+
.k-calendar-td.k-selected.k-focused .k-link,
|
|
18944
18983
|
.k-calendar-td.k-state-selected.k-state-focus .k-link,
|
|
18984
|
+
.k-calendar-td.k-selected.k-focus .k-link,
|
|
18945
18985
|
.k-calendar-td.k-selected:focus .k-link,
|
|
18946
18986
|
.k-calendar-td.k-selected.k-focus .k-link {
|
|
18947
18987
|
box-shadow: $calendar-cell-selected-focus-shadow;
|
|
@@ -19041,6 +19081,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19041
19081
|
}
|
|
19042
19082
|
|
|
19043
19083
|
.k-range-start.k-state-active,
|
|
19084
|
+
.k-range-start.k-active,
|
|
19044
19085
|
.k-range-end.k-state-active,
|
|
19045
19086
|
.k-range-end.k-active {
|
|
19046
19087
|
.k-link {
|
|
@@ -19083,14 +19124,16 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19083
19124
|
|
|
19084
19125
|
.k-calendar {
|
|
19085
19126
|
|
|
19086
|
-
.k-state-focused .k-link
|
|
19127
|
+
.k-state-focused .k-link ,
|
|
19128
|
+
.k-focus .k-link {
|
|
19087
19129
|
@include fill(
|
|
19088
19130
|
$calendar-cell-hover-text,
|
|
19089
19131
|
$calendar-cell-hover-bg,
|
|
19090
19132
|
$calendar-cell-hover-border
|
|
19091
19133
|
);
|
|
19092
19134
|
}
|
|
19093
|
-
.k-state-selected.k-state-focused .k-link
|
|
19135
|
+
.k-state-selected.k-state-focused .k-link ,
|
|
19136
|
+
.k-selected.k-focused .k-link {
|
|
19094
19137
|
@include fill(
|
|
19095
19138
|
$calendar-cell-selected-text,
|
|
19096
19139
|
try-tint($calendar-cell-selected-bg),
|
|
@@ -19262,7 +19305,8 @@ $time-list-focused-bg: null !default;
|
|
|
19262
19305
|
display: block;
|
|
19263
19306
|
}
|
|
19264
19307
|
|
|
19265
|
-
&.k-state-focused
|
|
19308
|
+
&.k-state-focused ,
|
|
19309
|
+
&.k-focus {
|
|
19266
19310
|
&::before,
|
|
19267
19311
|
&::after {
|
|
19268
19312
|
display: block;
|
|
@@ -19406,7 +19450,8 @@ $time-list-focused-bg: null !default;
|
|
|
19406
19450
|
color: $time-list-title-text;
|
|
19407
19451
|
}
|
|
19408
19452
|
|
|
19409
|
-
&.k-state-focused
|
|
19453
|
+
&.k-state-focused ,
|
|
19454
|
+
&.k-focus {
|
|
19410
19455
|
.k-title {
|
|
19411
19456
|
color: $time-list-title-focus-text;
|
|
19412
19457
|
}
|
|
@@ -19749,8 +19794,11 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
19749
19794
|
|
|
19750
19795
|
&:focus,
|
|
19751
19796
|
&.k-state-focus,
|
|
19797
|
+
&.k-focus,
|
|
19752
19798
|
&.k-state-selected,
|
|
19753
|
-
&.k-
|
|
19799
|
+
&.k-selected,
|
|
19800
|
+
&.k-state-selected:hover ,
|
|
19801
|
+
&.k-selected:hover {
|
|
19754
19802
|
position: relative;
|
|
19755
19803
|
z-index: 100;
|
|
19756
19804
|
}
|
|
@@ -19781,6 +19829,7 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
19781
19829
|
}
|
|
19782
19830
|
|
|
19783
19831
|
&.k-state-selected,
|
|
19832
|
+
&.k-selected,
|
|
19784
19833
|
&.k-state-selected:hover,
|
|
19785
19834
|
&.k-selected,
|
|
19786
19835
|
&.k-selected:hover {
|
|
@@ -21809,14 +21858,16 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
21809
21858
|
color: $component-text;
|
|
21810
21859
|
|
|
21811
21860
|
&:focus,
|
|
21812
|
-
&.k-state-focused
|
|
21861
|
+
&.k-state-focused ,
|
|
21862
|
+
&.k-focus {
|
|
21813
21863
|
|
|
21814
21864
|
.k-rating-item {
|
|
21815
21865
|
> .k-icon {
|
|
21816
21866
|
text-shadow: $rating-icon-focused-shadow;
|
|
21817
21867
|
}
|
|
21818
21868
|
|
|
21819
|
-
&.k-state-selected > .k-icon
|
|
21869
|
+
&.k-state-selected > .k-icon ,
|
|
21870
|
+
&.k-selected > .k-icon {
|
|
21820
21871
|
text-shadow: $rating-icon-focused-selected-shadow;
|
|
21821
21872
|
}
|
|
21822
21873
|
}
|
|
@@ -21826,17 +21877,20 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
21826
21877
|
.k-rating-item {
|
|
21827
21878
|
color: $rating-icon-text;
|
|
21828
21879
|
|
|
21829
|
-
&.k-state-selected
|
|
21880
|
+
&.k-state-selected ,
|
|
21881
|
+
&.k-selected {
|
|
21830
21882
|
color: $rating-icon-selected-text;
|
|
21831
21883
|
|
|
21832
21884
|
&:focus,
|
|
21833
|
-
&.k-state-focused
|
|
21885
|
+
&.k-state-focused ,
|
|
21886
|
+
&.k-focus {
|
|
21834
21887
|
color: $rating-icon-focused-text;
|
|
21835
21888
|
}
|
|
21836
21889
|
}
|
|
21837
21890
|
|
|
21838
21891
|
&:hover,
|
|
21839
|
-
&.k-state-hover
|
|
21892
|
+
&.k-state-hover ,
|
|
21893
|
+
&.k-hover {
|
|
21840
21894
|
color: $rating-icon-hover-text;
|
|
21841
21895
|
cursor: pointer;
|
|
21842
21896
|
}
|
|
@@ -23128,7 +23182,8 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
23128
23182
|
z-index: 1;
|
|
23129
23183
|
}
|
|
23130
23184
|
input[disabled],
|
|
23131
|
-
input.k-state-disabled
|
|
23185
|
+
input.k-state-disabled ,
|
|
23186
|
+
input.k-disabled {
|
|
23132
23187
|
visibility: hidden;
|
|
23133
23188
|
}
|
|
23134
23189
|
}
|
|
@@ -23175,11 +23230,13 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
23175
23230
|
|
|
23176
23231
|
.k-file {
|
|
23177
23232
|
|
|
23178
|
-
&.k-state-focused
|
|
23233
|
+
&.k-state-focused ,
|
|
23234
|
+
&.k-focus {
|
|
23179
23235
|
box-shadow: inset $upload-focused-shadow;
|
|
23180
23236
|
}
|
|
23181
23237
|
|
|
23182
|
-
.k-upload-action.k-state-focused
|
|
23238
|
+
.k-upload-action.k-state-focused ,
|
|
23239
|
+
.k-upload-action.k-focus {
|
|
23183
23240
|
box-shadow: $upload-focused-shadow;
|
|
23184
23241
|
}
|
|
23185
23242
|
|
|
@@ -23271,6 +23328,7 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
23271
23328
|
|
|
23272
23329
|
// Invalid,
|
|
23273
23330
|
&.k-state-invalid,
|
|
23331
|
+
&.k-invalid,
|
|
23274
23332
|
&.ng-invalid.ng-touched,
|
|
23275
23333
|
&.ng-invalid.ng-dirty {
|
|
23276
23334
|
border-color: $invalid-border;
|
|
@@ -24255,7 +24313,8 @@ $actionsheet-item-disabled-opacity: .42 !default;
|
|
|
24255
24313
|
|
|
24256
24314
|
// Hover state
|
|
24257
24315
|
&:hover,
|
|
24258
|
-
&.k-state-hover
|
|
24316
|
+
&.k-state-hover ,
|
|
24317
|
+
&.k-hover {
|
|
24259
24318
|
@include fill(
|
|
24260
24319
|
$actionsheet-item-hover-text,
|
|
24261
24320
|
$actionsheet-item-hover-bg,
|
|
@@ -24268,7 +24327,8 @@ $actionsheet-item-disabled-opacity: .42 !default;
|
|
|
24268
24327
|
|
|
24269
24328
|
// Focus state
|
|
24270
24329
|
&:focus,
|
|
24271
|
-
&.k-state-focus
|
|
24330
|
+
&.k-state-focus ,
|
|
24331
|
+
&.k-focus {
|
|
24272
24332
|
@include fill(
|
|
24273
24333
|
$actionsheet-item-focus-text,
|
|
24274
24334
|
$actionsheet-item-focus-bg,
|
|
@@ -24281,7 +24341,8 @@ $actionsheet-item-disabled-opacity: .42 !default;
|
|
|
24281
24341
|
|
|
24282
24342
|
// Disabed state
|
|
24283
24343
|
&:disabled,
|
|
24284
|
-
&.k-state-disabled
|
|
24344
|
+
&.k-state-disabled ,
|
|
24345
|
+
&.k-disabled {
|
|
24285
24346
|
@include fill(
|
|
24286
24347
|
$actionsheet-item-disabled-text,
|
|
24287
24348
|
$actionsheet-item-disabled-bg,
|
|
@@ -24534,7 +24595,8 @@ $actionsheet-item-disabled-opacity: .42 !default;
|
|
|
24534
24595
|
|
|
24535
24596
|
.k-window {
|
|
24536
24597
|
&:focus,
|
|
24537
|
-
&.k-state-focused
|
|
24598
|
+
&.k-state-focused ,
|
|
24599
|
+
&.k-focus {
|
|
24538
24600
|
@include box-shadow( $window-focused-shadow );
|
|
24539
24601
|
}
|
|
24540
24602
|
}
|
|
@@ -25055,29 +25117,34 @@ $drawer-selected-hover-text: $secondary !default;
|
|
|
25055
25117
|
.k-drawer-item {
|
|
25056
25118
|
|
|
25057
25119
|
&:hover,
|
|
25058
|
-
&.k-state-hover
|
|
25120
|
+
&.k-state-hover ,
|
|
25121
|
+
&.k-hover {
|
|
25059
25122
|
color: $drawer-hovered-text;
|
|
25060
25123
|
background-color: $drawer-hovered-bg;
|
|
25061
25124
|
}
|
|
25062
25125
|
|
|
25063
25126
|
&:focus,
|
|
25064
|
-
&.k-state-focused
|
|
25127
|
+
&.k-state-focused ,
|
|
25128
|
+
&.k-focus {
|
|
25065
25129
|
background-color: $drawer-focused-bg;
|
|
25066
25130
|
box-shadow: $drawer-focused-shadow;
|
|
25067
25131
|
|
|
25068
25132
|
&:hover,
|
|
25069
|
-
&.k-state-hover
|
|
25133
|
+
&.k-state-hover ,
|
|
25134
|
+
&.k-hover {
|
|
25070
25135
|
color: $drawer-hovered-text;
|
|
25071
25136
|
background-color: $drawer-hovered-bg;
|
|
25072
25137
|
}
|
|
25073
25138
|
}
|
|
25074
25139
|
|
|
25075
|
-
&.k-state-selected
|
|
25140
|
+
&.k-state-selected ,
|
|
25141
|
+
&.k-selected {
|
|
25076
25142
|
color: $drawer-selected-text;
|
|
25077
25143
|
background-color: $drawer-selected-bg;
|
|
25078
25144
|
|
|
25079
25145
|
&:hover,
|
|
25080
|
-
&.k-state-hover
|
|
25146
|
+
&.k-state-hover ,
|
|
25147
|
+
&.k-hover {
|
|
25081
25148
|
color: $drawer-selected-hover-text;
|
|
25082
25149
|
background-color: $drawer-selected-hover-bg;
|
|
25083
25150
|
}
|
|
@@ -25093,10 +25160,12 @@ $drawer-selected-hover-text: $secondary !default;
|
|
|
25093
25160
|
|
|
25094
25161
|
@include exports( "drawer/theme/material" ) {
|
|
25095
25162
|
.k-drawer-item {
|
|
25096
|
-
&.k-state-selected
|
|
25163
|
+
&.k-state-selected ,
|
|
25164
|
+
&.k-selected {
|
|
25097
25165
|
|
|
25098
25166
|
&:focus,
|
|
25099
|
-
&.k-state-focused
|
|
25167
|
+
&.k-state-focused ,
|
|
25168
|
+
&.k-focus {
|
|
25100
25169
|
background-color: $drawer-focused-bg;
|
|
25101
25170
|
box-shadow: $drawer-focused-shadow;
|
|
25102
25171
|
}
|
|
@@ -26348,7 +26417,8 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
26348
26417
|
outline: 0;
|
|
26349
26418
|
}
|
|
26350
26419
|
}
|
|
26351
|
-
.k-bottom-nav-item.k-state-disabled
|
|
26420
|
+
.k-bottom-nav-item.k-state-disabled ,
|
|
26421
|
+
.k-bottom-nav-item.k-disabled {
|
|
26352
26422
|
background-color: initial;
|
|
26353
26423
|
}
|
|
26354
26424
|
|
|
@@ -26395,12 +26465,15 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
26395
26465
|
);
|
|
26396
26466
|
|
|
26397
26467
|
.k-bottom-nav-item.k-state-focus,
|
|
26468
|
+
.k-bottom-nav-item.k-focus,
|
|
26398
26469
|
.k-bottom-nav-item.k-state-focused,
|
|
26470
|
+
.k-bottom-nav-item.k-focus,
|
|
26399
26471
|
.k-bottom-nav-item:focus {
|
|
26400
26472
|
@include fill( $bg: rgba(true-mix( $color, contrast-wcag( $color ), 35%), .2));
|
|
26401
26473
|
}
|
|
26402
26474
|
|
|
26403
|
-
.k-bottom-nav-item.k-state-selected
|
|
26475
|
+
.k-bottom-nav-item.k-state-selected ,
|
|
26476
|
+
.k-bottom-nav-item.k-selected {
|
|
26404
26477
|
@include fill( $color: contrast-wcag( $color ) );
|
|
26405
26478
|
}
|
|
26406
26479
|
}
|
|
@@ -26415,13 +26488,16 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
26415
26488
|
);
|
|
26416
26489
|
|
|
26417
26490
|
.k-bottom-nav-item.k-state-focus,
|
|
26491
|
+
.k-bottom-nav-item.k-focus,
|
|
26418
26492
|
.k-bottom-nav-item.k-state-focused,
|
|
26493
|
+
.k-bottom-nav-item.k-focus,
|
|
26419
26494
|
.k-bottom-nav-item:focus {
|
|
26420
26495
|
@include fill( $bg: rgba($bottom-nav-flat-text, .05) );
|
|
26421
26496
|
}
|
|
26422
26497
|
|
|
26423
26498
|
@each $name, $color in $kendo-theme-colors {
|
|
26424
|
-
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected
|
|
26499
|
+
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected ,
|
|
26500
|
+
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-selected {
|
|
26425
26501
|
@if $name == "secondary" or $name == "light" {
|
|
26426
26502
|
@include fill( $color: try-shade($color, 3) );
|
|
26427
26503
|
} @else {
|
|
@@ -26681,7 +26757,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
26681
26757
|
);
|
|
26682
26758
|
|
|
26683
26759
|
&:focus,
|
|
26684
|
-
&.k-state-focused
|
|
26760
|
+
&.k-state-focused ,
|
|
26761
|
+
&.k-focus {
|
|
26685
26762
|
@include box-shadow( $breadcrumb-focused-shadow );
|
|
26686
26763
|
}
|
|
26687
26764
|
}
|
|
@@ -26697,7 +26774,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
26697
26774
|
|
|
26698
26775
|
// Hovered state
|
|
26699
26776
|
&:hover,
|
|
26700
|
-
&.k-state-hover
|
|
26777
|
+
&.k-state-hover ,
|
|
26778
|
+
&.k-hover {
|
|
26701
26779
|
@include fill(
|
|
26702
26780
|
$breadcrumb-link-hovered-text,
|
|
26703
26781
|
$breadcrumb-link-hovered-bg,
|
|
@@ -26707,7 +26785,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
26707
26785
|
|
|
26708
26786
|
// Focused state
|
|
26709
26787
|
&:focus,
|
|
26710
|
-
&.k-state-focused
|
|
26788
|
+
&.k-state-focused ,
|
|
26789
|
+
&.k-focus {
|
|
26711
26790
|
@include fill(
|
|
26712
26791
|
$breadcrumb-link-focused-text,
|
|
26713
26792
|
$breadcrumb-link-focused-bg,
|
|
@@ -26728,7 +26807,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
26728
26807
|
|
|
26729
26808
|
// Hovered state
|
|
26730
26809
|
&:hover,
|
|
26731
|
-
&.k-state-hover
|
|
26810
|
+
&.k-state-hover ,
|
|
26811
|
+
&.k-hover {
|
|
26732
26812
|
@include fill(
|
|
26733
26813
|
$breadcrumb-root-link-hovered-text,
|
|
26734
26814
|
$breadcrumb-root-link-hovered-bg,
|
|
@@ -26738,7 +26818,8 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
26738
26818
|
|
|
26739
26819
|
// Focused state
|
|
26740
26820
|
&:focus,
|
|
26741
|
-
&.k-state-focused
|
|
26821
|
+
&.k-state-focused ,
|
|
26822
|
+
&.k-focus {
|
|
26742
26823
|
@include fill(
|
|
26743
26824
|
$breadcrumb-root-link-focused-text,
|
|
26744
26825
|
$breadcrumb-root-link-focused-bg,
|
|
@@ -26886,7 +26967,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
26886
26967
|
|
|
26887
26968
|
// Focused state
|
|
26888
26969
|
&:focus,
|
|
26889
|
-
&.k-state-focus
|
|
26970
|
+
&.k-state-focus ,
|
|
26971
|
+
&.k-focus {
|
|
26890
26972
|
z-index: 3;
|
|
26891
26973
|
}
|
|
26892
26974
|
}
|
|
@@ -26935,7 +27017,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
26935
27017
|
&:hover {
|
|
26936
27018
|
z-index: 2;
|
|
26937
27019
|
}
|
|
26938
|
-
&.k-state-disabled
|
|
27020
|
+
&.k-state-disabled ,
|
|
27021
|
+
&.k-disabled {
|
|
26939
27022
|
color: inherit;
|
|
26940
27023
|
}
|
|
26941
27024
|
}
|
|
@@ -26984,7 +27067,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
26984
27067
|
}
|
|
26985
27068
|
|
|
26986
27069
|
// Selected state
|
|
26987
|
-
.k-state-selected
|
|
27070
|
+
.k-state-selected ,
|
|
27071
|
+
.k-selected {
|
|
26988
27072
|
cursor: inherit;
|
|
26989
27073
|
z-index: 2;
|
|
26990
27074
|
}
|
|
@@ -27150,7 +27234,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27150
27234
|
&:focus,
|
|
27151
27235
|
&.k-focus,
|
|
27152
27236
|
&.k-state-focus,
|
|
27153
|
-
&.k-state-focused
|
|
27237
|
+
&.k-state-focused ,
|
|
27238
|
+
&.k-focus {
|
|
27154
27239
|
@include fill( $bg: $pager-focus-bg );
|
|
27155
27240
|
@include box-shadow( $pager-focus-shadow );
|
|
27156
27241
|
}
|
|
@@ -27165,7 +27250,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27165
27250
|
);
|
|
27166
27251
|
|
|
27167
27252
|
&:hover,
|
|
27168
|
-
&.k-state-hover
|
|
27253
|
+
&.k-state-hover ,
|
|
27254
|
+
&.k-hover {
|
|
27169
27255
|
@include fill(
|
|
27170
27256
|
$pager-item-hover-text,
|
|
27171
27257
|
$pager-item-hover-bg,
|
|
@@ -27173,7 +27259,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27173
27259
|
);
|
|
27174
27260
|
}
|
|
27175
27261
|
|
|
27176
|
-
&.k-state-selected
|
|
27262
|
+
&.k-state-selected ,
|
|
27263
|
+
&.k-selected {
|
|
27177
27264
|
@include fill(
|
|
27178
27265
|
$pager-item-selected-text,
|
|
27179
27266
|
$pager-item-selected-bg,
|
|
@@ -27182,7 +27269,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27182
27269
|
}
|
|
27183
27270
|
|
|
27184
27271
|
&:focus,
|
|
27185
|
-
&.k-state-focus
|
|
27272
|
+
&.k-state-focus ,
|
|
27273
|
+
&.k-focus {
|
|
27186
27274
|
background-color: $pager-item-focus-bg;
|
|
27187
27275
|
@include box-shadow( $pager-item-focus-shadow );
|
|
27188
27276
|
}
|
|
@@ -27205,7 +27293,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27205
27293
|
);
|
|
27206
27294
|
|
|
27207
27295
|
&:hover,
|
|
27208
|
-
&.k-state-hover
|
|
27296
|
+
&.k-state-hover ,
|
|
27297
|
+
&.k-hover {
|
|
27209
27298
|
@include fill(
|
|
27210
27299
|
$pager-number-hover-text,
|
|
27211
27300
|
$pager-number-hover-bg,
|
|
@@ -27214,12 +27303,14 @@ $pager-dropdown-width: 5em !default;
|
|
|
27214
27303
|
}
|
|
27215
27304
|
|
|
27216
27305
|
&:focus,
|
|
27217
|
-
&.k-state-focus
|
|
27306
|
+
&.k-state-focus ,
|
|
27307
|
+
&.k-focus {
|
|
27218
27308
|
background-color: $pager-number-focus-bg;
|
|
27219
27309
|
@include box-shadow( $pager-number-focus-shadow );
|
|
27220
27310
|
}
|
|
27221
27311
|
|
|
27222
|
-
&.k-state-selected
|
|
27312
|
+
&.k-state-selected ,
|
|
27313
|
+
&.k-selected {
|
|
27223
27314
|
@include fill(
|
|
27224
27315
|
$pager-number-selected-text,
|
|
27225
27316
|
$pager-number-selected-bg,
|
|
@@ -27251,7 +27342,8 @@ $pager-dropdown-width: 5em !default;
|
|
|
27251
27342
|
);
|
|
27252
27343
|
|
|
27253
27344
|
&:hover,
|
|
27254
|
-
&.k-state-hover
|
|
27345
|
+
&.k-state-hover ,
|
|
27346
|
+
&.k-hover {
|
|
27255
27347
|
@include fill(
|
|
27256
27348
|
$dropdownlist-hovered-text,
|
|
27257
27349
|
$dropdownlist-hovered-bg,
|
|
@@ -27271,14 +27363,16 @@ $pager-dropdown-width: 5em !default;
|
|
|
27271
27363
|
.k-link {
|
|
27272
27364
|
|
|
27273
27365
|
&:hover,
|
|
27274
|
-
&.k-state-hover
|
|
27366
|
+
&.k-state-hover ,
|
|
27367
|
+
&.k-hover {
|
|
27275
27368
|
@include fill(
|
|
27276
27369
|
$kendo-list-item-hover-text,
|
|
27277
27370
|
$kendo-list-item-hover-bg
|
|
27278
27371
|
);
|
|
27279
27372
|
}
|
|
27280
27373
|
|
|
27281
|
-
&.k-state-selected
|
|
27374
|
+
&.k-state-selected ,
|
|
27375
|
+
&.k-selected {
|
|
27282
27376
|
@include fill(
|
|
27283
27377
|
$kendo-list-item-selected-text,
|
|
27284
27378
|
$kendo-list-item-selected-bg
|
|
@@ -27564,7 +27658,8 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
27564
27658
|
opacity: $stepper-optional-label-opacity;
|
|
27565
27659
|
}
|
|
27566
27660
|
.k-step-disabled .k-step-label-optional,
|
|
27567
|
-
&.k-state-disabled .k-step-label-optional
|
|
27661
|
+
&.k-state-disabled .k-step-label-optional ,
|
|
27662
|
+
&.k-disabled .k-step-label-optional {
|
|
27568
27663
|
color: inherit;
|
|
27569
27664
|
}
|
|
27570
27665
|
|
|
@@ -27896,7 +27991,8 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
27896
27991
|
$bg: $stepper-progressbar-bg
|
|
27897
27992
|
);
|
|
27898
27993
|
|
|
27899
|
-
.k-state-selected
|
|
27994
|
+
.k-state-selected ,
|
|
27995
|
+
.k-selected {
|
|
27900
27996
|
@include fill(
|
|
27901
27997
|
$color: $stepper-progressbar-fill-text,
|
|
27902
27998
|
$bg: $stepper-progressbar-fill-bg
|
|
@@ -28146,12 +28242,14 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28146
28242
|
position: relative;
|
|
28147
28243
|
z-index: 1;
|
|
28148
28244
|
|
|
28149
|
-
&.k-state-active
|
|
28245
|
+
&.k-state-active ,
|
|
28246
|
+
&.k-active {
|
|
28150
28247
|
display: block;
|
|
28151
28248
|
}
|
|
28152
28249
|
|
|
28153
28250
|
&:focus,
|
|
28154
|
-
&.k-state-focused
|
|
28251
|
+
&.k-state-focused ,
|
|
28252
|
+
&.k-focus {
|
|
28155
28253
|
outline-width: 1px;
|
|
28156
28254
|
outline-style: dotted;
|
|
28157
28255
|
outline-offset: -1px;
|
|
@@ -28239,7 +28337,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28239
28337
|
margin-left: $tabstrip-item-gap;
|
|
28240
28338
|
}
|
|
28241
28339
|
|
|
28242
|
-
.k-item.k-state-active
|
|
28340
|
+
.k-item.k-state-active ,
|
|
28341
|
+
.k-item.k-active {
|
|
28243
28342
|
border-bottom-color: transparent;
|
|
28244
28343
|
}
|
|
28245
28344
|
}
|
|
@@ -28268,7 +28367,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28268
28367
|
margin-left: $tabstrip-item-gap;
|
|
28269
28368
|
}
|
|
28270
28369
|
|
|
28271
|
-
.k-item.k-state-active
|
|
28370
|
+
.k-item.k-state-active ,
|
|
28371
|
+
.k-item.k-active {
|
|
28272
28372
|
border-top-color: transparent;
|
|
28273
28373
|
}
|
|
28274
28374
|
}
|
|
@@ -28301,7 +28401,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28301
28401
|
margin-top: $tabstrip-item-gap;
|
|
28302
28402
|
}
|
|
28303
28403
|
|
|
28304
|
-
.k-item.k-state-active
|
|
28404
|
+
.k-item.k-state-active ,
|
|
28405
|
+
.k-item.k-active {
|
|
28305
28406
|
border-right-color: transparent;
|
|
28306
28407
|
}
|
|
28307
28408
|
}
|
|
@@ -28336,7 +28437,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28336
28437
|
margin-top: $tabstrip-item-gap;
|
|
28337
28438
|
}
|
|
28338
28439
|
|
|
28339
|
-
.k-item.k-state-active
|
|
28440
|
+
.k-item.k-state-active ,
|
|
28441
|
+
.k-item.k-active {
|
|
28340
28442
|
border-left-color: transparent;
|
|
28341
28443
|
}
|
|
28342
28444
|
}
|
|
@@ -28381,7 +28483,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28381
28483
|
border-left-width: $tabstrip-indicator-size;
|
|
28382
28484
|
}
|
|
28383
28485
|
}
|
|
28384
|
-
.k-item.k-state-active::after
|
|
28486
|
+
.k-item.k-state-active::after ,
|
|
28487
|
+
.k-item.k-active::after {
|
|
28385
28488
|
display: block;
|
|
28386
28489
|
}
|
|
28387
28490
|
|
|
@@ -28475,7 +28578,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28475
28578
|
);
|
|
28476
28579
|
|
|
28477
28580
|
&:hover,
|
|
28478
|
-
&.k-state-hover
|
|
28581
|
+
&.k-state-hover ,
|
|
28582
|
+
&.k-hover {
|
|
28479
28583
|
@include fill(
|
|
28480
28584
|
$tabstrip-item-hovered-text,
|
|
28481
28585
|
$tabstrip-item-hovered-bg,
|
|
@@ -28486,7 +28590,9 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28486
28590
|
|
|
28487
28591
|
&:active,
|
|
28488
28592
|
&.k-state-active,
|
|
28489
|
-
&.k-
|
|
28593
|
+
&.k-active,
|
|
28594
|
+
&.k-state-selected ,
|
|
28595
|
+
&.k-selected {
|
|
28490
28596
|
@include fill(
|
|
28491
28597
|
$tabstrip-item-selected-text,
|
|
28492
28598
|
$tabstrip-item-selected-bg,
|
|
@@ -28496,7 +28602,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28496
28602
|
}
|
|
28497
28603
|
|
|
28498
28604
|
&:focus,
|
|
28499
|
-
&.k-state-focused
|
|
28605
|
+
&.k-state-focused ,
|
|
28606
|
+
&.k-focus {
|
|
28500
28607
|
@include box-shadow( $tabstrip-item-focused-shadow );
|
|
28501
28608
|
}
|
|
28502
28609
|
|
|
@@ -28518,7 +28625,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28518
28625
|
);
|
|
28519
28626
|
|
|
28520
28627
|
&:focus,
|
|
28521
|
-
&.k-state-focused
|
|
28628
|
+
&.k-state-focused ,
|
|
28629
|
+
&.k-focus {
|
|
28522
28630
|
outline-color: $tabstrip-content-border-focused;
|
|
28523
28631
|
}
|
|
28524
28632
|
}
|
|
@@ -28528,7 +28636,8 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28528
28636
|
@if ($tabstrip-indicator-size) {
|
|
28529
28637
|
|
|
28530
28638
|
.k-tabstrip-items-wrapper {
|
|
28531
|
-
.k-item.k-state-active::after
|
|
28639
|
+
.k-item.k-state-active::after ,
|
|
28640
|
+
.k-item.k-active::after {
|
|
28532
28641
|
border-color: $tabstrip-indicator-color;
|
|
28533
28642
|
}
|
|
28534
28643
|
}
|
|
@@ -28633,7 +28742,8 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
28633
28742
|
justify-content: space-between;
|
|
28634
28743
|
|
|
28635
28744
|
&:focus,
|
|
28636
|
-
&.k-state-focused
|
|
28745
|
+
&.k-state-focused ,
|
|
28746
|
+
&.k-focus {
|
|
28637
28747
|
outline-width: 1px;
|
|
28638
28748
|
outline-style: dotted;
|
|
28639
28749
|
outline-offset: -1px;
|
|
@@ -28729,12 +28839,14 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
28729
28839
|
@include exports("wizard/theme") {
|
|
28730
28840
|
.k-wizard-step {
|
|
28731
28841
|
&:focus,
|
|
28732
|
-
&.k-state-focused
|
|
28842
|
+
&.k-state-focused ,
|
|
28843
|
+
&.k-focus {
|
|
28733
28844
|
outline-color: $wizard-step-border-focused;
|
|
28734
28845
|
}
|
|
28735
28846
|
|
|
28736
28847
|
.k-ie &:focus,
|
|
28737
|
-
.k-ie &.k-state-focused
|
|
28848
|
+
.k-ie &.k-state-focused ,
|
|
28849
|
+
.k-ie &.k-focus {
|
|
28738
28850
|
@include box-shadow($wizard-focused-shadow);
|
|
28739
28851
|
outline: none;
|
|
28740
28852
|
}
|
|
@@ -28904,7 +29016,8 @@ $expander-content-padding-y: $padding-y * 6 !default;
|
|
|
28904
29016
|
$expander-border
|
|
28905
29017
|
);
|
|
28906
29018
|
|
|
28907
|
-
&.k-state-focus
|
|
29019
|
+
&.k-state-focus ,
|
|
29020
|
+
&.k-focus {
|
|
28908
29021
|
box-shadow: $expander-focus-shadow;
|
|
28909
29022
|
}
|
|
28910
29023
|
}
|
|
@@ -28918,12 +29031,14 @@ $expander-content-padding-y: $padding-y * 6 !default;
|
|
|
28918
29031
|
outline: none;
|
|
28919
29032
|
|
|
28920
29033
|
&:hover,
|
|
28921
|
-
&.k-state-hover
|
|
29034
|
+
&.k-state-hover ,
|
|
29035
|
+
&.k-hover {
|
|
28922
29036
|
background-color: $expander-header-hover-bg;
|
|
28923
29037
|
}
|
|
28924
29038
|
|
|
28925
29039
|
// Should be removed
|
|
28926
|
-
&.k-state-focused
|
|
29040
|
+
&.k-state-focused ,
|
|
29041
|
+
&.k-focus {
|
|
28927
29042
|
background-color: $expander-header-focused-bg;
|
|
28928
29043
|
box-shadow: $expander-header-focused-shadow;
|
|
28929
29044
|
}
|
|
@@ -29295,7 +29410,8 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29295
29410
|
|
|
29296
29411
|
// Hover
|
|
29297
29412
|
> .k-link:hover,
|
|
29298
|
-
> .k-link.k-state-hover
|
|
29413
|
+
> .k-link.k-state-hover ,
|
|
29414
|
+
> .k-link.k-hover {
|
|
29299
29415
|
@include fill(
|
|
29300
29416
|
$panelbar-header-hovered-text,
|
|
29301
29417
|
$panelbar-header-hovered-bg,
|
|
@@ -29307,7 +29423,9 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29307
29423
|
// Focus
|
|
29308
29424
|
> .k-link:focus,
|
|
29309
29425
|
> .k-link.k-state-focus,
|
|
29310
|
-
> .k-link.k-
|
|
29426
|
+
> .k-link.k-focus,
|
|
29427
|
+
> .k-link.k-state-focused ,
|
|
29428
|
+
> .k-link.k-focus {
|
|
29311
29429
|
@include fill(
|
|
29312
29430
|
$panelbar-header-focused-text,
|
|
29313
29431
|
$panelbar-header-focused-bg,
|
|
@@ -29319,7 +29437,8 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29319
29437
|
|
|
29320
29438
|
// Focus & Hover
|
|
29321
29439
|
> .k-link:focus:hover,
|
|
29322
|
-
> .k-link.k-state-focus.k-state-hover
|
|
29440
|
+
> .k-link.k-state-focus.k-state-hover ,
|
|
29441
|
+
> .k-link.k-focus.k-hover {
|
|
29323
29442
|
@include fill(
|
|
29324
29443
|
$panelbar-header-hovered-focused-text,
|
|
29325
29444
|
$panelbar-header-hovered-focused-bg,
|
|
@@ -29329,7 +29448,8 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29329
29448
|
}
|
|
29330
29449
|
|
|
29331
29450
|
// Selected
|
|
29332
|
-
> .k-link.k-state-selected
|
|
29451
|
+
> .k-link.k-state-selected ,
|
|
29452
|
+
> .k-link.k-selected {
|
|
29333
29453
|
@include fill(
|
|
29334
29454
|
$panelbar-header-selected-text,
|
|
29335
29455
|
$panelbar-header-selected-bg,
|
|
@@ -29345,7 +29465,9 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29345
29465
|
|
|
29346
29466
|
// Selected Hover
|
|
29347
29467
|
> .k-link.k-state-selected:hover,
|
|
29348
|
-
> .k-link.k-
|
|
29468
|
+
> .k-link.k-selected:hover,
|
|
29469
|
+
> .k-link.k-state-selected.k-state-hover ,
|
|
29470
|
+
> .k-link.k-selected.k-hover {
|
|
29349
29471
|
@include fill(
|
|
29350
29472
|
$panelbar-header-selected-hovered-text,
|
|
29351
29473
|
$panelbar-header-selected-hovered-bg,
|
|
@@ -29356,8 +29478,11 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29356
29478
|
|
|
29357
29479
|
// Selected Focus
|
|
29358
29480
|
> .k-link.k-state-selected:focus,
|
|
29481
|
+
> .k-link.k-selected:focus,
|
|
29359
29482
|
> .k-link.k-state-selected.k-state-focus,
|
|
29360
|
-
> .k-link.k-
|
|
29483
|
+
> .k-link.k-selected.k-focus,
|
|
29484
|
+
> .k-link.k-state-selected.k-state-focused ,
|
|
29485
|
+
> .k-link.k-selected.k-focused {
|
|
29361
29486
|
@include fill(
|
|
29362
29487
|
$panelbar-header-selected-focused-text,
|
|
29363
29488
|
$panelbar-header-selected-focused-bg,
|
|
@@ -29368,8 +29493,11 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29368
29493
|
|
|
29369
29494
|
// Selected Focus & Hover
|
|
29370
29495
|
> .k-link.k-state-selected:hover:focus,
|
|
29496
|
+
> .k-link.k-selected:hover:focus,
|
|
29371
29497
|
> .k-link.k-state-selected.k-state-hover.k-state-focus,
|
|
29372
|
-
> .k-link.k-
|
|
29498
|
+
> .k-link.k-selected.k-hover.k-state-focus,
|
|
29499
|
+
> .k-link.k-state-selected.k-state-hover.k-state-focused ,
|
|
29500
|
+
> .k-link.k-selected.k-hover.k-state-focused {
|
|
29373
29501
|
@include fill(
|
|
29374
29502
|
$panelbar-header-selected-hovered-focused-text,
|
|
29375
29503
|
$panelbar-header-selected-hovered-focused-bg,
|
|
@@ -29387,8 +29515,10 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29387
29515
|
// Hover
|
|
29388
29516
|
> .k-item > .k-link:hover,
|
|
29389
29517
|
> .k-item > .k-link.k-state-hover,
|
|
29518
|
+
> .k-item > .k-link.k-hover,
|
|
29390
29519
|
> .k-panelbar-item > .k-link:hover,
|
|
29391
|
-
> .k-panelbar-item > .k-link.k-state-hover
|
|
29520
|
+
> .k-panelbar-item > .k-link.k-state-hover ,
|
|
29521
|
+
> .k-panelbar-item > .k-link.k-hover {
|
|
29392
29522
|
@include fill(
|
|
29393
29523
|
$panelbar-item-hovered-text,
|
|
29394
29524
|
$panelbar-item-hovered-bg,
|
|
@@ -29400,10 +29530,14 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29400
29530
|
// Focus
|
|
29401
29531
|
> .k-item > .k-link:focus,
|
|
29402
29532
|
> .k-item > .k-link.k-state-focus,
|
|
29533
|
+
> .k-item > .k-link.k-focus,
|
|
29403
29534
|
> .k-item > .k-link.k-state-focused,
|
|
29535
|
+
> .k-item > .k-link.k-focus,
|
|
29404
29536
|
> .k-panelbar-item > .k-link:focus,
|
|
29405
29537
|
> .k-panelbar-item > .k-link.k-state-focus,
|
|
29406
|
-
> .k-panelbar-item > .k-link.k-
|
|
29538
|
+
> .k-panelbar-item > .k-link.k-focus,
|
|
29539
|
+
> .k-panelbar-item > .k-link.k-state-focused ,
|
|
29540
|
+
> .k-panelbar-item > .k-link.k-focus {
|
|
29407
29541
|
@include fill(
|
|
29408
29542
|
$panelbar-item-focused-text,
|
|
29409
29543
|
$panelbar-item-focused-bg,
|
|
@@ -29416,8 +29550,10 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29416
29550
|
// Focus & Hover
|
|
29417
29551
|
> .k-item > .k-link:focus:hover,
|
|
29418
29552
|
> .k-item > .k-link.k-state-focus.k-state-hover,
|
|
29553
|
+
> .k-item > .k-link.k-focus.k-hover,
|
|
29419
29554
|
> .k-panelbar-item > .k-link:focus:hover,
|
|
29420
|
-
> .k-panelbar-item > .k-link.k-state-focus.k-state-hover
|
|
29555
|
+
> .k-panelbar-item > .k-link.k-state-focus.k-state-hover ,
|
|
29556
|
+
> .k-panelbar-item > .k-link.k-focus.k-hover {
|
|
29421
29557
|
@include fill(
|
|
29422
29558
|
$panelbar-item-hovered-focused-text,
|
|
29423
29559
|
$panelbar-item-hovered-focused-bg,
|
|
@@ -29428,7 +29564,9 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29428
29564
|
|
|
29429
29565
|
// Selected
|
|
29430
29566
|
> .k-item > .k-link.k-state-selected,
|
|
29431
|
-
> .k-
|
|
29567
|
+
> .k-item > .k-link.k-selected,
|
|
29568
|
+
> .k-panelbar-item > .k-link.k-state-selected ,
|
|
29569
|
+
> .k-panelbar-item > .k-link.k-selected {
|
|
29432
29570
|
@include fill(
|
|
29433
29571
|
$panelbar-item-selected-text,
|
|
29434
29572
|
$panelbar-item-selected-bg,
|
|
@@ -29439,9 +29577,13 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29439
29577
|
|
|
29440
29578
|
// Selected Hover
|
|
29441
29579
|
> .k-item > .k-link.k-state-selected:hover,
|
|
29580
|
+
> .k-item > .k-link.k-selected:hover,
|
|
29442
29581
|
> .k-item > .k-link.k-state-selected.k-state-hover,
|
|
29582
|
+
> .k-item > .k-link.k-selected.k-hover,
|
|
29443
29583
|
> .k-panelbar-item > .k-link.k-state-selected:hover,
|
|
29444
|
-
> .k-panelbar-item > .k-link.k-
|
|
29584
|
+
> .k-panelbar-item > .k-link.k-selected:hover,
|
|
29585
|
+
> .k-panelbar-item > .k-link.k-state-selected.k-state-hover ,
|
|
29586
|
+
> .k-panelbar-item > .k-link.k-selected.k-hover {
|
|
29445
29587
|
@include fill(
|
|
29446
29588
|
$panelbar-item-selected-hovered-text,
|
|
29447
29589
|
$panelbar-item-selected-hovered-bg,
|
|
@@ -29452,11 +29594,17 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29452
29594
|
|
|
29453
29595
|
// Selected Focus
|
|
29454
29596
|
> .k-item > .k-link.k-state-selected:focus,
|
|
29597
|
+
> .k-item > .k-link.k-selected:focus,
|
|
29455
29598
|
> .k-item > .k-link.k-state-selected.k-state-focus,
|
|
29599
|
+
> .k-item > .k-link.k-selected.k-focus,
|
|
29456
29600
|
> .k-item > .k-link.k-state-selected.k-state-focused,
|
|
29601
|
+
> .k-item > .k-link.k-selected.k-focused,
|
|
29457
29602
|
> .k-panelbar-item > .k-link.k-state-selected:focus,
|
|
29603
|
+
> .k-panelbar-item > .k-link.k-selected:focus,
|
|
29458
29604
|
> .k-panelbar-item > .k-link.k-state-selected.k-state-focus,
|
|
29459
|
-
> .k-item > .k-link.k-
|
|
29605
|
+
> .k-panelbar-item > .k-link.k-selected.k-focus,
|
|
29606
|
+
> .k-item > .k-link.k-state-selected.k-state-focused ,
|
|
29607
|
+
> .k-item > .k-link.k-selected.k-focused {
|
|
29460
29608
|
@include fill(
|
|
29461
29609
|
$panelbar-item-selected-focused-text,
|
|
29462
29610
|
$panelbar-item-selected-focused-bg,
|
|
@@ -29467,11 +29615,17 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29467
29615
|
|
|
29468
29616
|
// Selected Focus & Hover
|
|
29469
29617
|
> .k-item > .k-link.k-state-selected:focus:hover,
|
|
29618
|
+
> .k-item > .k-link.k-selected:focus:hover,
|
|
29470
29619
|
> .k-item > .k-link.k-state-selected.k-state-focus.k-state-hover,
|
|
29620
|
+
> .k-item > .k-link.k-selected.k-focus.k-state-hover,
|
|
29471
29621
|
> .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover,
|
|
29622
|
+
> .k-item > .k-link.k-selected.k-focused.k-state-hover,
|
|
29472
29623
|
> .k-panelbar-item > .k-link.k-state-selected:focus:hover,
|
|
29624
|
+
> .k-panelbar-item > .k-link.k-selected:focus:hover,
|
|
29473
29625
|
> .k-panelbar-item > .k-link.k-state-selected.k-state-focus.k-state-hover,
|
|
29474
|
-
> .k-item > .k-link.k-
|
|
29626
|
+
> .k-panelbar-item > .k-link.k-selected.k-focus.k-state-hover,
|
|
29627
|
+
> .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover ,
|
|
29628
|
+
> .k-item > .k-link.k-selected.k-focused.k-state-hover {
|
|
29475
29629
|
@include fill(
|
|
29476
29630
|
$panelbar-item-selected-hovered-focused-text,
|
|
29477
29631
|
$panelbar-item-selected-hovered-focused-bg,
|
|
@@ -29755,6 +29909,7 @@ $splitbar-selected-text: $primary-contrast !default;
|
|
|
29755
29909
|
}
|
|
29756
29910
|
.k-splitbar:hover,
|
|
29757
29911
|
.k-splitbar.k-state-hover,
|
|
29912
|
+
.k-splitbar.k-hover,
|
|
29758
29913
|
.k-splitbar-horizontal-hover,
|
|
29759
29914
|
.k-splitbar-vertical-hover {
|
|
29760
29915
|
color: $splitbar-hover-text;
|
|
@@ -29762,7 +29917,9 @@ $splitbar-selected-text: $primary-contrast !default;
|
|
|
29762
29917
|
}
|
|
29763
29918
|
.k-splitbar:focus,
|
|
29764
29919
|
.k-splitbar.k-state-focus,
|
|
29765
|
-
.k-splitbar.k-
|
|
29920
|
+
.k-splitbar.k-focus,
|
|
29921
|
+
.k-splitbar.k-state-focused ,
|
|
29922
|
+
.k-splitbar.k-focus {
|
|
29766
29923
|
color: $splitbar-selected-text;
|
|
29767
29924
|
background: $splitbar-selected-bg;
|
|
29768
29925
|
}
|
|
@@ -29874,7 +30031,8 @@ $tilelayout-hint-border: $component-border !default;
|
|
|
29874
30031
|
.k-tilelayout-item:focus,
|
|
29875
30032
|
.k-tilelayout-item.k-focus,
|
|
29876
30033
|
.k-tilelayout-item.k-state-focus,
|
|
29877
|
-
.k-tilelayout-item.k-state-focused
|
|
30034
|
+
.k-tilelayout-item.k-state-focused ,
|
|
30035
|
+
.k-tilelayout-item.k-focus {
|
|
29878
30036
|
@include box-shadow($tilelayout-card-focus-shadow);
|
|
29879
30037
|
}
|
|
29880
30038
|
|
|
@@ -30549,11 +30707,13 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30549
30707
|
|
|
30550
30708
|
.k-column-menu {
|
|
30551
30709
|
|
|
30552
|
-
.k-listgroup-item.k-state-selected
|
|
30710
|
+
.k-listgroup-item.k-state-selected ,
|
|
30711
|
+
.k-listgroup-item.k-selected {
|
|
30553
30712
|
color: $adaptive-grid-sort-text;
|
|
30554
30713
|
background: none;
|
|
30555
30714
|
}
|
|
30556
|
-
.k-listgroup-item.k-state-selected .k-link
|
|
30715
|
+
.k-listgroup-item.k-state-selected .k-link ,
|
|
30716
|
+
.k-listgroup-item.k-selected .k-link {
|
|
30557
30717
|
color: inherit;
|
|
30558
30718
|
}
|
|
30559
30719
|
}
|
|
@@ -32323,27 +32483,33 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32323
32483
|
|
|
32324
32484
|
// Hover state
|
|
32325
32485
|
tbody tr:not(.k-detail-row):hover,
|
|
32326
|
-
tbody tr:not(.k-detail-row).k-state-hover
|
|
32486
|
+
tbody tr:not(.k-detail-row).k-state-hover ,
|
|
32487
|
+
tbody tr:not(.k-detail-row).k-hover {
|
|
32327
32488
|
color: $grid-hovered-text;
|
|
32328
32489
|
background-color: $grid-hovered-bg;
|
|
32329
32490
|
}
|
|
32330
32491
|
|
|
32331
32492
|
// Selected state
|
|
32332
32493
|
td.k-state-selected,
|
|
32333
|
-
|
|
32494
|
+
td.k-selected,
|
|
32495
|
+
tr.k-state-selected > td ,
|
|
32496
|
+
tr.k-selected > td {
|
|
32334
32497
|
color: $grid-selected-text;
|
|
32335
32498
|
background-color: $grid-selected-bg;
|
|
32336
32499
|
}
|
|
32337
32500
|
|
|
32338
32501
|
// Focused state
|
|
32339
32502
|
td.k-state-focused,
|
|
32503
|
+
td.k-focus,
|
|
32340
32504
|
th.k-state-focused,
|
|
32505
|
+
th.k-focus,
|
|
32341
32506
|
th:focus,
|
|
32342
32507
|
.k-master-row > td:focus,
|
|
32343
32508
|
.k-grouping-row > td:focus,
|
|
32344
32509
|
.k-detail-row > td:focus,
|
|
32345
32510
|
.k-group-footer > td:focus,
|
|
32346
|
-
.k-grid-pager.k-state-focused
|
|
32511
|
+
.k-grid-pager.k-state-focused ,
|
|
32512
|
+
.k-grid-pager.k-focus {
|
|
32347
32513
|
box-shadow: $grid-focused-shadow;
|
|
32348
32514
|
}
|
|
32349
32515
|
|
|
@@ -32385,17 +32551,21 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32385
32551
|
}
|
|
32386
32552
|
|
|
32387
32553
|
// Selected state
|
|
32388
|
-
.k-state-selected td
|
|
32554
|
+
.k-state-selected td ,
|
|
32555
|
+
.k-selected td {
|
|
32389
32556
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
32390
32557
|
}
|
|
32391
32558
|
|
|
32392
|
-
.k-state-selected.k-alt td
|
|
32559
|
+
.k-state-selected.k-alt td ,
|
|
32560
|
+
.k-selected.k-alt td {
|
|
32393
32561
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
32394
32562
|
}
|
|
32395
32563
|
|
|
32396
32564
|
// Selected hover
|
|
32397
32565
|
.k-state-selected:hover td,
|
|
32398
|
-
.k-
|
|
32566
|
+
.k-selected:hover td,
|
|
32567
|
+
.k-state-selected.k-state-hover td ,
|
|
32568
|
+
.k-selected.k-hover td {
|
|
32399
32569
|
@include fill( $bg: $grid-sticky-selected-hovered-bg );
|
|
32400
32570
|
}
|
|
32401
32571
|
}
|
|
@@ -32436,10 +32606,12 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32436
32606
|
}
|
|
32437
32607
|
&:focus,
|
|
32438
32608
|
&.k-state-focus,
|
|
32609
|
+
&.k-focus,
|
|
32439
32610
|
&.k-state-border-down {
|
|
32440
32611
|
box-shadow: inset 0 0 0 2px rgba( 0, 0, 0, .1 );
|
|
32441
32612
|
}
|
|
32442
|
-
&.k-state-active
|
|
32613
|
+
&.k-state-active ,
|
|
32614
|
+
&.k-active {
|
|
32443
32615
|
color: $selected-text;
|
|
32444
32616
|
background-color: $selected-bg;
|
|
32445
32617
|
}
|
|
@@ -32495,14 +32667,20 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32495
32667
|
|
|
32496
32668
|
// Selected state
|
|
32497
32669
|
&.k-state-selected .k-grid-content-sticky,
|
|
32670
|
+
&.k-selected .k-grid-content-sticky,
|
|
32498
32671
|
&.k-state-selected .k-grid-row-sticky,
|
|
32499
|
-
|
|
32672
|
+
&.k-selected .k-grid-row-sticky,
|
|
32673
|
+
td.k-grid-content-sticky.k-state-selected ,
|
|
32674
|
+
td.k-grid-content-sticky.k-selected {
|
|
32500
32675
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
32501
32676
|
}
|
|
32502
32677
|
|
|
32503
32678
|
&.k-state-selected.k-alt .k-grid-content-sticky,
|
|
32679
|
+
&.k-selected.k-alt .k-grid-content-sticky,
|
|
32504
32680
|
&.k-state-selected.k-alt .k-grid-row-sticky,
|
|
32505
|
-
&.k-alt
|
|
32681
|
+
&.k-selected.k-alt .k-grid-row-sticky,
|
|
32682
|
+
&.k-alt td.k-grid-content-sticky.k-state-selected ,
|
|
32683
|
+
&.k-alt td.k-grid-content-sticky.k-selected {
|
|
32506
32684
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
32507
32685
|
}
|
|
32508
32686
|
|
|
@@ -32511,18 +32689,26 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32511
32689
|
&:hover .k-grid-content-sticky,
|
|
32512
32690
|
&:hover .k-grid-row-sticky,
|
|
32513
32691
|
&.k-state-hover .k-grid-content-sticky,
|
|
32514
|
-
&.k-
|
|
32692
|
+
&.k-hover .k-grid-content-sticky,
|
|
32693
|
+
&.k-state-hover .k-grid-row-sticky ,
|
|
32694
|
+
&.k-hover .k-grid-row-sticky {
|
|
32515
32695
|
background-color: $grid-sticky-hovered-bg;
|
|
32516
32696
|
}
|
|
32517
32697
|
|
|
32518
32698
|
|
|
32519
32699
|
// Selected hover
|
|
32520
32700
|
&.k-state-selected:hover .k-grid-content-sticky,
|
|
32701
|
+
&.k-selected:hover .k-grid-content-sticky,
|
|
32521
32702
|
&.k-state-selected:hover .k-grid-row-sticky,
|
|
32703
|
+
&.k-selected:hover .k-grid-row-sticky,
|
|
32522
32704
|
&.k-state-selected.k-state-hover .k-grid-content-sticky,
|
|
32705
|
+
&.k-selected.k-hover .k-grid-content-sticky,
|
|
32523
32706
|
&.k-state-selected.k-state-hover .k-grid-row-sticky,
|
|
32707
|
+
&.k-selected.k-hover .k-grid-row-sticky,
|
|
32524
32708
|
&:hover td.k-grid-content-sticky.k-state-selected,
|
|
32525
|
-
|
|
32709
|
+
&:hover td.k-grid-content-sticky.k-selected,
|
|
32710
|
+
&.k-state-hover td.k-grid-content-sticky.k-state-selected ,
|
|
32711
|
+
&.k-hover td.k-grid-content-sticky.k-selected {
|
|
32526
32712
|
background-color: $grid-sticky-selected-hovered-bg;
|
|
32527
32713
|
}
|
|
32528
32714
|
}
|
|
@@ -32535,7 +32721,8 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32535
32721
|
background-color: $grid-sticky-bg;
|
|
32536
32722
|
|
|
32537
32723
|
&:hover,
|
|
32538
|
-
&.k-state-hover
|
|
32724
|
+
&.k-state-hover ,
|
|
32725
|
+
&.k-hover {
|
|
32539
32726
|
background-color: $grid-sticky-hovered-bg;
|
|
32540
32727
|
}
|
|
32541
32728
|
}
|
|
@@ -32548,7 +32735,8 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32548
32735
|
}
|
|
32549
32736
|
|
|
32550
32737
|
&:hover td,
|
|
32551
|
-
&.k-state-hover td
|
|
32738
|
+
&.k-state-hover td ,
|
|
32739
|
+
&.k-hover td {
|
|
32552
32740
|
background-color: $grid-sticky-hovered-bg;
|
|
32553
32741
|
}
|
|
32554
32742
|
}
|
|
@@ -32560,43 +32748,66 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32560
32748
|
|
|
32561
32749
|
// Selected state
|
|
32562
32750
|
tr.k-state-selected .k-grid-content-sticky,
|
|
32751
|
+
tr.k-selected .k-grid-content-sticky,
|
|
32563
32752
|
.k-state-selected.k-grid-row-sticky td,
|
|
32753
|
+
.k-selected.k-grid-row-sticky td,
|
|
32564
32754
|
.k-grid-row-sticky td.k-state-selected,
|
|
32565
|
-
.k-
|
|
32755
|
+
.k-grid-row-sticky td.k-selected,
|
|
32756
|
+
.k-state-selected.k-grid-content-sticky ,
|
|
32757
|
+
.k-selected.k-grid-content-sticky {
|
|
32566
32758
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
32567
32759
|
}
|
|
32568
32760
|
|
|
32569
32761
|
tr.k-state-selected.k-alt .k-grid-content-sticky,
|
|
32762
|
+
tr.k-selected.k-alt .k-grid-content-sticky,
|
|
32570
32763
|
.k-state-selected.k-alt.k-grid-row-sticky td,
|
|
32571
|
-
.k-
|
|
32764
|
+
.k-selected.k-alt.k-grid-row-sticky td,
|
|
32765
|
+
.k-alt .k-state-selected.k-grid-content-sticky ,
|
|
32766
|
+
.k-alt .k-selected.k-grid-content-sticky {
|
|
32572
32767
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
32573
32768
|
}
|
|
32574
32769
|
|
|
32575
32770
|
// Hover state
|
|
32576
32771
|
tr:hover .k-grid-content-sticky,
|
|
32577
32772
|
tr.k-state-hover .k-grid-content-sticky,
|
|
32773
|
+
tr.k-hover .k-grid-content-sticky,
|
|
32578
32774
|
.k-grid-row-sticky:hover td,
|
|
32579
32775
|
.k-grid-row-sticky.k-state-hover td,
|
|
32776
|
+
.k-grid-row-sticky.k-hover td,
|
|
32580
32777
|
.k-grid-row-sticky.k-alt:hover td,
|
|
32581
32778
|
.k-grid-row-sticky.k-alt.k-state-hover td,
|
|
32779
|
+
.k-grid-row-sticky.k-alt.k-hover td,
|
|
32582
32780
|
.k-alt:hover .k-grid-content-sticky,
|
|
32583
|
-
.k-alt.k-state-hover .k-grid-content-sticky
|
|
32781
|
+
.k-alt.k-state-hover .k-grid-content-sticky ,
|
|
32782
|
+
.k-alt.k-hover .k-grid-content-sticky {
|
|
32584
32783
|
background-color: $grid-sticky-hovered-bg;
|
|
32585
32784
|
}
|
|
32586
32785
|
|
|
32587
32786
|
// Selected + Hover
|
|
32588
32787
|
tr.k-state-selected:hover .k-grid-content-sticky,
|
|
32788
|
+
tr.k-selected:hover .k-grid-content-sticky,
|
|
32589
32789
|
tr.k-state-selected.k-state-hover .k-grid-content-sticky,
|
|
32790
|
+
tr.k-selected.k-hover .k-grid-content-sticky,
|
|
32590
32791
|
.k-state-selected.k-grid-row-sticky:hover td,
|
|
32792
|
+
.k-selected.k-grid-row-sticky:hover td,
|
|
32591
32793
|
.k-state-selected.k-grid-row-sticky.k-state-hover td,
|
|
32794
|
+
.k-selected.k-grid-row-sticky.k-hover td,
|
|
32592
32795
|
.k-state-selected.k-alt.k-grid-row-sticky:hover td,
|
|
32796
|
+
.k-selected.k-alt.k-grid-row-sticky:hover td,
|
|
32593
32797
|
.k-state-selected.k-alt.k-grid-row-sticky.k-state-hover td,
|
|
32798
|
+
.k-selected.k-alt.k-grid-row-sticky.k-hover td,
|
|
32594
32799
|
tr.k-state-selected.k-alt:hover .k-grid-content-sticky,
|
|
32800
|
+
tr.k-selected.k-alt:hover .k-grid-content-sticky,
|
|
32595
32801
|
tr.k-state-selected.k-alt.k-state-hover .k-grid-content-sticky,
|
|
32802
|
+
tr.k-selected.k-alt.k-hover .k-grid-content-sticky,
|
|
32596
32803
|
.k-grid-row-sticky:hover td.k-state-selected,
|
|
32804
|
+
.k-grid-row-sticky:hover td.k-selected,
|
|
32597
32805
|
.k-grid-row-sticky.k-state-hover td.k-state-selected,
|
|
32806
|
+
.k-grid-row-sticky.k-hover td.k-selected,
|
|
32598
32807
|
tr:hover .k-grid-content-sticky.k-state-selected,
|
|
32599
|
-
tr
|
|
32808
|
+
tr:hover .k-grid-content-sticky.k-selected,
|
|
32809
|
+
tr.k-state-hover .k-grid-content-sticky.k-state-selected ,
|
|
32810
|
+
tr.k-hover .k-grid-content-sticky.k-selected {
|
|
32600
32811
|
background-color: $grid-sticky-selected-hovered-bg;
|
|
32601
32812
|
}
|
|
32602
32813
|
}
|
|
@@ -32607,7 +32818,8 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32607
32818
|
}
|
|
32608
32819
|
|
|
32609
32820
|
&:hover .k-grid-content-sticky,
|
|
32610
|
-
&.k-state-hover .k-grid-content-sticky
|
|
32821
|
+
&.k-state-hover .k-grid-content-sticky ,
|
|
32822
|
+
&.k-hover .k-grid-content-sticky {
|
|
32611
32823
|
@include fill( $bg: $grid-sticky-hovered-bg );
|
|
32612
32824
|
}
|
|
32613
32825
|
}
|
|
@@ -32620,12 +32832,14 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32620
32832
|
);
|
|
32621
32833
|
}
|
|
32622
32834
|
.k-columnmenu-item:focus,
|
|
32623
|
-
.k-columnmenu-item.k-state-focus
|
|
32835
|
+
.k-columnmenu-item.k-state-focus ,
|
|
32836
|
+
.k-columnmenu-item.k-focus {
|
|
32624
32837
|
@include box-shadow( $kendo-list-item-focus-shadow );
|
|
32625
32838
|
}
|
|
32626
32839
|
|
|
32627
32840
|
.k-columnmenu-item {
|
|
32628
|
-
&.k-state-selected
|
|
32841
|
+
&.k-state-selected ,
|
|
32842
|
+
&.k-selected {
|
|
32629
32843
|
@include fill(
|
|
32630
32844
|
$kendo-list-item-selected-text,
|
|
32631
32845
|
$kendo-list-item-selected-bg
|
|
@@ -32650,14 +32864,16 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32650
32864
|
);
|
|
32651
32865
|
|
|
32652
32866
|
&:hover,
|
|
32653
|
-
&.k-state-hover
|
|
32867
|
+
&.k-state-hover ,
|
|
32868
|
+
&.k-hover {
|
|
32654
32869
|
@include fill(
|
|
32655
32870
|
$kendo-list-item-hover-text,
|
|
32656
32871
|
$kendo-list-item-hover-bg
|
|
32657
32872
|
);
|
|
32658
32873
|
}
|
|
32659
32874
|
|
|
32660
|
-
&.k-state-selected
|
|
32875
|
+
&.k-state-selected ,
|
|
32876
|
+
&.k-selected {
|
|
32661
32877
|
@include fill(
|
|
32662
32878
|
$kendo-list-item-selected-text,
|
|
32663
32879
|
$kendo-list-item-selected-bg
|
|
@@ -32665,7 +32881,8 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32665
32881
|
}
|
|
32666
32882
|
|
|
32667
32883
|
&:focus,
|
|
32668
|
-
&.k-state-focused
|
|
32884
|
+
&.k-state-focused ,
|
|
32885
|
+
&.k-focus {
|
|
32669
32886
|
@include box-shadow( $kendo-list-item-focus-shadow );
|
|
32670
32887
|
}
|
|
32671
32888
|
}
|
|
@@ -32700,11 +32917,14 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32700
32917
|
|
|
32701
32918
|
// Selected state
|
|
32702
32919
|
td.k-state-selected,
|
|
32703
|
-
|
|
32920
|
+
td.k-selected,
|
|
32921
|
+
tr.k-state-selected ,
|
|
32922
|
+
tr.k-selected {
|
|
32704
32923
|
color: $grid-selected-text;
|
|
32705
32924
|
background-color: $grid-selected-bg;
|
|
32706
32925
|
}
|
|
32707
|
-
tr.k-state-selected > td
|
|
32926
|
+
tr.k-state-selected > td ,
|
|
32927
|
+
tr.k-selected > td {
|
|
32708
32928
|
color: inherit;
|
|
32709
32929
|
background-color: transparent;
|
|
32710
32930
|
}
|
|
@@ -32713,8 +32933,11 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32713
32933
|
table {
|
|
32714
32934
|
tr:not(.k-detail-row):hover,
|
|
32715
32935
|
tr:not(.k-detail-row).k-state-hover,
|
|
32936
|
+
tr:not(.k-detail-row).k-hover,
|
|
32716
32937
|
td.k-state-focused,
|
|
32938
|
+
td.k-focus,
|
|
32717
32939
|
th.k-state-focused,
|
|
32940
|
+
th.k-focus,
|
|
32718
32941
|
th:focus,
|
|
32719
32942
|
.k-master-row > td:focus,
|
|
32720
32943
|
.k-grouping-row > td:focus,
|
|
@@ -32725,7 +32948,8 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32725
32948
|
}
|
|
32726
32949
|
|
|
32727
32950
|
tr:hover,
|
|
32728
|
-
tr.k-state-hover
|
|
32951
|
+
tr.k-state-hover ,
|
|
32952
|
+
tr.k-hover {
|
|
32729
32953
|
.k-grid-header-sticky,
|
|
32730
32954
|
.k-grid-footer-sticky {
|
|
32731
32955
|
color: inherit;
|
|
@@ -32734,7 +32958,9 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32734
32958
|
}
|
|
32735
32959
|
|
|
32736
32960
|
td.k-state-focused,
|
|
32961
|
+
td.k-focus,
|
|
32737
32962
|
th.k-state-focused,
|
|
32963
|
+
th.k-focus,
|
|
32738
32964
|
th:focus,
|
|
32739
32965
|
.k-master-row > td:focus,
|
|
32740
32966
|
.k-grouping-row > td:focus,
|
|
@@ -32750,7 +32976,8 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32750
32976
|
|
|
32751
32977
|
}
|
|
32752
32978
|
.k-grid-pager:focus,
|
|
32753
|
-
.k-grid-pager.k-state-focused
|
|
32979
|
+
.k-grid-pager.k-state-focused ,
|
|
32980
|
+
.k-grid-pager.k-focus {
|
|
32754
32981
|
color: inherit;
|
|
32755
32982
|
}
|
|
32756
32983
|
|
|
@@ -32803,7 +33030,8 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32803
33030
|
|
|
32804
33031
|
.k-group-footer {
|
|
32805
33032
|
&:hover td,
|
|
32806
|
-
&.k-state-hover td
|
|
33033
|
+
&.k-state-hover td ,
|
|
33034
|
+
&.k-hover td {
|
|
32807
33035
|
color: inherit;
|
|
32808
33036
|
@include fill( $bg: $grid-sticky-footer-hovered-bg );
|
|
32809
33037
|
}
|
|
@@ -32853,13 +33081,15 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32853
33081
|
|
|
32854
33082
|
&:focus,
|
|
32855
33083
|
&.k-state-focus,
|
|
33084
|
+
&.k-focus,
|
|
32856
33085
|
&.k-state-border-down {
|
|
32857
33086
|
color: $grid-text;
|
|
32858
33087
|
background-color: $grid-filter-button-focus;
|
|
32859
33088
|
box-shadow: none;
|
|
32860
33089
|
}
|
|
32861
33090
|
|
|
32862
|
-
&.k-state-active
|
|
33091
|
+
&.k-state-active ,
|
|
33092
|
+
&.k-active {
|
|
32863
33093
|
color: $primary-contrast;
|
|
32864
33094
|
background-color: $primary;
|
|
32865
33095
|
}
|
|
@@ -32899,7 +33129,8 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32899
33129
|
}
|
|
32900
33130
|
|
|
32901
33131
|
&:hover td,
|
|
32902
|
-
&.k-state-hover td
|
|
33132
|
+
&.k-state-hover td ,
|
|
33133
|
+
&.k-hover td {
|
|
32903
33134
|
@include fill( $bg: $grid-sticky-footer-hovered-bg );
|
|
32904
33135
|
}
|
|
32905
33136
|
}
|
|
@@ -32931,7 +33162,8 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32931
33162
|
}
|
|
32932
33163
|
|
|
32933
33164
|
.k-columnmenu-item {
|
|
32934
|
-
&.k-state-selected
|
|
33165
|
+
&.k-state-selected ,
|
|
33166
|
+
&.k-selected {
|
|
32935
33167
|
@include fill(
|
|
32936
33168
|
$kendo-list-item-selected-text,
|
|
32937
33169
|
$kendo-list-item-selected-bg
|
|
@@ -32939,7 +33171,8 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32939
33171
|
}
|
|
32940
33172
|
}
|
|
32941
33173
|
.k-columnmenu-item:focus,
|
|
32942
|
-
.k-columnmenu-item.k-state-focus
|
|
33174
|
+
.k-columnmenu-item.k-state-focus ,
|
|
33175
|
+
.k-columnmenu-item.k-focus {
|
|
32943
33176
|
background: $kendo-list-item-hover-bg;
|
|
32944
33177
|
}
|
|
32945
33178
|
|
|
@@ -32947,7 +33180,8 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32947
33180
|
|
|
32948
33181
|
.k-item {
|
|
32949
33182
|
// Selected state
|
|
32950
|
-
&.k-state-selected
|
|
33183
|
+
&.k-state-selected ,
|
|
33184
|
+
&.k-selected {
|
|
32951
33185
|
background: $kendo-list-item-hover-bg;
|
|
32952
33186
|
}
|
|
32953
33187
|
}
|
|
@@ -33167,7 +33401,8 @@ $listview-item-focus-shadow: null !default;
|
|
|
33167
33401
|
// Listview content
|
|
33168
33402
|
.k-listview-content {
|
|
33169
33403
|
|
|
33170
|
-
> .k-state-focused
|
|
33404
|
+
> .k-state-focused ,
|
|
33405
|
+
> .k-focus {
|
|
33171
33406
|
@include fill(
|
|
33172
33407
|
$listview-item-focus-text,
|
|
33173
33408
|
$listview-item-focus-bg,
|
|
@@ -33176,7 +33411,8 @@ $listview-item-focus-shadow: null !default;
|
|
|
33176
33411
|
@include box-shadow( $listview-item-focus-shadow );
|
|
33177
33412
|
}
|
|
33178
33413
|
|
|
33179
|
-
> .k-state-selected
|
|
33414
|
+
> .k-state-selected ,
|
|
33415
|
+
> .k-selected {
|
|
33180
33416
|
@include fill(
|
|
33181
33417
|
$listview-item-selected-text,
|
|
33182
33418
|
$listview-item-selected-bg,
|
|
@@ -33198,7 +33434,8 @@ $listview-item-focus-shadow: null !default;
|
|
|
33198
33434
|
|
|
33199
33435
|
// Listview content
|
|
33200
33436
|
.k-listview-content {}
|
|
33201
|
-
.k-listview-content > .k-state-selected.k-state-focused
|
|
33437
|
+
.k-listview-content > .k-state-selected.k-state-focused ,
|
|
33438
|
+
.k-listview-content > .k-selected.k-focused {
|
|
33202
33439
|
background-color: rgba( contrast-wcag( $listview-bg ), .12 );
|
|
33203
33440
|
}
|
|
33204
33441
|
|
|
@@ -33570,7 +33807,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
33570
33807
|
overflow: hidden;
|
|
33571
33808
|
|
|
33572
33809
|
// disabled cells in the Spreadsheet should allow navigation if link is used
|
|
33573
|
-
.k-state-disabled
|
|
33810
|
+
.k-state-disabled ,
|
|
33811
|
+
.k-disabled {
|
|
33574
33812
|
pointer-events: auto;
|
|
33575
33813
|
}
|
|
33576
33814
|
}
|
|
@@ -34131,7 +34369,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34131
34369
|
background-position: 50% 50%;
|
|
34132
34370
|
|
|
34133
34371
|
&:hover div,
|
|
34134
|
-
&.k-state-hovered div
|
|
34372
|
+
&.k-state-hovered div ,
|
|
34373
|
+
&.k-hover div {
|
|
34135
34374
|
margin: 0;
|
|
34136
34375
|
align-self: center;
|
|
34137
34376
|
opacity: 1;
|
|
@@ -34196,7 +34435,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34196
34435
|
.k-spreadsheet-insert-image-dialog {
|
|
34197
34436
|
.k-spreadsheet-has-image {
|
|
34198
34437
|
&:hover,
|
|
34199
|
-
&.k-state-hovered
|
|
34438
|
+
&.k-state-hovered ,
|
|
34439
|
+
&.k-hover {
|
|
34200
34440
|
border-radius: $spreadsheet-insert-image-dialog-preview-overlay-border-radius;
|
|
34201
34441
|
}
|
|
34202
34442
|
}
|
|
@@ -34316,7 +34556,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34316
34556
|
.k-tabstrip-items .k-item {
|
|
34317
34557
|
color: inherit;
|
|
34318
34558
|
}
|
|
34319
|
-
.k-tabstrip-items .k-item.k-state-active::after
|
|
34559
|
+
.k-tabstrip-items .k-item.k-state-active::after ,
|
|
34560
|
+
.k-tabstrip-items .k-item.k-active::after {
|
|
34320
34561
|
border-color: $primary-contrast;
|
|
34321
34562
|
}
|
|
34322
34563
|
}
|
|
@@ -34338,7 +34579,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34338
34579
|
$toolbar-gradient
|
|
34339
34580
|
);
|
|
34340
34581
|
|
|
34341
|
-
.k-tabstrip-items .k-item.k-state-active
|
|
34582
|
+
.k-tabstrip-items .k-item.k-state-active ,
|
|
34583
|
+
.k-tabstrip-items .k-item.k-active {
|
|
34342
34584
|
border-color: $secondary;
|
|
34343
34585
|
}
|
|
34344
34586
|
}
|
|
@@ -34459,7 +34701,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34459
34701
|
);
|
|
34460
34702
|
box-shadow: inset 0 0 0 1px $kendo-button-border;
|
|
34461
34703
|
|
|
34462
|
-
&.k-state-active
|
|
34704
|
+
&.k-state-active ,
|
|
34705
|
+
&.k-active {
|
|
34463
34706
|
@include fill(
|
|
34464
34707
|
$kendo-button-active-text,
|
|
34465
34708
|
$kendo-button-active-bg,
|
|
@@ -34504,12 +34747,14 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34504
34747
|
|
|
34505
34748
|
.k-spreadsheet-has-image {
|
|
34506
34749
|
&:hover,
|
|
34507
|
-
&.k-state-hovered
|
|
34750
|
+
&.k-state-hovered ,
|
|
34751
|
+
&.k-hover {
|
|
34508
34752
|
box-shadow: $spreadsheet-insert-image-dialog-preview-overlay-shadow;
|
|
34509
34753
|
}
|
|
34510
34754
|
|
|
34511
34755
|
&:hover div,
|
|
34512
|
-
&.k-state-hovered div
|
|
34756
|
+
&.k-state-hovered div ,
|
|
34757
|
+
&.k-hover div {
|
|
34513
34758
|
color: $spreadsheet-insert-image-dialog-overlay-hovered-text;
|
|
34514
34759
|
}
|
|
34515
34760
|
}
|
|
@@ -34543,7 +34788,8 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34543
34788
|
.k-button {}
|
|
34544
34789
|
|
|
34545
34790
|
.k-button:hover,
|
|
34546
|
-
.k-button.k-state-hover
|
|
34791
|
+
.k-button.k-state-hover ,
|
|
34792
|
+
.k-button.k-hover {
|
|
34547
34793
|
@include fill(
|
|
34548
34794
|
$kendo-list-item-hover-text,
|
|
34549
34795
|
$kendo-list-item-hover-bg
|
|
@@ -34551,7 +34797,9 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34551
34797
|
}
|
|
34552
34798
|
.k-button:active,
|
|
34553
34799
|
.k-button.k-state-active,
|
|
34554
|
-
.k-button.k-
|
|
34800
|
+
.k-button.k-active,
|
|
34801
|
+
.k-button.k-state-selected ,
|
|
34802
|
+
.k-button.k-selected {
|
|
34555
34803
|
@include fill(
|
|
34556
34804
|
$kendo-list-item-selected-text,
|
|
34557
34805
|
$kendo-list-item-selected-bg
|
|
@@ -35510,10 +35758,13 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
|
|
|
35510
35758
|
|
|
35511
35759
|
// Hover state
|
|
35512
35760
|
.k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-state-hover,
|
|
35761
|
+
.k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-hover,
|
|
35513
35762
|
.k-pivotgrid-row-headers tbody > .k-pivotgrid-row:hover,
|
|
35514
35763
|
.k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-state-hover,
|
|
35764
|
+
.k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-hover,
|
|
35515
35765
|
.k-pivotgrid-column-headers tbody > .k-pivotgrid-row:hover,
|
|
35516
35766
|
.k-pivotgrid-values tbody > .k-pivotgrid-row.k-state-hover,
|
|
35767
|
+
.k-pivotgrid-values tbody > .k-pivotgrid-row.k-hover,
|
|
35517
35768
|
.k-pivotgrid-values tbody > .k-pivotgrid-row:hover {
|
|
35518
35769
|
@include fill (
|
|
35519
35770
|
$pivotgrid-hover-text,
|
|
@@ -35524,6 +35775,7 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
|
|
|
35524
35775
|
|
|
35525
35776
|
// Focus state
|
|
35526
35777
|
.k-pivotgrid-cell.k-state-focus,
|
|
35778
|
+
.k-pivotgrid-cell.k-focus,
|
|
35527
35779
|
.k-pivotgrid-cell:focus,
|
|
35528
35780
|
.k-master-row > .k-pivotgrid-cell:focus,
|
|
35529
35781
|
.k-grouping-row > .k-pivotgrid-cell:focus,
|
|
@@ -35534,7 +35786,9 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
|
|
|
35534
35786
|
|
|
35535
35787
|
// Selected state
|
|
35536
35788
|
.k-pivotgrid-cell.k-state-selected,
|
|
35537
|
-
.k-pivotgrid-
|
|
35789
|
+
.k-pivotgrid-cell.k-selected,
|
|
35790
|
+
.k-pivotgrid-row.k-state-selected > .k-pivotgrid-cell ,
|
|
35791
|
+
.k-pivotgrid-row.k-selected > .k-pivotgrid-cell {
|
|
35538
35792
|
@include fill (
|
|
35539
35793
|
$pivotgrid-selected-text,
|
|
35540
35794
|
$pivotgrid-selected-bg,
|
|
@@ -35712,6 +35966,7 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
|
|
|
35712
35966
|
|
|
35713
35967
|
// Hover and Focus state have the same bg color
|
|
35714
35968
|
.k-pivotgrid-cell.k-state-focus,
|
|
35969
|
+
.k-pivotgrid-cell.k-focus,
|
|
35715
35970
|
.k-pivotgrid-cell:focus,
|
|
35716
35971
|
.k-master-row > .k-pivotgrid-cell:focus,
|
|
35717
35972
|
.k-grouping-row > .k-pivotgrid-cell:focus,
|
|
@@ -35779,7 +36034,8 @@ $treelist-footer-row-border-width: 1px !default;
|
|
|
35779
36034
|
}
|
|
35780
36035
|
|
|
35781
36036
|
.k-treelist-dragging,
|
|
35782
|
-
.k-treelist-dragging .k-state-hover
|
|
36037
|
+
.k-treelist-dragging .k-state-hover ,
|
|
36038
|
+
.k-treelist-dragging .k-hover {
|
|
35783
36039
|
cursor: default;
|
|
35784
36040
|
}
|
|
35785
36041
|
|
|
@@ -36554,7 +36810,8 @@ $filemanager-preview-icon-border: null !default;
|
|
|
36554
36810
|
);
|
|
36555
36811
|
}
|
|
36556
36812
|
|
|
36557
|
-
&.k-state-selected .k-file-icon
|
|
36813
|
+
&.k-state-selected .k-file-icon ,
|
|
36814
|
+
&.k-selected .k-file-icon {
|
|
36558
36815
|
@include fill(
|
|
36559
36816
|
inherit,
|
|
36560
36817
|
transparent,
|
|
@@ -37018,7 +37275,8 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
37018
37275
|
);
|
|
37019
37276
|
}
|
|
37020
37277
|
.k-taskboard-column:focus,
|
|
37021
|
-
.k-taskboard-column.k-state-focus
|
|
37278
|
+
.k-taskboard-column.k-state-focus ,
|
|
37279
|
+
.k-taskboard-column.k-focus {
|
|
37022
37280
|
@include fill(
|
|
37023
37281
|
$taskboard-column-focus-text,
|
|
37024
37282
|
$taskboard-column-focus-bg,
|
|
@@ -37220,7 +37478,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
37220
37478
|
pointer-events: auto;
|
|
37221
37479
|
}
|
|
37222
37480
|
|
|
37223
|
-
.k-editor-content.k-state-focused
|
|
37481
|
+
.k-editor-content.k-state-focused ,
|
|
37482
|
+
.k-editor-content.k-focus {
|
|
37224
37483
|
outline-width: 1px;
|
|
37225
37484
|
outline-style: dashed;
|
|
37226
37485
|
}
|
|
@@ -37673,7 +37932,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
37673
37932
|
display: block;
|
|
37674
37933
|
margin: auto;
|
|
37675
37934
|
|
|
37676
|
-
&.k-state-selected
|
|
37935
|
+
&.k-state-selected ,
|
|
37936
|
+
&.k-selected {
|
|
37677
37937
|
color: inherit;
|
|
37678
37938
|
border-width: 0;
|
|
37679
37939
|
background-image: none;
|
|
@@ -37983,7 +38243,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
37983
38243
|
|
|
37984
38244
|
// Hover & Actve state
|
|
37985
38245
|
&:hover,
|
|
37986
|
-
&.k-state-active
|
|
38246
|
+
&.k-state-active ,
|
|
38247
|
+
&.k-active {
|
|
37987
38248
|
border-color: $panel-border;
|
|
37988
38249
|
}
|
|
37989
38250
|
}
|
|
@@ -38000,7 +38261,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
38000
38261
|
|
|
38001
38262
|
// Insert table
|
|
38002
38263
|
.k-ct-popup {
|
|
38003
|
-
.k-state-selected
|
|
38264
|
+
.k-state-selected ,
|
|
38265
|
+
.k-selected {
|
|
38004
38266
|
@include fill( $selected-text, $selected-bg, $selected-border, none );
|
|
38005
38267
|
}
|
|
38006
38268
|
}
|
|
@@ -38555,7 +38817,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
38555
38817
|
}
|
|
38556
38818
|
}
|
|
38557
38819
|
|
|
38558
|
-
tr.k-state-selected > td:last-child
|
|
38820
|
+
tr.k-state-selected > td:last-child ,
|
|
38821
|
+
tr.k-selected > td:last-child {
|
|
38559
38822
|
background: transparent;
|
|
38560
38823
|
}
|
|
38561
38824
|
|
|
@@ -38824,7 +39087,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
38824
39087
|
border-color: currentColor;
|
|
38825
39088
|
position: absolute;
|
|
38826
39089
|
}
|
|
38827
|
-
.k-gantt-line.k-state-selected
|
|
39090
|
+
.k-gantt-line.k-state-selected ,
|
|
39091
|
+
.k-gantt-line.k-selected {
|
|
38828
39092
|
z-index: 3;
|
|
38829
39093
|
}
|
|
38830
39094
|
|
|
@@ -38897,7 +39161,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
38897
39161
|
transform: translate(-50%, -50%);
|
|
38898
39162
|
}
|
|
38899
39163
|
.k-task-dot:hover::before,
|
|
38900
|
-
.k-task-dot.k-state-hover::before
|
|
39164
|
+
.k-task-dot.k-state-hover::before ,
|
|
39165
|
+
.k-task-dot.k-hover::before {
|
|
38901
39166
|
border-width: 1px;
|
|
38902
39167
|
}
|
|
38903
39168
|
.k-task-start { left: 0; }
|
|
@@ -39384,7 +39649,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39384
39649
|
$border: $gantt-milestone-border
|
|
39385
39650
|
);
|
|
39386
39651
|
}
|
|
39387
|
-
.k-task-milestone.k-state-selected .k-task-milestone-content
|
|
39652
|
+
.k-task-milestone.k-state-selected .k-task-milestone-content ,
|
|
39653
|
+
.k-task-milestone.k-selected .k-task-milestone-content {
|
|
39388
39654
|
@include fill(
|
|
39389
39655
|
$bg: $gantt-milestone-selected-bg,
|
|
39390
39656
|
$border: $gantt-milestone-selected-border
|
|
@@ -39398,7 +39664,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39398
39664
|
stroke: $gantt-line-fill;
|
|
39399
39665
|
}
|
|
39400
39666
|
|
|
39401
|
-
polyline.k-state-selected
|
|
39667
|
+
polyline.k-state-selected ,
|
|
39668
|
+
polyline.k-selected {
|
|
39402
39669
|
stroke: $gantt-line-selected-fill;
|
|
39403
39670
|
}
|
|
39404
39671
|
}
|
|
@@ -39451,7 +39718,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39451
39718
|
);
|
|
39452
39719
|
}
|
|
39453
39720
|
.k-task-dot:hover::before,
|
|
39454
|
-
.k-task-dot.k-state-hover::before
|
|
39721
|
+
.k-task-dot.k-state-hover::before ,
|
|
39722
|
+
.k-task-dot.k-hover::before {
|
|
39455
39723
|
@include fill(
|
|
39456
39724
|
$bg: $gantt-dot-hover-bg,
|
|
39457
39725
|
$border: $gantt-dot-hover-border
|
|
@@ -39476,7 +39744,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39476
39744
|
);
|
|
39477
39745
|
}
|
|
39478
39746
|
}
|
|
39479
|
-
.k-task-milestone.k-state-selected
|
|
39747
|
+
.k-task-milestone.k-state-selected ,
|
|
39748
|
+
.k-task-milestone.k-selected {
|
|
39480
39749
|
background-image: none;
|
|
39481
39750
|
@include fill(
|
|
39482
39751
|
$bg: $gantt-milestone-selected-bg,
|
|
@@ -39506,7 +39775,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39506
39775
|
.k-task-advanced .k-task-summary-complete {
|
|
39507
39776
|
color: $gantt-advanced-bg;
|
|
39508
39777
|
}
|
|
39509
|
-
.k-task-summary.k-state-selected
|
|
39778
|
+
.k-task-summary.k-state-selected ,
|
|
39779
|
+
.k-task-summary.k-selected {
|
|
39510
39780
|
color: $gantt-summary-selected-bg;
|
|
39511
39781
|
|
|
39512
39782
|
.k-task-summary-complete {
|
|
@@ -39549,7 +39819,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39549
39819
|
$bg: $gantt-advanced-bg
|
|
39550
39820
|
);
|
|
39551
39821
|
}
|
|
39552
|
-
.k-task-single.k-state-selected
|
|
39822
|
+
.k-task-single.k-state-selected ,
|
|
39823
|
+
.k-task-single.k-selected {
|
|
39553
39824
|
@include fill(
|
|
39554
39825
|
$gantt-task-selected-text,
|
|
39555
39826
|
$gantt-task-selected-bg,
|
|
@@ -39565,7 +39836,8 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39565
39836
|
.k-gantt-line {
|
|
39566
39837
|
color: $gantt-line-fill;
|
|
39567
39838
|
}
|
|
39568
|
-
.k-gantt-line.k-state-selected
|
|
39839
|
+
.k-gantt-line.k-state-selected ,
|
|
39840
|
+
.k-gantt-line.k-selected {
|
|
39569
39841
|
color: $gantt-line-selected-fill;
|
|
39570
39842
|
}
|
|
39571
39843
|
|
|
@@ -40245,7 +40517,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40245
40517
|
}
|
|
40246
40518
|
|
|
40247
40519
|
&:hover,
|
|
40248
|
-
&.k-state-hover
|
|
40520
|
+
&.k-state-hover ,
|
|
40521
|
+
&.k-hover {
|
|
40249
40522
|
.k-event-delete {
|
|
40250
40523
|
opacity: 1;
|
|
40251
40524
|
}
|
|
@@ -40310,7 +40583,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40310
40583
|
|
|
40311
40584
|
// Hover
|
|
40312
40585
|
&:hover,
|
|
40313
|
-
&.k-state-hover
|
|
40586
|
+
&.k-state-hover ,
|
|
40587
|
+
&.k-hover {
|
|
40314
40588
|
.k-event-actions .k-event-delete,
|
|
40315
40589
|
.k-resize-handle {
|
|
40316
40590
|
visibility: visible;
|
|
@@ -40568,9 +40842,11 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40568
40842
|
visibility: hidden;
|
|
40569
40843
|
}
|
|
40570
40844
|
.k-state-hover .k-task > .k-event-delete,
|
|
40845
|
+
.k-hover .k-task > .k-event-delete,
|
|
40571
40846
|
.k-scheduler-content tr:hover .k-event-delete,
|
|
40572
40847
|
.k-scheduler-content .k-scheduler-row:hover .k-event-delete,
|
|
40573
|
-
.k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete
|
|
40848
|
+
.k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete ,
|
|
40849
|
+
.k-scheduler-content .k-scheduler-row.k-hover .k-event-delete {
|
|
40574
40850
|
visibility: visible;
|
|
40575
40851
|
}
|
|
40576
40852
|
}
|
|
@@ -40643,7 +40919,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40643
40919
|
position: relative;
|
|
40644
40920
|
}
|
|
40645
40921
|
|
|
40646
|
-
td.k-state-selected
|
|
40922
|
+
td.k-state-selected ,
|
|
40923
|
+
td.k-selected {
|
|
40647
40924
|
background-color: inherit;
|
|
40648
40925
|
}
|
|
40649
40926
|
}
|
|
@@ -40940,7 +41217,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40940
41217
|
kendo-scheduler .k-event,
|
|
40941
41218
|
.k-event {
|
|
40942
41219
|
|
|
40943
|
-
&.k-state-selected
|
|
41220
|
+
&.k-state-selected ,
|
|
41221
|
+
&.k-selected {
|
|
40944
41222
|
&::before {
|
|
40945
41223
|
display: block;
|
|
40946
41224
|
}
|
|
@@ -41156,7 +41434,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41156
41434
|
}
|
|
41157
41435
|
|
|
41158
41436
|
.k-scheduler-layout td.k-state-selected,
|
|
41159
|
-
.k-scheduler-layout .k-
|
|
41437
|
+
.k-scheduler-layout td.k-selected,
|
|
41438
|
+
.k-scheduler-layout .k-scheduler-cell.k-state-selected ,
|
|
41439
|
+
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
41160
41440
|
background-color: rgba($selected-bg, .25);
|
|
41161
41441
|
}
|
|
41162
41442
|
|
|
@@ -41178,7 +41458,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41178
41458
|
);
|
|
41179
41459
|
@include box-shadow( $scheduler-event-shadow );
|
|
41180
41460
|
|
|
41181
|
-
&.k-state-hover
|
|
41461
|
+
&.k-state-hover ,
|
|
41462
|
+
&.k-hover {
|
|
41182
41463
|
@include fill(
|
|
41183
41464
|
$scheduler-event-hover-text,
|
|
41184
41465
|
$scheduler-event-hover-bg,
|
|
@@ -41188,7 +41469,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41188
41469
|
@include box-shadow( $scheduler-event-hover-shadow );
|
|
41189
41470
|
}
|
|
41190
41471
|
|
|
41191
|
-
&.k-state-selected
|
|
41472
|
+
&.k-state-selected ,
|
|
41473
|
+
&.k-selected {
|
|
41192
41474
|
@include fill(
|
|
41193
41475
|
$scheduler-event-selected-text,
|
|
41194
41476
|
$scheduler-event-selected-bg,
|
|
@@ -41255,8 +41537,10 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41255
41537
|
// Hover
|
|
41256
41538
|
.k-scheduler-content tr:hover,
|
|
41257
41539
|
.k-scheduler-content tr.k-state-hover,
|
|
41540
|
+
.k-scheduler-content tr.k-hover,
|
|
41258
41541
|
.k-scheduler-content .k-scheduler-row:hover,
|
|
41259
|
-
.k-scheduler-content .k-scheduler-row.k-state-hover
|
|
41542
|
+
.k-scheduler-content .k-scheduler-row.k-state-hover ,
|
|
41543
|
+
.k-scheduler-content .k-scheduler-row.k-hover {
|
|
41260
41544
|
@include fill(
|
|
41261
41545
|
$hovered-text,
|
|
41262
41546
|
$hovered-bg,
|
|
@@ -41268,7 +41552,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41268
41552
|
.k-scheduler-content tr:hover .k-scheduler-datecolumn,
|
|
41269
41553
|
.k-scheduler-content tr:hover .k-scheduler-groupcolumn,
|
|
41270
41554
|
.k-scheduler-content tr.k-state-hover .k-scheduler-datecolumn,
|
|
41271
|
-
.k-scheduler-content tr.k-
|
|
41555
|
+
.k-scheduler-content tr.k-hover .k-scheduler-datecolumn,
|
|
41556
|
+
.k-scheduler-content tr.k-state-hover .k-scheduler-groupcolumn ,
|
|
41557
|
+
.k-scheduler-content tr.k-hover .k-scheduler-groupcolumn {
|
|
41272
41558
|
@include fill(
|
|
41273
41559
|
$scheduler-text,
|
|
41274
41560
|
$scheduler-bg,
|
|
@@ -41277,11 +41563,14 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41277
41563
|
}
|
|
41278
41564
|
|
|
41279
41565
|
// Selected
|
|
41280
|
-
.k-scheduler-content tr.k-state-selected
|
|
41566
|
+
.k-scheduler-content tr.k-state-selected ,
|
|
41567
|
+
.k-scheduler-content tr.k-selected {
|
|
41281
41568
|
background-color: rgba($selected-bg, .25);
|
|
41282
41569
|
}
|
|
41283
41570
|
.k-scheduler-content tr.k-state-selected .k-scheduler-datecolumn,
|
|
41284
|
-
.k-scheduler-content tr.k-
|
|
41571
|
+
.k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
|
|
41572
|
+
.k-scheduler-content tr.k-state-selected .k-scheduler-groupcolumn ,
|
|
41573
|
+
.k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
|
|
41285
41574
|
background-color: $scheduler-bg;
|
|
41286
41575
|
}
|
|
41287
41576
|
}
|
|
@@ -41298,7 +41587,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41298
41587
|
@include fill( $bg: $scheduler-yearview-indicator-bg );
|
|
41299
41588
|
}
|
|
41300
41589
|
|
|
41301
|
-
.k-state-selected .k-day-indicator
|
|
41590
|
+
.k-state-selected .k-day-indicator ,
|
|
41591
|
+
.k-selected .k-day-indicator {
|
|
41302
41592
|
@include fill( $bg: $scheduler-yearview-indicator-selected-bg );
|
|
41303
41593
|
}
|
|
41304
41594
|
}
|
|
@@ -41635,7 +41925,8 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
41635
41925
|
|
|
41636
41926
|
|
|
41637
41927
|
// Message states
|
|
41638
|
-
.k-message.k-state-selected
|
|
41928
|
+
.k-message.k-state-selected ,
|
|
41929
|
+
.k-message.k-selected {
|
|
41639
41930
|
margin-bottom: $chat-item-spacing-y;
|
|
41640
41931
|
border: 0;
|
|
41641
41932
|
color: inherit;
|
|
@@ -41764,6 +42055,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
41764
42055
|
|
|
41765
42056
|
&:focus,
|
|
41766
42057
|
&.k-state-focus,
|
|
42058
|
+
&.k-focus,
|
|
41767
42059
|
&:focus-within {
|
|
41768
42060
|
outline: 0;
|
|
41769
42061
|
box-shadow: none;
|
|
@@ -41843,7 +42135,8 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
41843
42135
|
flex: 0 0 auto;
|
|
41844
42136
|
}
|
|
41845
42137
|
|
|
41846
|
-
&.k-state-selected
|
|
42138
|
+
&.k-state-selected ,
|
|
42139
|
+
&.k-selected {
|
|
41847
42140
|
background: none;
|
|
41848
42141
|
}
|
|
41849
42142
|
}
|
|
@@ -42079,7 +42372,8 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
42079
42372
|
.k-bubble:hover {
|
|
42080
42373
|
@include box-shadow( $chat-bubble-hover-shadow );
|
|
42081
42374
|
}
|
|
42082
|
-
.k-state-selected .k-bubble
|
|
42375
|
+
.k-state-selected .k-bubble ,
|
|
42376
|
+
.k-selected .k-bubble {
|
|
42083
42377
|
@include box-shadow( $chat-bubble-selected-shadow );
|
|
42084
42378
|
}
|
|
42085
42379
|
|
|
@@ -42094,7 +42388,8 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
42094
42388
|
.k-alt .k-bubble:hover {
|
|
42095
42389
|
@include box-shadow( $chat-alt-bubble-hover-shadow );
|
|
42096
42390
|
}
|
|
42097
|
-
.k-alt .k-state-selected .k-bubble
|
|
42391
|
+
.k-alt .k-state-selected .k-bubble ,
|
|
42392
|
+
.k-alt .k-selected .k-bubble {
|
|
42098
42393
|
@include box-shadow( $chat-alt-bubble-selected-shadow );
|
|
42099
42394
|
}
|
|
42100
42395
|
|
|
@@ -42856,11 +43151,13 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
42856
43151
|
}
|
|
42857
43152
|
|
|
42858
43153
|
.k-timeline-track-item:hover .k-timeline-circle::before,
|
|
42859
|
-
.k-timeline-track-item.k-state-hover .k-timeline-circle::before
|
|
43154
|
+
.k-timeline-track-item.k-state-hover .k-timeline-circle::before ,
|
|
43155
|
+
.k-timeline-track-item.k-hover .k-timeline-circle::before {
|
|
42860
43156
|
opacity: $kendo-flat-button-hover-opacity;
|
|
42861
43157
|
}
|
|
42862
43158
|
|
|
42863
|
-
.k-timeline-track-item.k-state-focus .k-timeline-circle::before
|
|
43159
|
+
.k-timeline-track-item.k-state-focus .k-timeline-circle::before ,
|
|
43160
|
+
.k-timeline-track-item.k-focus .k-timeline-circle::before {
|
|
42864
43161
|
opacity: $kendo-flat-button-focus-opacity;
|
|
42865
43162
|
}
|
|
42866
43163
|
}
|
|
@@ -42911,7 +43208,8 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
42911
43208
|
color: $body-text;
|
|
42912
43209
|
}
|
|
42913
43210
|
|
|
42914
|
-
.k-timeline-arrow.k-state-disabled
|
|
43211
|
+
.k-timeline-arrow.k-state-disabled ,
|
|
43212
|
+
.k-timeline-arrow.k-disabled {
|
|
42915
43213
|
opacity: 1; // The arrow button in disabled mode should have a solid background
|
|
42916
43214
|
color: $timeline-track-arrow-disabled-text;
|
|
42917
43215
|
background-color: $timeline-track-arrow-disabled-bg;
|
|
@@ -42931,7 +43229,8 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
42931
43229
|
background-color: $timeline-flag-bg;
|
|
42932
43230
|
}
|
|
42933
43231
|
|
|
42934
|
-
.k-timeline-track-item.k-state-focus .k-timeline-circle
|
|
43232
|
+
.k-timeline-track-item.k-state-focus .k-timeline-circle ,
|
|
43233
|
+
.k-timeline-track-item.k-focus .k-timeline-circle {
|
|
42935
43234
|
@include box-shadow( $timeline-track-item-focus-shadow );
|
|
42936
43235
|
}
|
|
42937
43236
|
}
|
|
@@ -43642,7 +43941,8 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
43642
43941
|
-webkit-tap-highlight-color: $scrollview-arrow-tap-highlight-color;
|
|
43643
43942
|
|
|
43644
43943
|
&:focus,
|
|
43645
|
-
&.k-state-focus
|
|
43944
|
+
&.k-state-focus ,
|
|
43945
|
+
&.k-focus {
|
|
43646
43946
|
color: $scrollview-navigation-color;
|
|
43647
43947
|
opacity: $scrollview-navigation-hover-opacity;
|
|
43648
43948
|
|
|
@@ -43652,7 +43952,8 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
43652
43952
|
}
|
|
43653
43953
|
|
|
43654
43954
|
&:hover,
|
|
43655
|
-
&.k-state-hover
|
|
43955
|
+
&.k-state-hover ,
|
|
43956
|
+
&.k-hover {
|
|
43656
43957
|
color: $scrollview-navigation-color;
|
|
43657
43958
|
opacity: $scrollview-navigation-hover-opacity;
|
|
43658
43959
|
|
|
@@ -43671,13 +43972,15 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
43671
43972
|
}
|
|
43672
43973
|
|
|
43673
43974
|
&:focus,
|
|
43674
|
-
&.k-state-focused
|
|
43975
|
+
&.k-state-focused ,
|
|
43976
|
+
&.k-focus {
|
|
43675
43977
|
box-shadow: $scrollview-pagebutton-shadow;
|
|
43676
43978
|
}
|
|
43677
43979
|
}
|
|
43678
43980
|
|
|
43679
43981
|
.k-scrollview-nav > .k-link:hover,
|
|
43680
|
-
.k-scrollview-nav > .k-link.k-state-hover
|
|
43982
|
+
.k-scrollview-nav > .k-link.k-state-hover ,
|
|
43983
|
+
.k-scrollview-nav > .k-link.k-hover {
|
|
43681
43984
|
box-shadow: $scrollview-pagebutton-shadow;
|
|
43682
43985
|
}
|
|
43683
43986
|
|
|
@@ -44497,7 +44800,8 @@ $treemap-line-height: $line-height !default;
|
|
|
44497
44800
|
.k-leaf.k-inverse {
|
|
44498
44801
|
color: $component-text;
|
|
44499
44802
|
}
|
|
44500
|
-
.k-leaf.k-state-hover
|
|
44803
|
+
.k-leaf.k-state-hover ,
|
|
44804
|
+
.k-leaf.k-hover {
|
|
44501
44805
|
box-shadow: inset 0 0 0 3px $component-border;
|
|
44502
44806
|
}
|
|
44503
44807
|
}
|
|
@@ -44995,7 +45299,8 @@ $orgchart-line-v-height: 25px !default;
|
|
|
44995
45299
|
.k-orgchart-node-group-container:focus,
|
|
44996
45300
|
.k-orgchart-node-group-container.k-focus,
|
|
44997
45301
|
.k-orgchart-node-group-container.k-state-focus,
|
|
44998
|
-
.k-orgchart-node-group-container.k-state-focused
|
|
45302
|
+
.k-orgchart-node-group-container.k-state-focused ,
|
|
45303
|
+
.k-orgchart-node-group-container.k-focus {
|
|
44999
45304
|
@include box-shadow( $orgchart-node-group-focus-shadow );
|
|
45000
45305
|
@include fill ( $border: $orgchart-node-group-focus-border );
|
|
45001
45306
|
}
|