@progress/kendo-theme-material 5.4.2-dev.5 → 5.5.1-dev.0
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 +326 -341
- package/dist/all.scss +366 -230
- 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 +8 -11
- package/scss/calendar/_theme.scss +2 -2
- package/scss/chip/_variables.scss +1 -1
- package/scss/drawer/_theme.scss +2 -2
- package/scss/editor/_theme.scss +2 -2
- package/scss/grid/_theme.scss +13 -13
- package/scss/index.scss +1 -0
- package/scss/listview/_theme.scss +1 -1
- package/scss/progressbar/_theme.scss +1 -1
- package/scss/progressbar/_variables.scss +1 -0
- package/scss/scheduler/_layout.scss +1 -1
- package/scss/signature/_index.scss +10 -0
- package/scss/signature/_layout.scss +1 -0
- package/scss/signature/_theme.scss +1 -0
- package/scss/signature/_variables.scss +45 -0
- package/scss/slider/_theme.scss +1 -1
- package/scss/spreadsheet/_theme.scss +7 -7
- package/scss/timeline/_layout.scss +2 -2
package/dist/all.scss
CHANGED
|
@@ -12642,7 +12642,7 @@ $kendo-avatar-theme-colors: $kendo-theme-colors !default;
|
|
|
12642
12642
|
$kendo-chip-border-width: 1px !default;
|
|
12643
12643
|
/// The spacing between the text and the icons of the chip.
|
|
12644
12644
|
/// @group chip
|
|
12645
|
-
$kendo-chip-spacing: map-get( $spacing, 1 );
|
|
12645
|
+
$kendo-chip-spacing: map-get( $spacing, 1 ) !default;
|
|
12646
12646
|
|
|
12647
12647
|
/// Horizontal padding of the chip.
|
|
12648
12648
|
/// @group chip
|
|
@@ -15538,7 +15538,8 @@ $fieldset-legend-border: null !default;
|
|
|
15538
15538
|
|
|
15539
15539
|
.k-multiselect,
|
|
15540
15540
|
.k-floating-label-container,
|
|
15541
|
-
.k-daterangepicker .k-dateinput
|
|
15541
|
+
.k-daterangepicker .k-dateinput,
|
|
15542
|
+
.k-signature {
|
|
15542
15543
|
display: inline-flex;
|
|
15543
15544
|
width: 100%;
|
|
15544
15545
|
}
|
|
@@ -16662,6 +16663,7 @@ $listbox-drop-hint-width: 2px !default;
|
|
|
16662
16663
|
// #region @import "_variables.scss"; -> packages/material/scss/progressbar/_variables.scss
|
|
16663
16664
|
// Progressbar
|
|
16664
16665
|
$progressbar-height: 5px !default;
|
|
16666
|
+
$progressbar-horizontal-width: 100% !default;
|
|
16665
16667
|
$progressbar-animation-timing: null !default;
|
|
16666
16668
|
$progressbar-border-width: 0px !default;
|
|
16667
16669
|
$progressbar-font-family: $font-family !default;
|
|
@@ -16716,7 +16718,7 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16716
16718
|
|
|
16717
16719
|
|
|
16718
16720
|
// Selection
|
|
16719
|
-
> .k-state-selected
|
|
16721
|
+
> .k-state-selected,
|
|
16720
16722
|
> .k-selected {
|
|
16721
16723
|
border-width: 0;
|
|
16722
16724
|
border-style: solid;
|
|
@@ -16777,7 +16779,7 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16777
16779
|
|
|
16778
16780
|
// Horizontal
|
|
16779
16781
|
.k-progressbar-horizontal {
|
|
16780
|
-
width:
|
|
16782
|
+
width: $progressbar-horizontal-width;
|
|
16781
16783
|
height: $progressbar-height;
|
|
16782
16784
|
grid-template-columns: 1fr;
|
|
16783
16785
|
grid-template-rows: 100%;
|
|
@@ -16787,7 +16789,7 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16787
16789
|
flex-direction: row;
|
|
16788
16790
|
}
|
|
16789
16791
|
|
|
16790
|
-
> .k-state-selected
|
|
16792
|
+
> .k-state-selected,
|
|
16791
16793
|
> .k-selected {
|
|
16792
16794
|
width: 0;
|
|
16793
16795
|
width: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
|
|
@@ -16814,7 +16816,7 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16814
16816
|
// Horizontal reverse
|
|
16815
16817
|
&.k-progressbar-reverse {
|
|
16816
16818
|
|
|
16817
|
-
> .k-state-selected
|
|
16819
|
+
> .k-state-selected,
|
|
16818
16820
|
> .k-selected {
|
|
16819
16821
|
flex-direction: row-reverse;
|
|
16820
16822
|
justify-self: flex-end;
|
|
@@ -16839,7 +16841,7 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16839
16841
|
writing-mode: vertical-lr;
|
|
16840
16842
|
}
|
|
16841
16843
|
|
|
16842
|
-
> .k-state-selected
|
|
16844
|
+
> .k-state-selected,
|
|
16843
16845
|
> .k-selected {
|
|
16844
16846
|
height: 0;
|
|
16845
16847
|
height: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
|
|
@@ -16869,7 +16871,7 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16869
16871
|
&.k-progressbar-reverse {
|
|
16870
16872
|
flex-direction: column;
|
|
16871
16873
|
|
|
16872
|
-
> .k-state-selected
|
|
16874
|
+
> .k-state-selected,
|
|
16873
16875
|
> .k-selected {
|
|
16874
16876
|
flex-direction: column;
|
|
16875
16877
|
align-self: flex-start;
|
|
@@ -16894,7 +16896,7 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16894
16896
|
|
|
16895
16897
|
> .k-state-selected,
|
|
16896
16898
|
> .k-selected,
|
|
16897
|
-
> .k-state-selected > .k-progress-status-wrap
|
|
16899
|
+
> .k-state-selected > .k-progress-status-wrap,
|
|
16898
16900
|
> .k-selected > .k-progress-status-wrap {
|
|
16899
16901
|
transition: width .1s ease-in-out;
|
|
16900
16902
|
}
|
|
@@ -16923,7 +16925,7 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16923
16925
|
display: -ms-inline-grid;
|
|
16924
16926
|
|
|
16925
16927
|
> .k-progress-status-wrap,
|
|
16926
|
-
> .k-state-selected
|
|
16928
|
+
> .k-state-selected,
|
|
16927
16929
|
> .k-selected {
|
|
16928
16930
|
-ms-grid-column: 1;
|
|
16929
16931
|
-ms-grid-row: 1;
|
|
@@ -16933,7 +16935,7 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16933
16935
|
-ms-grid-columns: 1fr;
|
|
16934
16936
|
-ms-grid-rows: $progressbar-height;
|
|
16935
16937
|
|
|
16936
|
-
&.k-progressbar-reverse > .k-state-selected
|
|
16938
|
+
&.k-progressbar-reverse > .k-state-selected,
|
|
16937
16939
|
&.k-progressbar-reverse > .k-selected {
|
|
16938
16940
|
-ms-grid-column-align: end;
|
|
16939
16941
|
}
|
|
@@ -16942,12 +16944,12 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
16942
16944
|
-ms-grid-columns: $progressbar-height;
|
|
16943
16945
|
-ms-grid-rows: 1fr;
|
|
16944
16946
|
|
|
16945
|
-
> .k-state-selected
|
|
16947
|
+
> .k-state-selected,
|
|
16946
16948
|
> .k-selected {
|
|
16947
16949
|
-ms-grid-row-align: end;
|
|
16948
16950
|
}
|
|
16949
16951
|
|
|
16950
|
-
&.k-progressbar-reverse > .k-state-selected
|
|
16952
|
+
&.k-progressbar-reverse > .k-state-selected,
|
|
16951
16953
|
&.k-progressbar-reverse > .k-selected {
|
|
16952
16954
|
-ms-grid-row-align: start;
|
|
16953
16955
|
}
|
|
@@ -17092,7 +17094,7 @@ $progressbar-chunk-border: $component-bg !default;
|
|
|
17092
17094
|
$progressbar-gradient
|
|
17093
17095
|
);
|
|
17094
17096
|
|
|
17095
|
-
.k-state-selected
|
|
17097
|
+
.k-state-selected,
|
|
17096
17098
|
.k-selected {
|
|
17097
17099
|
@include fill(
|
|
17098
17100
|
$progressbar-fill-text,
|
|
@@ -17457,7 +17459,7 @@ $kendo-radio-ripple-opacity: .2 !default;
|
|
|
17457
17459
|
}
|
|
17458
17460
|
|
|
17459
17461
|
.k-radio:focus,
|
|
17460
|
-
.k-radio.k-state-focus
|
|
17462
|
+
.k-radio.k-state-focus,
|
|
17461
17463
|
.k-radio.k-focus {
|
|
17462
17464
|
box-shadow: none !important; // sass-lint:disable-line no-important
|
|
17463
17465
|
|
|
@@ -17530,7 +17532,7 @@ $kendo-radio-ripple-opacity: .2 !default;
|
|
|
17530
17532
|
|
|
17531
17533
|
// Hover state
|
|
17532
17534
|
.k-radio:hover,
|
|
17533
|
-
.k-radio.k-state-hover
|
|
17535
|
+
.k-radio.k-state-hover,
|
|
17534
17536
|
.k-radio.k-hover {
|
|
17535
17537
|
@include fill(
|
|
17536
17538
|
$kendo-radio-hover-text,
|
|
@@ -17542,7 +17544,7 @@ $kendo-radio-ripple-opacity: .2 !default;
|
|
|
17542
17544
|
|
|
17543
17545
|
// Focus state
|
|
17544
17546
|
.k-radio:focus,
|
|
17545
|
-
.k-radio.k-state-focus
|
|
17547
|
+
.k-radio.k-state-focus,
|
|
17546
17548
|
.k-radio.k-focus {
|
|
17547
17549
|
@include fill( $border: $kendo-radio-focus-border );
|
|
17548
17550
|
@include box-shadow( $kendo-radio-focus-shadow );
|
|
@@ -17574,7 +17576,7 @@ $kendo-radio-ripple-opacity: .2 !default;
|
|
|
17574
17576
|
);
|
|
17575
17577
|
}
|
|
17576
17578
|
.k-radio:checked:focus,
|
|
17577
|
-
.k-radio.k-checked.k-state-focus
|
|
17579
|
+
.k-radio.k-checked.k-state-focus,
|
|
17578
17580
|
.k-radio.k-checked.k-focus {
|
|
17579
17581
|
@include fill( $border: $kendo-radio-focus-checked-border );
|
|
17580
17582
|
@include box-shadow( $kendo-radio-focus-checked-shadow );
|
|
@@ -17748,7 +17750,7 @@ $slider-disabled-opacity: .65 !default;
|
|
|
17748
17750
|
}
|
|
17749
17751
|
|
|
17750
17752
|
|
|
17751
|
-
&.k-state-disabled
|
|
17753
|
+
&.k-state-disabled,
|
|
17752
17754
|
&.k-disabled {
|
|
17753
17755
|
.k-tick,
|
|
17754
17756
|
.k-slider-track,
|
|
@@ -18254,20 +18256,20 @@ $slider-disabled-opacity: .65 !default;
|
|
|
18254
18256
|
}
|
|
18255
18257
|
|
|
18256
18258
|
&:focus,
|
|
18257
|
-
&.k-state-focused
|
|
18259
|
+
&.k-state-focused,
|
|
18258
18260
|
&.k-focus {
|
|
18259
18261
|
@include box-shadow( $slider-draghandle-focused-shadow );
|
|
18260
18262
|
}
|
|
18261
18263
|
}
|
|
18262
18264
|
|
|
18263
|
-
&.k-state-focused
|
|
18265
|
+
&.k-state-focused,
|
|
18264
18266
|
&.k-focus {
|
|
18265
18267
|
.k-draghandle {
|
|
18266
18268
|
@include box-shadow( $slider-draghandle-focused-shadow );
|
|
18267
18269
|
}
|
|
18268
18270
|
}
|
|
18269
18271
|
|
|
18270
|
-
&.k-state-disabled
|
|
18272
|
+
&.k-state-disabled,
|
|
18271
18273
|
&.k-disabled {
|
|
18272
18274
|
opacity: $slider-disabled-opacity;
|
|
18273
18275
|
}
|
|
@@ -18306,7 +18308,7 @@ $slider-disabled-opacity: .65 !default;
|
|
|
18306
18308
|
}
|
|
18307
18309
|
}
|
|
18308
18310
|
|
|
18309
|
-
&.k-state-disabled
|
|
18311
|
+
&.k-state-disabled,
|
|
18310
18312
|
&.k-disabled {
|
|
18311
18313
|
opacity: 1;
|
|
18312
18314
|
|
|
@@ -18856,7 +18858,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18856
18858
|
}
|
|
18857
18859
|
|
|
18858
18860
|
// // styles are applied to the k-link element inside
|
|
18859
|
-
// .k-state-selected
|
|
18861
|
+
// .k-state-selected,
|
|
18860
18862
|
// .k-selected {
|
|
18861
18863
|
// color: inherit;
|
|
18862
18864
|
// background: transparent;
|
|
@@ -18882,6 +18884,10 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
18882
18884
|
&::after {
|
|
18883
18885
|
display: none;
|
|
18884
18886
|
}
|
|
18887
|
+
|
|
18888
|
+
&:focus {
|
|
18889
|
+
outline: 0;
|
|
18890
|
+
}
|
|
18885
18891
|
}
|
|
18886
18892
|
|
|
18887
18893
|
.k-range-start {
|
|
@@ -19246,7 +19252,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19246
19252
|
|
|
19247
19253
|
.k-calendar {
|
|
19248
19254
|
|
|
19249
|
-
.k-state-focused .k-link
|
|
19255
|
+
.k-state-focused .k-link,
|
|
19250
19256
|
.k-focus .k-link {
|
|
19251
19257
|
@include fill(
|
|
19252
19258
|
$calendar-cell-hover-text,
|
|
@@ -19254,7 +19260,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19254
19260
|
$calendar-cell-hover-border
|
|
19255
19261
|
);
|
|
19256
19262
|
}
|
|
19257
|
-
.k-state-selected.k-state-focused .k-link
|
|
19263
|
+
.k-state-selected.k-state-focused .k-link,
|
|
19258
19264
|
.k-selected.k-focused .k-link {
|
|
19259
19265
|
@include fill(
|
|
19260
19266
|
$calendar-cell-selected-text,
|
|
@@ -19427,7 +19433,7 @@ $time-list-focused-bg: null !default;
|
|
|
19427
19433
|
display: block;
|
|
19428
19434
|
}
|
|
19429
19435
|
|
|
19430
|
-
&.k-state-focused
|
|
19436
|
+
&.k-state-focused,
|
|
19431
19437
|
&.k-focus {
|
|
19432
19438
|
&::before,
|
|
19433
19439
|
&::after {
|
|
@@ -19572,7 +19578,7 @@ $time-list-focused-bg: null !default;
|
|
|
19572
19578
|
color: $time-list-title-text;
|
|
19573
19579
|
}
|
|
19574
19580
|
|
|
19575
|
-
&.k-state-focused
|
|
19581
|
+
&.k-state-focused,
|
|
19576
19582
|
&.k-focus {
|
|
19577
19583
|
.k-title {
|
|
19578
19584
|
color: $time-list-title-focus-text;
|
|
@@ -19919,7 +19925,7 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
19919
19925
|
&.k-focus,
|
|
19920
19926
|
&.k-state-selected,
|
|
19921
19927
|
&.k-selected,
|
|
19922
|
-
&.k-state-selected:hover
|
|
19928
|
+
&.k-state-selected:hover,
|
|
19923
19929
|
&.k-selected:hover {
|
|
19924
19930
|
position: relative;
|
|
19925
19931
|
z-index: 100;
|
|
@@ -21983,7 +21989,7 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
21983
21989
|
color: $component-text;
|
|
21984
21990
|
|
|
21985
21991
|
&:focus,
|
|
21986
|
-
&.k-state-focused
|
|
21992
|
+
&.k-state-focused,
|
|
21987
21993
|
&.k-focus {
|
|
21988
21994
|
|
|
21989
21995
|
.k-rating-item {
|
|
@@ -21991,7 +21997,7 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
21991
21997
|
text-shadow: $rating-icon-focused-shadow;
|
|
21992
21998
|
}
|
|
21993
21999
|
|
|
21994
|
-
&.k-state-selected > .k-icon
|
|
22000
|
+
&.k-state-selected > .k-icon,
|
|
21995
22001
|
&.k-selected > .k-icon {
|
|
21996
22002
|
text-shadow: $rating-icon-focused-selected-shadow;
|
|
21997
22003
|
}
|
|
@@ -22002,19 +22008,19 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
22002
22008
|
.k-rating-item {
|
|
22003
22009
|
color: $rating-icon-text;
|
|
22004
22010
|
|
|
22005
|
-
&.k-state-selected
|
|
22011
|
+
&.k-state-selected,
|
|
22006
22012
|
&.k-selected {
|
|
22007
22013
|
color: $rating-icon-selected-text;
|
|
22008
22014
|
|
|
22009
22015
|
&:focus,
|
|
22010
|
-
&.k-state-focused
|
|
22016
|
+
&.k-state-focused,
|
|
22011
22017
|
&.k-focus {
|
|
22012
22018
|
color: $rating-icon-focused-text;
|
|
22013
22019
|
}
|
|
22014
22020
|
}
|
|
22015
22021
|
|
|
22016
22022
|
&:hover,
|
|
22017
|
-
&.k-state-hover
|
|
22023
|
+
&.k-state-hover,
|
|
22018
22024
|
&.k-hover {
|
|
22019
22025
|
color: $rating-icon-hover-text;
|
|
22020
22026
|
cursor: pointer;
|
|
@@ -23308,7 +23314,7 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
23308
23314
|
z-index: 1;
|
|
23309
23315
|
}
|
|
23310
23316
|
input[disabled],
|
|
23311
|
-
input.k-state-disabled
|
|
23317
|
+
input.k-state-disabled,
|
|
23312
23318
|
input.k-disabled {
|
|
23313
23319
|
visibility: hidden;
|
|
23314
23320
|
}
|
|
@@ -23356,12 +23362,12 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
23356
23362
|
|
|
23357
23363
|
.k-file {
|
|
23358
23364
|
|
|
23359
|
-
&.k-state-focused
|
|
23365
|
+
&.k-state-focused,
|
|
23360
23366
|
&.k-focus {
|
|
23361
23367
|
box-shadow: inset $upload-focused-shadow;
|
|
23362
23368
|
}
|
|
23363
23369
|
|
|
23364
|
-
.k-upload-action.k-state-focused
|
|
23370
|
+
.k-upload-action.k-state-focused,
|
|
23365
23371
|
.k-upload-action.k-focus {
|
|
23366
23372
|
box-shadow: $upload-focused-shadow;
|
|
23367
23373
|
}
|
|
@@ -24439,7 +24445,7 @@ $actionsheet-item-disabled-opacity: .42 !default;
|
|
|
24439
24445
|
|
|
24440
24446
|
// Hover state
|
|
24441
24447
|
&:hover,
|
|
24442
|
-
&.k-state-hover
|
|
24448
|
+
&.k-state-hover,
|
|
24443
24449
|
&.k-hover {
|
|
24444
24450
|
@include fill(
|
|
24445
24451
|
$actionsheet-item-hover-text,
|
|
@@ -24453,7 +24459,7 @@ $actionsheet-item-disabled-opacity: .42 !default;
|
|
|
24453
24459
|
|
|
24454
24460
|
// Focus state
|
|
24455
24461
|
&:focus,
|
|
24456
|
-
&.k-state-focus
|
|
24462
|
+
&.k-state-focus,
|
|
24457
24463
|
&.k-focus {
|
|
24458
24464
|
@include fill(
|
|
24459
24465
|
$actionsheet-item-focus-text,
|
|
@@ -24467,7 +24473,7 @@ $actionsheet-item-disabled-opacity: .42 !default;
|
|
|
24467
24473
|
|
|
24468
24474
|
// Disabed state
|
|
24469
24475
|
&:disabled,
|
|
24470
|
-
&.k-state-disabled
|
|
24476
|
+
&.k-state-disabled,
|
|
24471
24477
|
&.k-disabled {
|
|
24472
24478
|
@include fill(
|
|
24473
24479
|
$actionsheet-item-disabled-text,
|
|
@@ -24721,7 +24727,7 @@ $actionsheet-item-disabled-opacity: .42 !default;
|
|
|
24721
24727
|
|
|
24722
24728
|
.k-window {
|
|
24723
24729
|
&:focus,
|
|
24724
|
-
&.k-state-focused
|
|
24730
|
+
&.k-state-focused,
|
|
24725
24731
|
&.k-focus {
|
|
24726
24732
|
@include box-shadow( $window-focused-shadow );
|
|
24727
24733
|
}
|
|
@@ -25261,33 +25267,33 @@ $drawer-selected-hover-text: $secondary !default;
|
|
|
25261
25267
|
.k-drawer-item {
|
|
25262
25268
|
|
|
25263
25269
|
&:hover,
|
|
25264
|
-
&.k-state-hover
|
|
25270
|
+
&.k-state-hover,
|
|
25265
25271
|
&.k-hover {
|
|
25266
25272
|
color: $drawer-hovered-text;
|
|
25267
25273
|
background-color: $drawer-hovered-bg;
|
|
25268
25274
|
}
|
|
25269
25275
|
|
|
25270
25276
|
&:focus,
|
|
25271
|
-
&.k-state-focused
|
|
25277
|
+
&.k-state-focused,
|
|
25272
25278
|
&.k-focus {
|
|
25273
25279
|
background-color: $drawer-focused-bg;
|
|
25274
25280
|
box-shadow: $drawer-focused-shadow;
|
|
25275
25281
|
|
|
25276
25282
|
&:hover,
|
|
25277
|
-
&.k-state-hover
|
|
25283
|
+
&.k-state-hover,
|
|
25278
25284
|
&.k-hover {
|
|
25279
25285
|
color: $drawer-hovered-text;
|
|
25280
25286
|
background-color: $drawer-hovered-bg;
|
|
25281
25287
|
}
|
|
25282
25288
|
}
|
|
25283
25289
|
|
|
25284
|
-
&.k-state-selected
|
|
25290
|
+
&.k-state-selected,
|
|
25285
25291
|
&.k-selected {
|
|
25286
25292
|
color: $drawer-selected-text;
|
|
25287
25293
|
background-color: $drawer-selected-bg;
|
|
25288
25294
|
|
|
25289
25295
|
&:hover,
|
|
25290
|
-
&.k-state-hover
|
|
25296
|
+
&.k-state-hover,
|
|
25291
25297
|
&.k-hover {
|
|
25292
25298
|
color: $drawer-selected-hover-text;
|
|
25293
25299
|
background-color: $drawer-selected-hover-bg;
|
|
@@ -25304,11 +25310,11 @@ $drawer-selected-hover-text: $secondary !default;
|
|
|
25304
25310
|
|
|
25305
25311
|
@include exports( "drawer/theme/material" ) {
|
|
25306
25312
|
.k-drawer-item {
|
|
25307
|
-
&.k-state-selected
|
|
25313
|
+
&.k-state-selected,
|
|
25308
25314
|
&.k-selected {
|
|
25309
25315
|
|
|
25310
25316
|
&:focus,
|
|
25311
|
-
&.k-state-focused
|
|
25317
|
+
&.k-state-focused,
|
|
25312
25318
|
&.k-focus {
|
|
25313
25319
|
background-color: $drawer-focused-bg;
|
|
25314
25320
|
box-shadow: $drawer-focused-shadow;
|
|
@@ -26561,7 +26567,7 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
26561
26567
|
outline: 0;
|
|
26562
26568
|
}
|
|
26563
26569
|
}
|
|
26564
|
-
.k-bottom-nav-item.k-state-disabled
|
|
26570
|
+
.k-bottom-nav-item.k-state-disabled,
|
|
26565
26571
|
.k-bottom-nav-item.k-disabled {
|
|
26566
26572
|
background-color: initial;
|
|
26567
26573
|
}
|
|
@@ -26616,7 +26622,7 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
26616
26622
|
@include fill( $bg: rgba(true-mix( $color, contrast-wcag( $color ), 35%), .2));
|
|
26617
26623
|
}
|
|
26618
26624
|
|
|
26619
|
-
.k-bottom-nav-item.k-state-selected
|
|
26625
|
+
.k-bottom-nav-item.k-state-selected,
|
|
26620
26626
|
.k-bottom-nav-item.k-selected {
|
|
26621
26627
|
@include fill( $color: contrast-wcag( $color ) );
|
|
26622
26628
|
}
|
|
@@ -26640,7 +26646,7 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
26640
26646
|
}
|
|
26641
26647
|
|
|
26642
26648
|
@each $name, $color in $kendo-theme-colors {
|
|
26643
|
-
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected
|
|
26649
|
+
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected,
|
|
26644
26650
|
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-selected {
|
|
26645
26651
|
@if $name == "secondary" or $name == "light" {
|
|
26646
26652
|
@include fill( $color: try-shade($color, 3) );
|
|
@@ -26901,7 +26907,7 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
26901
26907
|
);
|
|
26902
26908
|
|
|
26903
26909
|
&:focus,
|
|
26904
|
-
&.k-state-focused
|
|
26910
|
+
&.k-state-focused,
|
|
26905
26911
|
&.k-focus {
|
|
26906
26912
|
@include box-shadow( $breadcrumb-focused-shadow );
|
|
26907
26913
|
}
|
|
@@ -26918,7 +26924,7 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
26918
26924
|
|
|
26919
26925
|
// Hovered state
|
|
26920
26926
|
&:hover,
|
|
26921
|
-
&.k-state-hover
|
|
26927
|
+
&.k-state-hover,
|
|
26922
26928
|
&.k-hover {
|
|
26923
26929
|
@include fill(
|
|
26924
26930
|
$breadcrumb-link-hovered-text,
|
|
@@ -26929,7 +26935,7 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
26929
26935
|
|
|
26930
26936
|
// Focused state
|
|
26931
26937
|
&:focus,
|
|
26932
|
-
&.k-state-focused
|
|
26938
|
+
&.k-state-focused,
|
|
26933
26939
|
&.k-focus {
|
|
26934
26940
|
@include fill(
|
|
26935
26941
|
$breadcrumb-link-focused-text,
|
|
@@ -26951,7 +26957,7 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
26951
26957
|
|
|
26952
26958
|
// Hovered state
|
|
26953
26959
|
&:hover,
|
|
26954
|
-
&.k-state-hover
|
|
26960
|
+
&.k-state-hover,
|
|
26955
26961
|
&.k-hover {
|
|
26956
26962
|
@include fill(
|
|
26957
26963
|
$breadcrumb-root-link-hovered-text,
|
|
@@ -26962,7 +26968,7 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
26962
26968
|
|
|
26963
26969
|
// Focused state
|
|
26964
26970
|
&:focus,
|
|
26965
|
-
&.k-state-focused
|
|
26971
|
+
&.k-state-focused,
|
|
26966
26972
|
&.k-focus {
|
|
26967
26973
|
@include fill(
|
|
26968
26974
|
$breadcrumb-root-link-focused-text,
|
|
@@ -27111,7 +27117,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27111
27117
|
|
|
27112
27118
|
// Focused state
|
|
27113
27119
|
&:focus,
|
|
27114
|
-
&.k-state-focus
|
|
27120
|
+
&.k-state-focus,
|
|
27115
27121
|
&.k-focus {
|
|
27116
27122
|
z-index: 3;
|
|
27117
27123
|
}
|
|
@@ -27161,7 +27167,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27161
27167
|
&:hover {
|
|
27162
27168
|
z-index: 2;
|
|
27163
27169
|
}
|
|
27164
|
-
&.k-state-disabled
|
|
27170
|
+
&.k-state-disabled,
|
|
27165
27171
|
&.k-disabled {
|
|
27166
27172
|
color: inherit;
|
|
27167
27173
|
}
|
|
@@ -27211,7 +27217,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27211
27217
|
}
|
|
27212
27218
|
|
|
27213
27219
|
// Selected state
|
|
27214
|
-
.k-state-selected
|
|
27220
|
+
.k-state-selected,
|
|
27215
27221
|
.k-selected {
|
|
27216
27222
|
cursor: inherit;
|
|
27217
27223
|
z-index: 2;
|
|
@@ -27378,7 +27384,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27378
27384
|
&:focus,
|
|
27379
27385
|
&.k-focus,
|
|
27380
27386
|
&.k-state-focus,
|
|
27381
|
-
&.k-state-focused
|
|
27387
|
+
&.k-state-focused,
|
|
27382
27388
|
&.k-focus {
|
|
27383
27389
|
@include fill( $bg: $pager-focus-bg );
|
|
27384
27390
|
@include box-shadow( $pager-focus-shadow );
|
|
@@ -27394,7 +27400,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27394
27400
|
);
|
|
27395
27401
|
|
|
27396
27402
|
&:hover,
|
|
27397
|
-
&.k-state-hover
|
|
27403
|
+
&.k-state-hover,
|
|
27398
27404
|
&.k-hover {
|
|
27399
27405
|
@include fill(
|
|
27400
27406
|
$pager-item-hover-text,
|
|
@@ -27403,7 +27409,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27403
27409
|
);
|
|
27404
27410
|
}
|
|
27405
27411
|
|
|
27406
|
-
&.k-state-selected
|
|
27412
|
+
&.k-state-selected,
|
|
27407
27413
|
&.k-selected {
|
|
27408
27414
|
@include fill(
|
|
27409
27415
|
$pager-item-selected-text,
|
|
@@ -27413,7 +27419,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27413
27419
|
}
|
|
27414
27420
|
|
|
27415
27421
|
&:focus,
|
|
27416
|
-
&.k-state-focus
|
|
27422
|
+
&.k-state-focus,
|
|
27417
27423
|
&.k-focus {
|
|
27418
27424
|
background-color: $pager-item-focus-bg;
|
|
27419
27425
|
@include box-shadow( $pager-item-focus-shadow );
|
|
@@ -27437,7 +27443,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27437
27443
|
);
|
|
27438
27444
|
|
|
27439
27445
|
&:hover,
|
|
27440
|
-
&.k-state-hover
|
|
27446
|
+
&.k-state-hover,
|
|
27441
27447
|
&.k-hover {
|
|
27442
27448
|
@include fill(
|
|
27443
27449
|
$pager-number-hover-text,
|
|
@@ -27447,13 +27453,13 @@ $pager-dropdown-width: 5em !default;
|
|
|
27447
27453
|
}
|
|
27448
27454
|
|
|
27449
27455
|
&:focus,
|
|
27450
|
-
&.k-state-focus
|
|
27456
|
+
&.k-state-focus,
|
|
27451
27457
|
&.k-focus {
|
|
27452
27458
|
background-color: $pager-number-focus-bg;
|
|
27453
27459
|
@include box-shadow( $pager-number-focus-shadow );
|
|
27454
27460
|
}
|
|
27455
27461
|
|
|
27456
|
-
&.k-state-selected
|
|
27462
|
+
&.k-state-selected,
|
|
27457
27463
|
&.k-selected {
|
|
27458
27464
|
@include fill(
|
|
27459
27465
|
$pager-number-selected-text,
|
|
@@ -27486,7 +27492,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27486
27492
|
);
|
|
27487
27493
|
|
|
27488
27494
|
&:hover,
|
|
27489
|
-
&.k-state-hover
|
|
27495
|
+
&.k-state-hover,
|
|
27490
27496
|
&.k-hover {
|
|
27491
27497
|
@include fill(
|
|
27492
27498
|
$dropdownlist-hovered-text,
|
|
@@ -27507,7 +27513,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27507
27513
|
.k-link {
|
|
27508
27514
|
|
|
27509
27515
|
&:hover,
|
|
27510
|
-
&.k-state-hover
|
|
27516
|
+
&.k-state-hover,
|
|
27511
27517
|
&.k-hover {
|
|
27512
27518
|
@include fill(
|
|
27513
27519
|
$kendo-list-item-hover-text,
|
|
@@ -27515,7 +27521,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27515
27521
|
);
|
|
27516
27522
|
}
|
|
27517
27523
|
|
|
27518
|
-
&.k-state-selected
|
|
27524
|
+
&.k-state-selected,
|
|
27519
27525
|
&.k-selected {
|
|
27520
27526
|
@include fill(
|
|
27521
27527
|
$kendo-list-item-selected-text,
|
|
@@ -27802,7 +27808,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
27802
27808
|
opacity: $stepper-optional-label-opacity;
|
|
27803
27809
|
}
|
|
27804
27810
|
.k-step-disabled .k-step-label-optional,
|
|
27805
|
-
&.k-state-disabled .k-step-label-optional
|
|
27811
|
+
&.k-state-disabled .k-step-label-optional,
|
|
27806
27812
|
&.k-disabled .k-step-label-optional {
|
|
27807
27813
|
color: inherit;
|
|
27808
27814
|
}
|
|
@@ -28135,7 +28141,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
28135
28141
|
$bg: $stepper-progressbar-bg
|
|
28136
28142
|
);
|
|
28137
28143
|
|
|
28138
|
-
.k-state-selected
|
|
28144
|
+
.k-state-selected,
|
|
28139
28145
|
.k-selected {
|
|
28140
28146
|
@include fill(
|
|
28141
28147
|
$color: $stepper-progressbar-fill-text,
|
|
@@ -28386,13 +28392,13 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28386
28392
|
position: relative;
|
|
28387
28393
|
z-index: 1;
|
|
28388
28394
|
|
|
28389
|
-
&.k-state-active
|
|
28395
|
+
&.k-state-active,
|
|
28390
28396
|
&.k-active {
|
|
28391
28397
|
display: block;
|
|
28392
28398
|
}
|
|
28393
28399
|
|
|
28394
28400
|
&:focus,
|
|
28395
|
-
&.k-state-focused
|
|
28401
|
+
&.k-state-focused,
|
|
28396
28402
|
&.k-focus {
|
|
28397
28403
|
outline-width: 1px;
|
|
28398
28404
|
outline-style: dotted;
|
|
@@ -28481,7 +28487,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28481
28487
|
margin-left: $tabstrip-item-gap;
|
|
28482
28488
|
}
|
|
28483
28489
|
|
|
28484
|
-
.k-item.k-state-active
|
|
28490
|
+
.k-item.k-state-active,
|
|
28485
28491
|
.k-item.k-active {
|
|
28486
28492
|
border-bottom-color: transparent;
|
|
28487
28493
|
}
|
|
@@ -28511,7 +28517,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28511
28517
|
margin-left: $tabstrip-item-gap;
|
|
28512
28518
|
}
|
|
28513
28519
|
|
|
28514
|
-
.k-item.k-state-active
|
|
28520
|
+
.k-item.k-state-active,
|
|
28515
28521
|
.k-item.k-active {
|
|
28516
28522
|
border-top-color: transparent;
|
|
28517
28523
|
}
|
|
@@ -28545,7 +28551,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28545
28551
|
margin-top: $tabstrip-item-gap;
|
|
28546
28552
|
}
|
|
28547
28553
|
|
|
28548
|
-
.k-item.k-state-active
|
|
28554
|
+
.k-item.k-state-active,
|
|
28549
28555
|
.k-item.k-active {
|
|
28550
28556
|
border-right-color: transparent;
|
|
28551
28557
|
}
|
|
@@ -28581,7 +28587,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28581
28587
|
margin-top: $tabstrip-item-gap;
|
|
28582
28588
|
}
|
|
28583
28589
|
|
|
28584
|
-
.k-item.k-state-active
|
|
28590
|
+
.k-item.k-state-active,
|
|
28585
28591
|
.k-item.k-active {
|
|
28586
28592
|
border-left-color: transparent;
|
|
28587
28593
|
}
|
|
@@ -28627,7 +28633,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28627
28633
|
border-left-width: $tabstrip-indicator-size;
|
|
28628
28634
|
}
|
|
28629
28635
|
}
|
|
28630
|
-
.k-item.k-state-active::after
|
|
28636
|
+
.k-item.k-state-active::after,
|
|
28631
28637
|
.k-item.k-active::after {
|
|
28632
28638
|
display: block;
|
|
28633
28639
|
}
|
|
@@ -28722,7 +28728,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28722
28728
|
);
|
|
28723
28729
|
|
|
28724
28730
|
&:hover,
|
|
28725
|
-
&.k-state-hover
|
|
28731
|
+
&.k-state-hover,
|
|
28726
28732
|
&.k-hover {
|
|
28727
28733
|
@include fill(
|
|
28728
28734
|
$tabstrip-item-hovered-text,
|
|
@@ -28735,7 +28741,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28735
28741
|
&:active,
|
|
28736
28742
|
&.k-state-active,
|
|
28737
28743
|
&.k-active,
|
|
28738
|
-
&.k-state-selected
|
|
28744
|
+
&.k-state-selected,
|
|
28739
28745
|
&.k-selected {
|
|
28740
28746
|
@include fill(
|
|
28741
28747
|
$tabstrip-item-selected-text,
|
|
@@ -28746,7 +28752,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28746
28752
|
}
|
|
28747
28753
|
|
|
28748
28754
|
&:focus,
|
|
28749
|
-
&.k-state-focused
|
|
28755
|
+
&.k-state-focused,
|
|
28750
28756
|
&.k-focus {
|
|
28751
28757
|
@include box-shadow( $tabstrip-item-focused-shadow );
|
|
28752
28758
|
}
|
|
@@ -28769,7 +28775,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28769
28775
|
);
|
|
28770
28776
|
|
|
28771
28777
|
&:focus,
|
|
28772
|
-
&.k-state-focused
|
|
28778
|
+
&.k-state-focused,
|
|
28773
28779
|
&.k-focus {
|
|
28774
28780
|
outline-color: $tabstrip-content-border-focused;
|
|
28775
28781
|
}
|
|
@@ -28780,7 +28786,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28780
28786
|
@if ($tabstrip-indicator-size) {
|
|
28781
28787
|
|
|
28782
28788
|
.k-tabstrip-items-wrapper {
|
|
28783
|
-
.k-item.k-state-active::after
|
|
28789
|
+
.k-item.k-state-active::after,
|
|
28784
28790
|
.k-item.k-active::after {
|
|
28785
28791
|
border-color: $tabstrip-indicator-color;
|
|
28786
28792
|
}
|
|
@@ -28886,7 +28892,7 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
28886
28892
|
justify-content: space-between;
|
|
28887
28893
|
|
|
28888
28894
|
&:focus,
|
|
28889
|
-
&.k-state-focused
|
|
28895
|
+
&.k-state-focused,
|
|
28890
28896
|
&.k-focus {
|
|
28891
28897
|
outline-width: 1px;
|
|
28892
28898
|
outline-style: dotted;
|
|
@@ -28983,13 +28989,13 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
28983
28989
|
@include exports("wizard/theme") {
|
|
28984
28990
|
.k-wizard-step {
|
|
28985
28991
|
&:focus,
|
|
28986
|
-
&.k-state-focused
|
|
28992
|
+
&.k-state-focused,
|
|
28987
28993
|
&.k-focus {
|
|
28988
28994
|
outline-color: $wizard-step-border-focused;
|
|
28989
28995
|
}
|
|
28990
28996
|
|
|
28991
28997
|
.k-ie &:focus,
|
|
28992
|
-
.k-ie &.k-state-focused
|
|
28998
|
+
.k-ie &.k-state-focused,
|
|
28993
28999
|
.k-ie &.k-focus {
|
|
28994
29000
|
@include box-shadow($wizard-focused-shadow);
|
|
28995
29001
|
outline: none;
|
|
@@ -29160,7 +29166,7 @@ $expander-content-padding-y: $padding-y * 6 !default;
|
|
|
29160
29166
|
$expander-border
|
|
29161
29167
|
);
|
|
29162
29168
|
|
|
29163
|
-
&.k-state-focus
|
|
29169
|
+
&.k-state-focus,
|
|
29164
29170
|
&.k-focus {
|
|
29165
29171
|
box-shadow: $expander-focus-shadow;
|
|
29166
29172
|
}
|
|
@@ -29175,13 +29181,13 @@ $expander-content-padding-y: $padding-y * 6 !default;
|
|
|
29175
29181
|
outline: none;
|
|
29176
29182
|
|
|
29177
29183
|
&:hover,
|
|
29178
|
-
&.k-state-hover
|
|
29184
|
+
&.k-state-hover,
|
|
29179
29185
|
&.k-hover {
|
|
29180
29186
|
background-color: $expander-header-hover-bg;
|
|
29181
29187
|
}
|
|
29182
29188
|
|
|
29183
29189
|
// Should be removed
|
|
29184
|
-
&.k-state-focused
|
|
29190
|
+
&.k-state-focused,
|
|
29185
29191
|
&.k-focus {
|
|
29186
29192
|
background-color: $expander-header-focused-bg;
|
|
29187
29193
|
box-shadow: $expander-header-focused-shadow;
|
|
@@ -29555,7 +29561,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29555
29561
|
|
|
29556
29562
|
// Hover
|
|
29557
29563
|
> .k-link:hover,
|
|
29558
|
-
> .k-link.k-state-hover
|
|
29564
|
+
> .k-link.k-state-hover,
|
|
29559
29565
|
> .k-link.k-hover {
|
|
29560
29566
|
@include fill(
|
|
29561
29567
|
$panelbar-header-hovered-text,
|
|
@@ -29569,7 +29575,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29569
29575
|
> .k-link:focus,
|
|
29570
29576
|
> .k-link.k-state-focus,
|
|
29571
29577
|
> .k-link.k-focus,
|
|
29572
|
-
> .k-link.k-state-focused
|
|
29578
|
+
> .k-link.k-state-focused,
|
|
29573
29579
|
> .k-link.k-focus {
|
|
29574
29580
|
@include fill(
|
|
29575
29581
|
$panelbar-header-focused-text,
|
|
@@ -29582,7 +29588,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29582
29588
|
|
|
29583
29589
|
// Focus & Hover
|
|
29584
29590
|
> .k-link:focus:hover,
|
|
29585
|
-
> .k-link.k-state-focus.k-state-hover
|
|
29591
|
+
> .k-link.k-state-focus.k-state-hover,
|
|
29586
29592
|
> .k-link.k-focus.k-hover {
|
|
29587
29593
|
@include fill(
|
|
29588
29594
|
$panelbar-header-hovered-focused-text,
|
|
@@ -29593,7 +29599,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29593
29599
|
}
|
|
29594
29600
|
|
|
29595
29601
|
// Selected
|
|
29596
|
-
> .k-link.k-state-selected
|
|
29602
|
+
> .k-link.k-state-selected,
|
|
29597
29603
|
> .k-link.k-selected {
|
|
29598
29604
|
@include fill(
|
|
29599
29605
|
$panelbar-header-selected-text,
|
|
@@ -29611,7 +29617,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29611
29617
|
// Selected Hover
|
|
29612
29618
|
> .k-link.k-state-selected:hover,
|
|
29613
29619
|
> .k-link.k-selected:hover,
|
|
29614
|
-
> .k-link.k-state-selected.k-state-hover
|
|
29620
|
+
> .k-link.k-state-selected.k-state-hover,
|
|
29615
29621
|
> .k-link.k-selected.k-hover {
|
|
29616
29622
|
@include fill(
|
|
29617
29623
|
$panelbar-header-selected-hovered-text,
|
|
@@ -29626,7 +29632,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29626
29632
|
> .k-link.k-selected:focus,
|
|
29627
29633
|
> .k-link.k-state-selected.k-state-focus,
|
|
29628
29634
|
> .k-link.k-selected.k-focus,
|
|
29629
|
-
> .k-link.k-state-selected.k-state-focused
|
|
29635
|
+
> .k-link.k-state-selected.k-state-focused,
|
|
29630
29636
|
> .k-link.k-selected.k-focused {
|
|
29631
29637
|
@include fill(
|
|
29632
29638
|
$panelbar-header-selected-focused-text,
|
|
@@ -29641,7 +29647,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29641
29647
|
> .k-link.k-selected:hover:focus,
|
|
29642
29648
|
> .k-link.k-state-selected.k-state-hover.k-state-focus,
|
|
29643
29649
|
> .k-link.k-selected.k-hover.k-state-focus,
|
|
29644
|
-
> .k-link.k-state-selected.k-state-hover.k-state-focused
|
|
29650
|
+
> .k-link.k-state-selected.k-state-hover.k-state-focused,
|
|
29645
29651
|
> .k-link.k-selected.k-hover.k-state-focused {
|
|
29646
29652
|
@include fill(
|
|
29647
29653
|
$panelbar-header-selected-hovered-focused-text,
|
|
@@ -29662,7 +29668,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29662
29668
|
> .k-item > .k-link.k-state-hover,
|
|
29663
29669
|
> .k-item > .k-link.k-hover,
|
|
29664
29670
|
> .k-panelbar-item > .k-link:hover,
|
|
29665
|
-
> .k-panelbar-item > .k-link.k-state-hover
|
|
29671
|
+
> .k-panelbar-item > .k-link.k-state-hover,
|
|
29666
29672
|
> .k-panelbar-item > .k-link.k-hover {
|
|
29667
29673
|
@include fill(
|
|
29668
29674
|
$panelbar-item-hovered-text,
|
|
@@ -29681,7 +29687,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29681
29687
|
> .k-panelbar-item > .k-link:focus,
|
|
29682
29688
|
> .k-panelbar-item > .k-link.k-state-focus,
|
|
29683
29689
|
> .k-panelbar-item > .k-link.k-focus,
|
|
29684
|
-
> .k-panelbar-item > .k-link.k-state-focused
|
|
29690
|
+
> .k-panelbar-item > .k-link.k-state-focused,
|
|
29685
29691
|
> .k-panelbar-item > .k-link.k-focus {
|
|
29686
29692
|
@include fill(
|
|
29687
29693
|
$panelbar-item-focused-text,
|
|
@@ -29697,7 +29703,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29697
29703
|
> .k-item > .k-link.k-state-focus.k-state-hover,
|
|
29698
29704
|
> .k-item > .k-link.k-focus.k-hover,
|
|
29699
29705
|
> .k-panelbar-item > .k-link:focus:hover,
|
|
29700
|
-
> .k-panelbar-item > .k-link.k-state-focus.k-state-hover
|
|
29706
|
+
> .k-panelbar-item > .k-link.k-state-focus.k-state-hover,
|
|
29701
29707
|
> .k-panelbar-item > .k-link.k-focus.k-hover {
|
|
29702
29708
|
@include fill(
|
|
29703
29709
|
$panelbar-item-hovered-focused-text,
|
|
@@ -29710,7 +29716,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29710
29716
|
// Selected
|
|
29711
29717
|
> .k-item > .k-link.k-state-selected,
|
|
29712
29718
|
> .k-item > .k-link.k-selected,
|
|
29713
|
-
> .k-panelbar-item > .k-link.k-state-selected
|
|
29719
|
+
> .k-panelbar-item > .k-link.k-state-selected,
|
|
29714
29720
|
> .k-panelbar-item > .k-link.k-selected {
|
|
29715
29721
|
@include fill(
|
|
29716
29722
|
$panelbar-item-selected-text,
|
|
@@ -29727,7 +29733,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29727
29733
|
> .k-item > .k-link.k-selected.k-hover,
|
|
29728
29734
|
> .k-panelbar-item > .k-link.k-state-selected:hover,
|
|
29729
29735
|
> .k-panelbar-item > .k-link.k-selected:hover,
|
|
29730
|
-
> .k-panelbar-item > .k-link.k-state-selected.k-state-hover
|
|
29736
|
+
> .k-panelbar-item > .k-link.k-state-selected.k-state-hover,
|
|
29731
29737
|
> .k-panelbar-item > .k-link.k-selected.k-hover {
|
|
29732
29738
|
@include fill(
|
|
29733
29739
|
$panelbar-item-selected-hovered-text,
|
|
@@ -29748,7 +29754,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29748
29754
|
> .k-panelbar-item > .k-link.k-selected:focus,
|
|
29749
29755
|
> .k-panelbar-item > .k-link.k-state-selected.k-state-focus,
|
|
29750
29756
|
> .k-panelbar-item > .k-link.k-selected.k-focus,
|
|
29751
|
-
> .k-item > .k-link.k-state-selected.k-state-focused
|
|
29757
|
+
> .k-item > .k-link.k-state-selected.k-state-focused,
|
|
29752
29758
|
> .k-item > .k-link.k-selected.k-focused {
|
|
29753
29759
|
@include fill(
|
|
29754
29760
|
$panelbar-item-selected-focused-text,
|
|
@@ -29769,7 +29775,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29769
29775
|
> .k-panelbar-item > .k-link.k-selected:focus:hover,
|
|
29770
29776
|
> .k-panelbar-item > .k-link.k-state-selected.k-state-focus.k-state-hover,
|
|
29771
29777
|
> .k-panelbar-item > .k-link.k-selected.k-focus.k-state-hover,
|
|
29772
|
-
> .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover
|
|
29778
|
+
> .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover,
|
|
29773
29779
|
> .k-item > .k-link.k-selected.k-focused.k-state-hover {
|
|
29774
29780
|
@include fill(
|
|
29775
29781
|
$panelbar-item-selected-hovered-focused-text,
|
|
@@ -30063,7 +30069,7 @@ $splitbar-selected-text: $primary-contrast !default;
|
|
|
30063
30069
|
.k-splitbar:focus,
|
|
30064
30070
|
.k-splitbar.k-state-focus,
|
|
30065
30071
|
.k-splitbar.k-focus,
|
|
30066
|
-
.k-splitbar.k-state-focused
|
|
30072
|
+
.k-splitbar.k-state-focused,
|
|
30067
30073
|
.k-splitbar.k-focus {
|
|
30068
30074
|
color: $splitbar-selected-text;
|
|
30069
30075
|
background: $splitbar-selected-bg;
|
|
@@ -30176,7 +30182,7 @@ $tilelayout-hint-border: $component-border !default;
|
|
|
30176
30182
|
.k-tilelayout-item:focus,
|
|
30177
30183
|
.k-tilelayout-item.k-focus,
|
|
30178
30184
|
.k-tilelayout-item.k-state-focus,
|
|
30179
|
-
.k-tilelayout-item.k-state-focused
|
|
30185
|
+
.k-tilelayout-item.k-state-focused,
|
|
30180
30186
|
.k-tilelayout-item.k-focus {
|
|
30181
30187
|
@include box-shadow($tilelayout-card-focus-shadow);
|
|
30182
30188
|
}
|
|
@@ -30852,12 +30858,12 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30852
30858
|
|
|
30853
30859
|
.k-column-menu {
|
|
30854
30860
|
|
|
30855
|
-
.k-listgroup-item.k-state-selected
|
|
30861
|
+
.k-listgroup-item.k-state-selected,
|
|
30856
30862
|
.k-listgroup-item.k-selected {
|
|
30857
30863
|
color: $adaptive-grid-sort-text;
|
|
30858
30864
|
background: none;
|
|
30859
30865
|
}
|
|
30860
|
-
.k-listgroup-item.k-state-selected .k-link
|
|
30866
|
+
.k-listgroup-item.k-state-selected .k-link,
|
|
30861
30867
|
.k-listgroup-item.k-selected .k-link {
|
|
30862
30868
|
color: inherit;
|
|
30863
30869
|
}
|
|
@@ -31616,7 +31622,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
31616
31622
|
&.k-i-sort-desc-sm,
|
|
31617
31623
|
&.k-i-sort-asc-sm {
|
|
31618
31624
|
vertical-align: text-top;
|
|
31619
|
-
margin-
|
|
31625
|
+
margin-inline-start: $grid-sorted-icon-spacing;
|
|
31620
31626
|
}
|
|
31621
31627
|
}
|
|
31622
31628
|
|
|
@@ -31626,7 +31632,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
31626
31632
|
height: $icon-size;
|
|
31627
31633
|
font-size: $grid-sorting-index-font-size;
|
|
31628
31634
|
margin-top: $grid-sorting-index-spacing-y;
|
|
31629
|
-
margin-
|
|
31635
|
+
margin-inline-start: $grid-sorting-index-spacing-x;
|
|
31630
31636
|
}
|
|
31631
31637
|
}
|
|
31632
31638
|
|
|
@@ -32027,15 +32033,15 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32027
32033
|
}
|
|
32028
32034
|
|
|
32029
32035
|
.k-header > .k-cell-inner {
|
|
32030
|
-
margin: (-1 * $grid-header-padding-y)
|
|
32036
|
+
margin: (-1 * $grid-header-padding-y) (-1 * $grid-header-padding-x);
|
|
32031
32037
|
}
|
|
32032
32038
|
|
|
32033
32039
|
.k-filterable {
|
|
32034
32040
|
> .k-cell-inner {
|
|
32035
|
-
margin
|
|
32041
|
+
margin-inline-end: calc(-1 * #{$grid-filterable-icon-spacing});
|
|
32036
32042
|
|
|
32037
32043
|
.k-link {
|
|
32038
|
-
padding-
|
|
32044
|
+
padding-inline-end: 0;
|
|
32039
32045
|
}
|
|
32040
32046
|
}
|
|
32041
32047
|
}
|
|
@@ -32074,6 +32080,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32074
32080
|
.k-grid-filter,
|
|
32075
32081
|
.k-header-column-menu {
|
|
32076
32082
|
position: static;
|
|
32083
|
+
margin-inline-end: $grid-header-menu-icon-spacing;
|
|
32077
32084
|
}
|
|
32078
32085
|
|
|
32079
32086
|
.k-grid-filter,
|
|
@@ -32384,28 +32391,6 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32384
32391
|
margin-left: $icon-spacing;
|
|
32385
32392
|
margin-right: 0;
|
|
32386
32393
|
}
|
|
32387
|
-
|
|
32388
|
-
.k-header > .k-cell-inner {
|
|
32389
|
-
margin-right: (-1 * $grid-cell-padding-x);
|
|
32390
|
-
margin-left: calc(-1 * calc( #{$kendo-button-calc-size} - #{$grid-cell-padding-x}));
|
|
32391
|
-
|
|
32392
|
-
.k-sort-order {
|
|
32393
|
-
margin-right: $grid-sorting-index-spacing-x;
|
|
32394
|
-
margin-left: 0;
|
|
32395
|
-
}
|
|
32396
|
-
}
|
|
32397
|
-
|
|
32398
|
-
.k-filterable {
|
|
32399
|
-
> .k-cell-inner {
|
|
32400
|
-
margin-right: (-1 * $grid-cell-padding-x);
|
|
32401
|
-
margin-left: calc(-1 * #{$kendo-button-calc-size});
|
|
32402
|
-
|
|
32403
|
-
.k-link {
|
|
32404
|
-
padding-right: $grid-header-padding-x;
|
|
32405
|
-
padding-left: 0;
|
|
32406
|
-
}
|
|
32407
|
-
}
|
|
32408
|
-
}
|
|
32409
32394
|
}
|
|
32410
32395
|
}
|
|
32411
32396
|
|
|
@@ -32627,9 +32612,9 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32627
32612
|
}
|
|
32628
32613
|
|
|
32629
32614
|
// Hover state
|
|
32630
|
-
tbody
|
|
32631
|
-
tbody
|
|
32632
|
-
tbody
|
|
32615
|
+
tbody>tr:not(.k-detail-row):hover,
|
|
32616
|
+
tbody>tr:not(.k-detail-row).k-state-hover,
|
|
32617
|
+
tbody>tr:not(.k-detail-row).k-hover {
|
|
32633
32618
|
color: $grid-hovered-text;
|
|
32634
32619
|
background-color: $grid-hovered-bg;
|
|
32635
32620
|
}
|
|
@@ -32637,7 +32622,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32637
32622
|
// Selected state
|
|
32638
32623
|
td.k-state-selected,
|
|
32639
32624
|
td.k-selected,
|
|
32640
|
-
tr.k-state-selected > td
|
|
32625
|
+
tr.k-state-selected > td,
|
|
32641
32626
|
tr.k-selected > td {
|
|
32642
32627
|
color: $grid-selected-text;
|
|
32643
32628
|
background-color: $grid-selected-bg;
|
|
@@ -32653,7 +32638,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32653
32638
|
.k-grouping-row > td:focus,
|
|
32654
32639
|
.k-detail-row > td:focus,
|
|
32655
32640
|
.k-group-footer > td:focus,
|
|
32656
|
-
.k-grid-pager.k-state-focused
|
|
32641
|
+
.k-grid-pager.k-state-focused,
|
|
32657
32642
|
.k-grid-pager.k-focus {
|
|
32658
32643
|
box-shadow: $grid-focused-shadow;
|
|
32659
32644
|
}
|
|
@@ -32696,12 +32681,12 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32696
32681
|
}
|
|
32697
32682
|
|
|
32698
32683
|
// Selected state
|
|
32699
|
-
.k-state-selected td
|
|
32684
|
+
.k-state-selected td,
|
|
32700
32685
|
.k-selected td {
|
|
32701
32686
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
32702
32687
|
}
|
|
32703
32688
|
|
|
32704
|
-
.k-state-selected.k-alt td
|
|
32689
|
+
.k-state-selected.k-alt td,
|
|
32705
32690
|
.k-selected.k-alt td {
|
|
32706
32691
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
32707
32692
|
}
|
|
@@ -32709,7 +32694,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32709
32694
|
// Selected hover
|
|
32710
32695
|
.k-state-selected:hover td,
|
|
32711
32696
|
.k-selected:hover td,
|
|
32712
|
-
.k-state-selected.k-state-hover td
|
|
32697
|
+
.k-state-selected.k-state-hover td,
|
|
32713
32698
|
.k-selected.k-hover td {
|
|
32714
32699
|
@include fill( $bg: $grid-sticky-selected-hovered-bg );
|
|
32715
32700
|
}
|
|
@@ -32755,7 +32740,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32755
32740
|
&.k-state-border-down {
|
|
32756
32741
|
box-shadow: inset 0 0 0 2px rgba( 0, 0, 0, .1 );
|
|
32757
32742
|
}
|
|
32758
|
-
&.k-state-active
|
|
32743
|
+
&.k-state-active,
|
|
32759
32744
|
&.k-active {
|
|
32760
32745
|
color: $selected-text;
|
|
32761
32746
|
background-color: $selected-bg;
|
|
@@ -32815,7 +32800,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32815
32800
|
&.k-selected .k-grid-content-sticky,
|
|
32816
32801
|
&.k-state-selected .k-grid-row-sticky,
|
|
32817
32802
|
&.k-selected .k-grid-row-sticky,
|
|
32818
|
-
td.k-grid-content-sticky.k-state-selected
|
|
32803
|
+
td.k-grid-content-sticky.k-state-selected,
|
|
32819
32804
|
td.k-grid-content-sticky.k-selected {
|
|
32820
32805
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
32821
32806
|
}
|
|
@@ -32824,7 +32809,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32824
32809
|
&.k-selected.k-alt .k-grid-content-sticky,
|
|
32825
32810
|
&.k-state-selected.k-alt .k-grid-row-sticky,
|
|
32826
32811
|
&.k-selected.k-alt .k-grid-row-sticky,
|
|
32827
|
-
&.k-alt td.k-grid-content-sticky.k-state-selected
|
|
32812
|
+
&.k-alt td.k-grid-content-sticky.k-state-selected,
|
|
32828
32813
|
&.k-alt td.k-grid-content-sticky.k-selected {
|
|
32829
32814
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
32830
32815
|
}
|
|
@@ -32835,7 +32820,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32835
32820
|
&:hover .k-grid-row-sticky,
|
|
32836
32821
|
&.k-state-hover .k-grid-content-sticky,
|
|
32837
32822
|
&.k-hover .k-grid-content-sticky,
|
|
32838
|
-
&.k-state-hover .k-grid-row-sticky
|
|
32823
|
+
&.k-state-hover .k-grid-row-sticky,
|
|
32839
32824
|
&.k-hover .k-grid-row-sticky {
|
|
32840
32825
|
background-color: $grid-sticky-hovered-bg;
|
|
32841
32826
|
}
|
|
@@ -32852,7 +32837,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32852
32837
|
&.k-selected.k-hover .k-grid-row-sticky,
|
|
32853
32838
|
&:hover td.k-grid-content-sticky.k-state-selected,
|
|
32854
32839
|
&:hover td.k-grid-content-sticky.k-selected,
|
|
32855
|
-
&.k-state-hover td.k-grid-content-sticky.k-state-selected
|
|
32840
|
+
&.k-state-hover td.k-grid-content-sticky.k-state-selected,
|
|
32856
32841
|
&.k-hover td.k-grid-content-sticky.k-selected {
|
|
32857
32842
|
background-color: $grid-sticky-selected-hovered-bg;
|
|
32858
32843
|
}
|
|
@@ -32866,7 +32851,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32866
32851
|
background-color: $grid-sticky-bg;
|
|
32867
32852
|
|
|
32868
32853
|
&:hover,
|
|
32869
|
-
&.k-state-hover
|
|
32854
|
+
&.k-state-hover,
|
|
32870
32855
|
&.k-hover {
|
|
32871
32856
|
background-color: $grid-sticky-hovered-bg;
|
|
32872
32857
|
}
|
|
@@ -32880,7 +32865,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32880
32865
|
}
|
|
32881
32866
|
|
|
32882
32867
|
&:hover td,
|
|
32883
|
-
&.k-state-hover td
|
|
32868
|
+
&.k-state-hover td,
|
|
32884
32869
|
&.k-hover td {
|
|
32885
32870
|
background-color: $grid-sticky-hovered-bg;
|
|
32886
32871
|
}
|
|
@@ -32898,7 +32883,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32898
32883
|
.k-selected.k-grid-row-sticky td,
|
|
32899
32884
|
.k-grid-row-sticky td.k-state-selected,
|
|
32900
32885
|
.k-grid-row-sticky td.k-selected,
|
|
32901
|
-
.k-state-selected.k-grid-content-sticky
|
|
32886
|
+
.k-state-selected.k-grid-content-sticky,
|
|
32902
32887
|
.k-selected.k-grid-content-sticky {
|
|
32903
32888
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
32904
32889
|
}
|
|
@@ -32907,7 +32892,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32907
32892
|
tr.k-selected.k-alt .k-grid-content-sticky,
|
|
32908
32893
|
.k-state-selected.k-alt.k-grid-row-sticky td,
|
|
32909
32894
|
.k-selected.k-alt.k-grid-row-sticky td,
|
|
32910
|
-
.k-alt .k-state-selected.k-grid-content-sticky
|
|
32895
|
+
.k-alt .k-state-selected.k-grid-content-sticky,
|
|
32911
32896
|
.k-alt .k-selected.k-grid-content-sticky {
|
|
32912
32897
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
32913
32898
|
}
|
|
@@ -32923,7 +32908,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32923
32908
|
.k-grid-row-sticky.k-alt.k-state-hover td,
|
|
32924
32909
|
.k-grid-row-sticky.k-alt.k-hover td,
|
|
32925
32910
|
.k-alt:hover .k-grid-content-sticky,
|
|
32926
|
-
.k-alt.k-state-hover .k-grid-content-sticky
|
|
32911
|
+
.k-alt.k-state-hover .k-grid-content-sticky,
|
|
32927
32912
|
.k-alt.k-hover .k-grid-content-sticky {
|
|
32928
32913
|
background-color: $grid-sticky-hovered-bg;
|
|
32929
32914
|
}
|
|
@@ -32951,7 +32936,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32951
32936
|
.k-grid-row-sticky.k-hover td.k-selected,
|
|
32952
32937
|
tr:hover .k-grid-content-sticky.k-state-selected,
|
|
32953
32938
|
tr:hover .k-grid-content-sticky.k-selected,
|
|
32954
|
-
tr.k-state-hover .k-grid-content-sticky.k-state-selected
|
|
32939
|
+
tr.k-state-hover .k-grid-content-sticky.k-state-selected,
|
|
32955
32940
|
tr.k-hover .k-grid-content-sticky.k-selected {
|
|
32956
32941
|
background-color: $grid-sticky-selected-hovered-bg;
|
|
32957
32942
|
}
|
|
@@ -32963,7 +32948,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32963
32948
|
}
|
|
32964
32949
|
|
|
32965
32950
|
&:hover .k-grid-content-sticky,
|
|
32966
|
-
&.k-state-hover .k-grid-content-sticky
|
|
32951
|
+
&.k-state-hover .k-grid-content-sticky,
|
|
32967
32952
|
&.k-hover .k-grid-content-sticky {
|
|
32968
32953
|
@include fill( $bg: $grid-sticky-hovered-bg );
|
|
32969
32954
|
}
|
|
@@ -32977,13 +32962,13 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
32977
32962
|
);
|
|
32978
32963
|
}
|
|
32979
32964
|
.k-columnmenu-item:focus,
|
|
32980
|
-
.k-columnmenu-item.k-state-focus
|
|
32965
|
+
.k-columnmenu-item.k-state-focus,
|
|
32981
32966
|
.k-columnmenu-item.k-focus {
|
|
32982
32967
|
@include box-shadow( $kendo-list-item-focus-shadow );
|
|
32983
32968
|
}
|
|
32984
32969
|
|
|
32985
32970
|
.k-columnmenu-item {
|
|
32986
|
-
&.k-state-selected
|
|
32971
|
+
&.k-state-selected,
|
|
32987
32972
|
&.k-selected {
|
|
32988
32973
|
@include fill(
|
|
32989
32974
|
$kendo-list-item-selected-text,
|
|
@@ -33009,7 +32994,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
33009
32994
|
);
|
|
33010
32995
|
|
|
33011
32996
|
&:hover,
|
|
33012
|
-
&.k-state-hover
|
|
32997
|
+
&.k-state-hover,
|
|
33013
32998
|
&.k-hover {
|
|
33014
32999
|
@include fill(
|
|
33015
33000
|
$kendo-list-item-hover-text,
|
|
@@ -33017,7 +33002,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
33017
33002
|
);
|
|
33018
33003
|
}
|
|
33019
33004
|
|
|
33020
|
-
&.k-state-selected
|
|
33005
|
+
&.k-state-selected,
|
|
33021
33006
|
&.k-selected {
|
|
33022
33007
|
@include fill(
|
|
33023
33008
|
$kendo-list-item-selected-text,
|
|
@@ -33026,7 +33011,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
33026
33011
|
}
|
|
33027
33012
|
|
|
33028
33013
|
&:focus,
|
|
33029
|
-
&.k-state-focused
|
|
33014
|
+
&.k-state-focused,
|
|
33030
33015
|
&.k-focus {
|
|
33031
33016
|
@include box-shadow( $kendo-list-item-focus-shadow );
|
|
33032
33017
|
}
|
|
@@ -33063,12 +33048,12 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
33063
33048
|
// Selected state
|
|
33064
33049
|
td.k-state-selected,
|
|
33065
33050
|
td.k-selected,
|
|
33066
|
-
tr.k-state-selected
|
|
33051
|
+
tr.k-state-selected,
|
|
33067
33052
|
tr.k-selected {
|
|
33068
33053
|
color: $grid-selected-text;
|
|
33069
33054
|
background-color: $grid-selected-bg;
|
|
33070
33055
|
}
|
|
33071
|
-
tr.k-state-selected > td
|
|
33056
|
+
tr.k-state-selected > td,
|
|
33072
33057
|
tr.k-selected > td {
|
|
33073
33058
|
color: inherit;
|
|
33074
33059
|
background-color: transparent;
|
|
@@ -33076,9 +33061,9 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
33076
33061
|
|
|
33077
33062
|
// Hover, Focused state
|
|
33078
33063
|
table {
|
|
33079
|
-
tr:not(.k-detail-row):hover,
|
|
33080
|
-
tr:not(.k-detail-row).k-state-hover,
|
|
33081
|
-
tr:not(.k-detail-row).k-hover,
|
|
33064
|
+
>tr:not(.k-detail-row):hover,
|
|
33065
|
+
>tr:not(.k-detail-row).k-state-hover,
|
|
33066
|
+
>tr:not(.k-detail-row).k-hover,
|
|
33082
33067
|
td.k-state-focused,
|
|
33083
33068
|
td.k-focus,
|
|
33084
33069
|
th.k-state-focused,
|
|
@@ -33093,7 +33078,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
33093
33078
|
}
|
|
33094
33079
|
|
|
33095
33080
|
tr:hover,
|
|
33096
|
-
tr.k-state-hover
|
|
33081
|
+
tr.k-state-hover,
|
|
33097
33082
|
tr.k-hover {
|
|
33098
33083
|
.k-grid-header-sticky,
|
|
33099
33084
|
.k-grid-footer-sticky {
|
|
@@ -33121,7 +33106,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
33121
33106
|
|
|
33122
33107
|
}
|
|
33123
33108
|
.k-grid-pager:focus,
|
|
33124
|
-
.k-grid-pager.k-state-focused
|
|
33109
|
+
.k-grid-pager.k-state-focused,
|
|
33125
33110
|
.k-grid-pager.k-focus {
|
|
33126
33111
|
color: inherit;
|
|
33127
33112
|
}
|
|
@@ -33175,7 +33160,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
33175
33160
|
|
|
33176
33161
|
.k-group-footer {
|
|
33177
33162
|
&:hover td,
|
|
33178
|
-
&.k-state-hover td
|
|
33163
|
+
&.k-state-hover td,
|
|
33179
33164
|
&.k-hover td {
|
|
33180
33165
|
color: inherit;
|
|
33181
33166
|
@include fill( $bg: $grid-sticky-footer-hovered-bg );
|
|
@@ -33233,7 +33218,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
33233
33218
|
box-shadow: none;
|
|
33234
33219
|
}
|
|
33235
33220
|
|
|
33236
|
-
&.k-state-active
|
|
33221
|
+
&.k-state-active,
|
|
33237
33222
|
&.k-active {
|
|
33238
33223
|
color: $primary-contrast;
|
|
33239
33224
|
background-color: $primary;
|
|
@@ -33274,7 +33259,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
33274
33259
|
}
|
|
33275
33260
|
|
|
33276
33261
|
&:hover td,
|
|
33277
|
-
&.k-state-hover td
|
|
33262
|
+
&.k-state-hover td,
|
|
33278
33263
|
&.k-hover td {
|
|
33279
33264
|
@include fill( $bg: $grid-sticky-footer-hovered-bg );
|
|
33280
33265
|
}
|
|
@@ -33307,7 +33292,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
33307
33292
|
}
|
|
33308
33293
|
|
|
33309
33294
|
.k-columnmenu-item {
|
|
33310
|
-
&.k-state-selected
|
|
33295
|
+
&.k-state-selected,
|
|
33311
33296
|
&.k-selected {
|
|
33312
33297
|
@include fill(
|
|
33313
33298
|
$kendo-list-item-selected-text,
|
|
@@ -33316,7 +33301,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
33316
33301
|
}
|
|
33317
33302
|
}
|
|
33318
33303
|
.k-columnmenu-item:focus,
|
|
33319
|
-
.k-columnmenu-item.k-state-focus
|
|
33304
|
+
.k-columnmenu-item.k-state-focus,
|
|
33320
33305
|
.k-columnmenu-item.k-focus {
|
|
33321
33306
|
background: $kendo-list-item-hover-bg;
|
|
33322
33307
|
}
|
|
@@ -33325,7 +33310,7 @@ $grid-group-dropclue-top: calc( ( #{$kendo-button-calc-size} + #{$grid-grouping-
|
|
|
33325
33310
|
|
|
33326
33311
|
.k-item {
|
|
33327
33312
|
// Selected state
|
|
33328
|
-
&.k-state-selected
|
|
33313
|
+
&.k-state-selected,
|
|
33329
33314
|
&.k-selected {
|
|
33330
33315
|
background: $kendo-list-item-hover-bg;
|
|
33331
33316
|
}
|
|
@@ -33546,7 +33531,7 @@ $listview-item-focus-shadow: null !default;
|
|
|
33546
33531
|
// Listview content
|
|
33547
33532
|
.k-listview-content {
|
|
33548
33533
|
|
|
33549
|
-
> .k-state-focused
|
|
33534
|
+
> .k-state-focused,
|
|
33550
33535
|
> .k-focus {
|
|
33551
33536
|
@include fill(
|
|
33552
33537
|
$listview-item-focus-text,
|
|
@@ -33556,7 +33541,7 @@ $listview-item-focus-shadow: null !default;
|
|
|
33556
33541
|
@include box-shadow( $listview-item-focus-shadow );
|
|
33557
33542
|
}
|
|
33558
33543
|
|
|
33559
|
-
> .k-state-selected
|
|
33544
|
+
> .k-state-selected,
|
|
33560
33545
|
> .k-selected {
|
|
33561
33546
|
@include fill(
|
|
33562
33547
|
$listview-item-selected-text,
|
|
@@ -33579,7 +33564,7 @@ $listview-item-focus-shadow: null !default;
|
|
|
33579
33564
|
|
|
33580
33565
|
// Listview content
|
|
33581
33566
|
.k-listview-content {}
|
|
33582
|
-
.k-listview-content > .k-state-selected.k-state-focused
|
|
33567
|
+
.k-listview-content > .k-state-selected.k-state-focused,
|
|
33583
33568
|
.k-listview-content > .k-selected.k-focused {
|
|
33584
33569
|
background-color: rgba( contrast-wcag( $listview-bg ), .12 );
|
|
33585
33570
|
}
|
|
@@ -33952,7 +33937,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
33952
33937
|
overflow: hidden;
|
|
33953
33938
|
|
|
33954
33939
|
// disabled cells in the Spreadsheet should allow navigation if link is used
|
|
33955
|
-
.k-state-disabled
|
|
33940
|
+
.k-state-disabled,
|
|
33956
33941
|
.k-disabled {
|
|
33957
33942
|
pointer-events: auto;
|
|
33958
33943
|
}
|
|
@@ -34514,7 +34499,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34514
34499
|
background-position: 50% 50%;
|
|
34515
34500
|
|
|
34516
34501
|
&:hover div,
|
|
34517
|
-
&.k-state-hovered div
|
|
34502
|
+
&.k-state-hovered div,
|
|
34518
34503
|
&.k-hover div {
|
|
34519
34504
|
margin: 0;
|
|
34520
34505
|
align-self: center;
|
|
@@ -34580,7 +34565,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34580
34565
|
.k-spreadsheet-insert-image-dialog {
|
|
34581
34566
|
.k-spreadsheet-has-image {
|
|
34582
34567
|
&:hover,
|
|
34583
|
-
&.k-state-hovered
|
|
34568
|
+
&.k-state-hovered,
|
|
34584
34569
|
&.k-hover {
|
|
34585
34570
|
border-radius: $spreadsheet-insert-image-dialog-preview-overlay-border-radius;
|
|
34586
34571
|
}
|
|
@@ -34701,7 +34686,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34701
34686
|
.k-tabstrip-items .k-item {
|
|
34702
34687
|
color: inherit;
|
|
34703
34688
|
}
|
|
34704
|
-
.k-tabstrip-items .k-item.k-state-active::after
|
|
34689
|
+
.k-tabstrip-items .k-item.k-state-active::after,
|
|
34705
34690
|
.k-tabstrip-items .k-item.k-active::after {
|
|
34706
34691
|
border-color: $primary-contrast;
|
|
34707
34692
|
}
|
|
@@ -34724,7 +34709,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34724
34709
|
$toolbar-gradient
|
|
34725
34710
|
);
|
|
34726
34711
|
|
|
34727
|
-
.k-tabstrip-items .k-item.k-state-active
|
|
34712
|
+
.k-tabstrip-items .k-item.k-state-active,
|
|
34728
34713
|
.k-tabstrip-items .k-item.k-active {
|
|
34729
34714
|
border-color: $secondary;
|
|
34730
34715
|
}
|
|
@@ -34846,7 +34831,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34846
34831
|
);
|
|
34847
34832
|
box-shadow: inset 0 0 0 1px $kendo-button-border;
|
|
34848
34833
|
|
|
34849
|
-
&.k-state-active
|
|
34834
|
+
&.k-state-active,
|
|
34850
34835
|
&.k-active {
|
|
34851
34836
|
@include fill(
|
|
34852
34837
|
$kendo-button-active-text,
|
|
@@ -34892,13 +34877,13 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34892
34877
|
|
|
34893
34878
|
.k-spreadsheet-has-image {
|
|
34894
34879
|
&:hover,
|
|
34895
|
-
&.k-state-hovered
|
|
34880
|
+
&.k-state-hovered,
|
|
34896
34881
|
&.k-hover {
|
|
34897
34882
|
box-shadow: $spreadsheet-insert-image-dialog-preview-overlay-shadow;
|
|
34898
34883
|
}
|
|
34899
34884
|
|
|
34900
34885
|
&:hover div,
|
|
34901
|
-
&.k-state-hovered div
|
|
34886
|
+
&.k-state-hovered div,
|
|
34902
34887
|
&.k-hover div {
|
|
34903
34888
|
color: $spreadsheet-insert-image-dialog-overlay-hovered-text;
|
|
34904
34889
|
}
|
|
@@ -34933,7 +34918,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34933
34918
|
.k-button {}
|
|
34934
34919
|
|
|
34935
34920
|
.k-button:hover,
|
|
34936
|
-
.k-button.k-state-hover
|
|
34921
|
+
.k-button.k-state-hover,
|
|
34937
34922
|
.k-button.k-hover {
|
|
34938
34923
|
@include fill(
|
|
34939
34924
|
$kendo-list-item-hover-text,
|
|
@@ -34943,7 +34928,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34943
34928
|
.k-button:active,
|
|
34944
34929
|
.k-button.k-state-active,
|
|
34945
34930
|
.k-button.k-active,
|
|
34946
|
-
.k-button.k-state-selected
|
|
34931
|
+
.k-button.k-state-selected,
|
|
34947
34932
|
.k-button.k-selected {
|
|
34948
34933
|
@include fill(
|
|
34949
34934
|
$kendo-list-item-selected-text,
|
|
@@ -35932,7 +35917,7 @@ $pivotgrid-remove-text: $pivotgrid-button-bg !default;
|
|
|
35932
35917
|
// Selected state
|
|
35933
35918
|
.k-pivotgrid-cell.k-state-selected,
|
|
35934
35919
|
.k-pivotgrid-cell.k-selected,
|
|
35935
|
-
.k-pivotgrid-row.k-state-selected > .k-pivotgrid-cell
|
|
35920
|
+
.k-pivotgrid-row.k-state-selected > .k-pivotgrid-cell,
|
|
35936
35921
|
.k-pivotgrid-row.k-selected > .k-pivotgrid-cell {
|
|
35937
35922
|
@include fill (
|
|
35938
35923
|
$pivotgrid-selected-text,
|
|
@@ -36179,7 +36164,7 @@ $treelist-footer-row-border-width: 1px !default;
|
|
|
36179
36164
|
}
|
|
36180
36165
|
|
|
36181
36166
|
.k-treelist-dragging,
|
|
36182
|
-
.k-treelist-dragging .k-state-hover
|
|
36167
|
+
.k-treelist-dragging .k-state-hover,
|
|
36183
36168
|
.k-treelist-dragging .k-hover {
|
|
36184
36169
|
cursor: default;
|
|
36185
36170
|
}
|
|
@@ -36955,7 +36940,7 @@ $filemanager-preview-icon-border: null !default;
|
|
|
36955
36940
|
);
|
|
36956
36941
|
}
|
|
36957
36942
|
|
|
36958
|
-
&.k-state-selected .k-file-icon
|
|
36943
|
+
&.k-state-selected .k-file-icon,
|
|
36959
36944
|
&.k-selected .k-file-icon {
|
|
36960
36945
|
@include fill(
|
|
36961
36946
|
inherit,
|
|
@@ -37420,7 +37405,7 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
37420
37405
|
);
|
|
37421
37406
|
}
|
|
37422
37407
|
.k-taskboard-column:focus,
|
|
37423
|
-
.k-taskboard-column.k-state-focus
|
|
37408
|
+
.k-taskboard-column.k-state-focus,
|
|
37424
37409
|
.k-taskboard-column.k-focus {
|
|
37425
37410
|
@include fill(
|
|
37426
37411
|
$taskboard-column-focus-text,
|
|
@@ -37623,7 +37608,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
37623
37608
|
pointer-events: auto;
|
|
37624
37609
|
}
|
|
37625
37610
|
|
|
37626
|
-
.k-editor-content.k-state-focused
|
|
37611
|
+
.k-editor-content.k-state-focused,
|
|
37627
37612
|
.k-editor-content.k-focus {
|
|
37628
37613
|
outline-width: 1px;
|
|
37629
37614
|
outline-style: dashed;
|
|
@@ -38077,7 +38062,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
38077
38062
|
display: block;
|
|
38078
38063
|
margin: auto;
|
|
38079
38064
|
|
|
38080
|
-
&.k-state-selected
|
|
38065
|
+
&.k-state-selected,
|
|
38081
38066
|
&.k-selected {
|
|
38082
38067
|
color: inherit;
|
|
38083
38068
|
border-width: 0;
|
|
@@ -38388,7 +38373,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
38388
38373
|
|
|
38389
38374
|
// Hover & Actve state
|
|
38390
38375
|
&:hover,
|
|
38391
|
-
&.k-state-active
|
|
38376
|
+
&.k-state-active,
|
|
38392
38377
|
&.k-active {
|
|
38393
38378
|
border-color: $panel-border;
|
|
38394
38379
|
}
|
|
@@ -38406,7 +38391,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
38406
38391
|
|
|
38407
38392
|
// Insert table
|
|
38408
38393
|
.k-ct-popup {
|
|
38409
|
-
.k-state-selected
|
|
38394
|
+
.k-state-selected,
|
|
38410
38395
|
.k-selected {
|
|
38411
38396
|
@include fill( $selected-text, $selected-bg, $selected-border, none );
|
|
38412
38397
|
}
|
|
@@ -38962,7 +38947,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
38962
38947
|
}
|
|
38963
38948
|
}
|
|
38964
38949
|
|
|
38965
|
-
tr.k-state-selected > td:last-child
|
|
38950
|
+
tr.k-state-selected > td:last-child,
|
|
38966
38951
|
tr.k-selected > td:last-child {
|
|
38967
38952
|
background: transparent;
|
|
38968
38953
|
}
|
|
@@ -39232,7 +39217,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39232
39217
|
border-color: currentColor;
|
|
39233
39218
|
position: absolute;
|
|
39234
39219
|
}
|
|
39235
|
-
.k-gantt-line.k-state-selected
|
|
39220
|
+
.k-gantt-line.k-state-selected,
|
|
39236
39221
|
.k-gantt-line.k-selected {
|
|
39237
39222
|
z-index: 3;
|
|
39238
39223
|
}
|
|
@@ -39306,7 +39291,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39306
39291
|
transform: translate(-50%, -50%);
|
|
39307
39292
|
}
|
|
39308
39293
|
.k-task-dot:hover::before,
|
|
39309
|
-
.k-task-dot.k-state-hover::before
|
|
39294
|
+
.k-task-dot.k-state-hover::before,
|
|
39310
39295
|
.k-task-dot.k-hover::before {
|
|
39311
39296
|
border-width: 1px;
|
|
39312
39297
|
}
|
|
@@ -39794,7 +39779,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39794
39779
|
$border: $gantt-milestone-border
|
|
39795
39780
|
);
|
|
39796
39781
|
}
|
|
39797
|
-
.k-task-milestone.k-state-selected .k-task-milestone-content
|
|
39782
|
+
.k-task-milestone.k-state-selected .k-task-milestone-content,
|
|
39798
39783
|
.k-task-milestone.k-selected .k-task-milestone-content {
|
|
39799
39784
|
@include fill(
|
|
39800
39785
|
$bg: $gantt-milestone-selected-bg,
|
|
@@ -39809,7 +39794,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39809
39794
|
stroke: $gantt-line-fill;
|
|
39810
39795
|
}
|
|
39811
39796
|
|
|
39812
|
-
polyline.k-state-selected
|
|
39797
|
+
polyline.k-state-selected,
|
|
39813
39798
|
polyline.k-selected {
|
|
39814
39799
|
stroke: $gantt-line-selected-fill;
|
|
39815
39800
|
}
|
|
@@ -39863,7 +39848,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39863
39848
|
);
|
|
39864
39849
|
}
|
|
39865
39850
|
.k-task-dot:hover::before,
|
|
39866
|
-
.k-task-dot.k-state-hover::before
|
|
39851
|
+
.k-task-dot.k-state-hover::before,
|
|
39867
39852
|
.k-task-dot.k-hover::before {
|
|
39868
39853
|
@include fill(
|
|
39869
39854
|
$bg: $gantt-dot-hover-bg,
|
|
@@ -39889,7 +39874,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39889
39874
|
);
|
|
39890
39875
|
}
|
|
39891
39876
|
}
|
|
39892
|
-
.k-task-milestone.k-state-selected
|
|
39877
|
+
.k-task-milestone.k-state-selected,
|
|
39893
39878
|
.k-task-milestone.k-selected {
|
|
39894
39879
|
background-image: none;
|
|
39895
39880
|
@include fill(
|
|
@@ -39920,7 +39905,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39920
39905
|
.k-task-advanced .k-task-summary-complete {
|
|
39921
39906
|
color: $gantt-advanced-bg;
|
|
39922
39907
|
}
|
|
39923
|
-
.k-task-summary.k-state-selected
|
|
39908
|
+
.k-task-summary.k-state-selected,
|
|
39924
39909
|
.k-task-summary.k-selected {
|
|
39925
39910
|
color: $gantt-summary-selected-bg;
|
|
39926
39911
|
|
|
@@ -39964,7 +39949,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39964
39949
|
$bg: $gantt-advanced-bg
|
|
39965
39950
|
);
|
|
39966
39951
|
}
|
|
39967
|
-
.k-task-single.k-state-selected
|
|
39952
|
+
.k-task-single.k-state-selected,
|
|
39968
39953
|
.k-task-single.k-selected {
|
|
39969
39954
|
@include fill(
|
|
39970
39955
|
$gantt-task-selected-text,
|
|
@@ -39981,7 +39966,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39981
39966
|
.k-gantt-line {
|
|
39982
39967
|
color: $gantt-line-fill;
|
|
39983
39968
|
}
|
|
39984
|
-
.k-gantt-line.k-state-selected
|
|
39969
|
+
.k-gantt-line.k-state-selected,
|
|
39985
39970
|
.k-gantt-line.k-selected {
|
|
39986
39971
|
color: $gantt-line-selected-fill;
|
|
39987
39972
|
}
|
|
@@ -40662,7 +40647,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40662
40647
|
}
|
|
40663
40648
|
|
|
40664
40649
|
&:hover,
|
|
40665
|
-
&.k-state-hover
|
|
40650
|
+
&.k-state-hover,
|
|
40666
40651
|
&.k-hover {
|
|
40667
40652
|
.k-event-delete {
|
|
40668
40653
|
opacity: 1;
|
|
@@ -40728,7 +40713,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40728
40713
|
|
|
40729
40714
|
// Hover
|
|
40730
40715
|
&:hover,
|
|
40731
|
-
&.k-state-hover
|
|
40716
|
+
&.k-state-hover,
|
|
40732
40717
|
&.k-hover {
|
|
40733
40718
|
.k-event-actions .k-event-delete,
|
|
40734
40719
|
.k-resize-handle {
|
|
@@ -40990,7 +40975,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40990
40975
|
.k-hover .k-task > .k-event-delete,
|
|
40991
40976
|
.k-scheduler-content tr:hover .k-event-delete,
|
|
40992
40977
|
.k-scheduler-content .k-scheduler-row:hover .k-event-delete,
|
|
40993
|
-
.k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete
|
|
40978
|
+
.k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete,
|
|
40994
40979
|
.k-scheduler-content .k-scheduler-row.k-hover .k-event-delete {
|
|
40995
40980
|
visibility: visible;
|
|
40996
40981
|
}
|
|
@@ -41064,7 +41049,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41064
41049
|
position: relative;
|
|
41065
41050
|
}
|
|
41066
41051
|
|
|
41067
|
-
td.k-state-selected
|
|
41052
|
+
td.k-state-selected,
|
|
41068
41053
|
td.k-selected {
|
|
41069
41054
|
background-color: inherit;
|
|
41070
41055
|
}
|
|
@@ -41362,7 +41347,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41362
41347
|
kendo-scheduler .k-event,
|
|
41363
41348
|
.k-event {
|
|
41364
41349
|
|
|
41365
|
-
&.k-state-selected
|
|
41350
|
+
&.k-state-selected,
|
|
41366
41351
|
&.k-selected {
|
|
41367
41352
|
&::before {
|
|
41368
41353
|
display: block;
|
|
@@ -41580,7 +41565,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41580
41565
|
|
|
41581
41566
|
.k-scheduler-layout td.k-state-selected,
|
|
41582
41567
|
.k-scheduler-layout td.k-selected,
|
|
41583
|
-
.k-scheduler-layout .k-scheduler-cell.k-state-selected
|
|
41568
|
+
.k-scheduler-layout .k-scheduler-cell.k-state-selected,
|
|
41584
41569
|
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
41585
41570
|
background-color: rgba($selected-bg, .25);
|
|
41586
41571
|
}
|
|
@@ -41603,7 +41588,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41603
41588
|
);
|
|
41604
41589
|
@include box-shadow( $scheduler-event-shadow );
|
|
41605
41590
|
|
|
41606
|
-
&.k-state-hover
|
|
41591
|
+
&.k-state-hover,
|
|
41607
41592
|
&.k-hover {
|
|
41608
41593
|
@include fill(
|
|
41609
41594
|
$scheduler-event-hover-text,
|
|
@@ -41614,7 +41599,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41614
41599
|
@include box-shadow( $scheduler-event-hover-shadow );
|
|
41615
41600
|
}
|
|
41616
41601
|
|
|
41617
|
-
&.k-state-selected
|
|
41602
|
+
&.k-state-selected,
|
|
41618
41603
|
&.k-selected {
|
|
41619
41604
|
@include fill(
|
|
41620
41605
|
$scheduler-event-selected-text,
|
|
@@ -41684,7 +41669,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41684
41669
|
.k-scheduler-content tr.k-state-hover,
|
|
41685
41670
|
.k-scheduler-content tr.k-hover,
|
|
41686
41671
|
.k-scheduler-content .k-scheduler-row:hover,
|
|
41687
|
-
.k-scheduler-content .k-scheduler-row.k-state-hover
|
|
41672
|
+
.k-scheduler-content .k-scheduler-row.k-state-hover,
|
|
41688
41673
|
.k-scheduler-content .k-scheduler-row.k-hover {
|
|
41689
41674
|
@include fill(
|
|
41690
41675
|
$hovered-text,
|
|
@@ -41698,7 +41683,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41698
41683
|
.k-scheduler-content tr:hover .k-scheduler-groupcolumn,
|
|
41699
41684
|
.k-scheduler-content tr.k-state-hover .k-scheduler-datecolumn,
|
|
41700
41685
|
.k-scheduler-content tr.k-hover .k-scheduler-datecolumn,
|
|
41701
|
-
.k-scheduler-content tr.k-state-hover .k-scheduler-groupcolumn
|
|
41686
|
+
.k-scheduler-content tr.k-state-hover .k-scheduler-groupcolumn,
|
|
41702
41687
|
.k-scheduler-content tr.k-hover .k-scheduler-groupcolumn {
|
|
41703
41688
|
@include fill(
|
|
41704
41689
|
$scheduler-text,
|
|
@@ -41708,13 +41693,13 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41708
41693
|
}
|
|
41709
41694
|
|
|
41710
41695
|
// Selected
|
|
41711
|
-
.k-scheduler-content tr.k-state-selected
|
|
41696
|
+
.k-scheduler-content tr.k-state-selected,
|
|
41712
41697
|
.k-scheduler-content tr.k-selected {
|
|
41713
41698
|
background-color: rgba($selected-bg, .25);
|
|
41714
41699
|
}
|
|
41715
41700
|
.k-scheduler-content tr.k-state-selected .k-scheduler-datecolumn,
|
|
41716
41701
|
.k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
|
|
41717
|
-
.k-scheduler-content tr.k-state-selected .k-scheduler-groupcolumn
|
|
41702
|
+
.k-scheduler-content tr.k-state-selected .k-scheduler-groupcolumn,
|
|
41718
41703
|
.k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
|
|
41719
41704
|
background-color: $scheduler-bg;
|
|
41720
41705
|
}
|
|
@@ -41732,7 +41717,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41732
41717
|
@include fill( $bg: $scheduler-yearview-indicator-bg );
|
|
41733
41718
|
}
|
|
41734
41719
|
|
|
41735
|
-
.k-state-selected .k-day-indicator
|
|
41720
|
+
.k-state-selected .k-day-indicator,
|
|
41736
41721
|
.k-selected .k-day-indicator {
|
|
41737
41722
|
@include fill( $bg: $scheduler-yearview-indicator-selected-bg );
|
|
41738
41723
|
}
|
|
@@ -42070,7 +42055,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
42070
42055
|
|
|
42071
42056
|
|
|
42072
42057
|
// Message states
|
|
42073
|
-
.k-message.k-state-selected
|
|
42058
|
+
.k-message.k-state-selected,
|
|
42074
42059
|
.k-message.k-selected {
|
|
42075
42060
|
margin-bottom: $chat-item-spacing-y;
|
|
42076
42061
|
border: 0;
|
|
@@ -42280,7 +42265,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
42280
42265
|
flex: 0 0 auto;
|
|
42281
42266
|
}
|
|
42282
42267
|
|
|
42283
|
-
&.k-state-selected
|
|
42268
|
+
&.k-state-selected,
|
|
42284
42269
|
&.k-selected {
|
|
42285
42270
|
background: none;
|
|
42286
42271
|
}
|
|
@@ -42517,7 +42502,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
42517
42502
|
.k-bubble:hover {
|
|
42518
42503
|
@include box-shadow( $chat-bubble-hover-shadow );
|
|
42519
42504
|
}
|
|
42520
|
-
.k-state-selected .k-bubble
|
|
42505
|
+
.k-state-selected .k-bubble,
|
|
42521
42506
|
.k-selected .k-bubble {
|
|
42522
42507
|
@include box-shadow( $chat-bubble-selected-shadow );
|
|
42523
42508
|
}
|
|
@@ -42533,7 +42518,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
42533
42518
|
.k-alt .k-bubble:hover {
|
|
42534
42519
|
@include box-shadow( $chat-alt-bubble-hover-shadow );
|
|
42535
42520
|
}
|
|
42536
|
-
.k-alt .k-state-selected .k-bubble
|
|
42521
|
+
.k-alt .k-state-selected .k-bubble,
|
|
42537
42522
|
.k-alt .k-selected .k-bubble {
|
|
42538
42523
|
@include box-shadow( $chat-alt-bubble-selected-shadow );
|
|
42539
42524
|
}
|
|
@@ -43296,12 +43281,12 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
43296
43281
|
}
|
|
43297
43282
|
|
|
43298
43283
|
.k-timeline-track-item:hover .k-timeline-circle::before,
|
|
43299
|
-
.k-timeline-track-item.k-state-hover .k-timeline-circle::before
|
|
43284
|
+
.k-timeline-track-item.k-state-hover .k-timeline-circle::before,
|
|
43300
43285
|
.k-timeline-track-item.k-hover .k-timeline-circle::before {
|
|
43301
43286
|
opacity: $kendo-flat-button-hover-opacity;
|
|
43302
43287
|
}
|
|
43303
43288
|
|
|
43304
|
-
.k-timeline-track-item.k-state-focus .k-timeline-circle::before
|
|
43289
|
+
.k-timeline-track-item.k-state-focus .k-timeline-circle::before,
|
|
43305
43290
|
.k-timeline-track-item.k-focus .k-timeline-circle::before {
|
|
43306
43291
|
opacity: $kendo-flat-button-focus-opacity;
|
|
43307
43292
|
}
|
|
@@ -43353,7 +43338,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
43353
43338
|
color: $body-text;
|
|
43354
43339
|
}
|
|
43355
43340
|
|
|
43356
|
-
.k-timeline-arrow.k-state-disabled
|
|
43341
|
+
.k-timeline-arrow.k-state-disabled,
|
|
43357
43342
|
.k-timeline-arrow.k-disabled {
|
|
43358
43343
|
opacity: 1; // The arrow button in disabled mode should have a solid background
|
|
43359
43344
|
color: $timeline-track-arrow-disabled-text;
|
|
@@ -43374,7 +43359,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
43374
43359
|
background-color: $timeline-flag-bg;
|
|
43375
43360
|
}
|
|
43376
43361
|
|
|
43377
|
-
.k-timeline-track-item.k-state-focus .k-timeline-circle
|
|
43362
|
+
.k-timeline-track-item.k-state-focus .k-timeline-circle,
|
|
43378
43363
|
.k-timeline-track-item.k-focus .k-timeline-circle {
|
|
43379
43364
|
@include box-shadow( $timeline-track-item-focus-shadow );
|
|
43380
43365
|
}
|
|
@@ -44086,7 +44071,7 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
44086
44071
|
-webkit-tap-highlight-color: $scrollview-arrow-tap-highlight-color;
|
|
44087
44072
|
|
|
44088
44073
|
&:focus,
|
|
44089
|
-
&.k-state-focus
|
|
44074
|
+
&.k-state-focus,
|
|
44090
44075
|
&.k-focus {
|
|
44091
44076
|
color: $scrollview-navigation-color;
|
|
44092
44077
|
opacity: $scrollview-navigation-hover-opacity;
|
|
@@ -44097,7 +44082,7 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
44097
44082
|
}
|
|
44098
44083
|
|
|
44099
44084
|
&:hover,
|
|
44100
|
-
&.k-state-hover
|
|
44085
|
+
&.k-state-hover,
|
|
44101
44086
|
&.k-hover {
|
|
44102
44087
|
color: $scrollview-navigation-color;
|
|
44103
44088
|
opacity: $scrollview-navigation-hover-opacity;
|
|
@@ -44117,14 +44102,14 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
44117
44102
|
}
|
|
44118
44103
|
|
|
44119
44104
|
&:focus,
|
|
44120
|
-
&.k-state-focused
|
|
44105
|
+
&.k-state-focused,
|
|
44121
44106
|
&.k-focus {
|
|
44122
44107
|
box-shadow: $scrollview-pagebutton-shadow;
|
|
44123
44108
|
}
|
|
44124
44109
|
}
|
|
44125
44110
|
|
|
44126
44111
|
.k-scrollview-nav > .k-link:hover,
|
|
44127
|
-
.k-scrollview-nav > .k-link.k-state-hover
|
|
44112
|
+
.k-scrollview-nav > .k-link.k-state-hover,
|
|
44128
44113
|
.k-scrollview-nav > .k-link.k-hover {
|
|
44129
44114
|
box-shadow: $scrollview-pagebutton-shadow;
|
|
44130
44115
|
}
|
|
@@ -44945,7 +44930,7 @@ $treemap-line-height: $line-height !default;
|
|
|
44945
44930
|
.k-leaf.k-inverse {
|
|
44946
44931
|
color: $component-text;
|
|
44947
44932
|
}
|
|
44948
|
-
.k-leaf.k-state-hover
|
|
44933
|
+
.k-leaf.k-state-hover,
|
|
44949
44934
|
.k-leaf.k-hover {
|
|
44950
44935
|
box-shadow: inset 0 0 0 3px $component-border;
|
|
44951
44936
|
}
|
|
@@ -45444,7 +45429,7 @@ $orgchart-line-v-height: 25px !default;
|
|
|
45444
45429
|
.k-orgchart-node-group-container:focus,
|
|
45445
45430
|
.k-orgchart-node-group-container.k-focus,
|
|
45446
45431
|
.k-orgchart-node-group-container.k-state-focus,
|
|
45447
|
-
.k-orgchart-node-group-container.k-state-focused
|
|
45432
|
+
.k-orgchart-node-group-container.k-state-focused,
|
|
45448
45433
|
.k-orgchart-node-group-container.k-focus {
|
|
45449
45434
|
@include box-shadow( $orgchart-node-group-focus-shadow );
|
|
45450
45435
|
@include fill ( $border: $orgchart-node-group-focus-border );
|
|
@@ -45466,6 +45451,157 @@ $orgchart-line-v-height: 25px !default;
|
|
|
45466
45451
|
|
|
45467
45452
|
// #endregion
|
|
45468
45453
|
|
|
45454
|
+
// #endregion
|
|
45455
|
+
// #region @import "signature/_index.scss"; -> packages/material/scss/signature/_index.scss
|
|
45456
|
+
// #region @import "../core/_index.scss"; -> packages/material/scss/core/_index.scss
|
|
45457
|
+
// File already imported_once. Skipping output.
|
|
45458
|
+
// #endregion
|
|
45459
|
+
|
|
45460
|
+
// Dependencies
|
|
45461
|
+
// #region @import "../button/_index.scss"; -> packages/material/scss/button/_index.scss
|
|
45462
|
+
// File already imported_once. Skipping output.
|
|
45463
|
+
// #endregion
|
|
45464
|
+
// #region @import "../input/_index.scss"; -> packages/material/scss/input/_index.scss
|
|
45465
|
+
// File already imported_once. Skipping output.
|
|
45466
|
+
// #endregion
|
|
45467
|
+
|
|
45468
|
+
// Component
|
|
45469
|
+
// #region @import "_variables.scss"; -> packages/material/scss/signature/_variables.scss
|
|
45470
|
+
$kendo-signature-width: 246px !default;
|
|
45471
|
+
$kendo-signature-height: 108px !default;
|
|
45472
|
+
|
|
45473
|
+
$kendo-signature-maximized-width: 750px !default;
|
|
45474
|
+
$kendo-signature-maximized-height: 252px !default;
|
|
45475
|
+
|
|
45476
|
+
$kendo-signature-padding: map-get( $spacing, 2 ) !default;
|
|
45477
|
+
$kendo-signature-padding-sm: map-get( $spacing, 2 ) - map-get( $spacing, thin ) !default;
|
|
45478
|
+
$kendo-signature-padding-md: $kendo-signature-padding !default;
|
|
45479
|
+
$kendo-signature-padding-lg: map-get( $spacing, 2 ) + map-get( $spacing, thin ) !default;
|
|
45480
|
+
|
|
45481
|
+
$kendo-signature-line-width: 1px !default;
|
|
45482
|
+
$kendo-signature-line-style: dashed !default;
|
|
45483
|
+
$kendo-signature-line-color: rgba( $info, .24 ) !default;
|
|
45484
|
+
|
|
45485
|
+
$kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding} ) !default;
|
|
45486
|
+
$kendo-signature-line-size-sm: calc( 100% - 2 * #{$kendo-signature-padding-sm} ) !default;
|
|
45487
|
+
$kendo-signature-line-size-md: calc( 100% - 2 * #{$kendo-signature-padding-md} ) !default;
|
|
45488
|
+
$kendo-signature-line-size-lg: calc( 100% - 2 * #{$kendo-signature-padding-lg} ) !default;
|
|
45489
|
+
|
|
45490
|
+
$kendo-signature-line-bottom-offset: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding} ) !default;
|
|
45491
|
+
$kendo-signature-line-bottom-offset-sm: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-sm} ) !default;
|
|
45492
|
+
$kendo-signature-line-bottom-offset-md: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-md} ) !default;
|
|
45493
|
+
$kendo-signature-line-bottom-offset-lg: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-lg} ) !default;
|
|
45494
|
+
|
|
45495
|
+
$kendo-signature-sizes: (
|
|
45496
|
+
sm: (
|
|
45497
|
+
padding: $kendo-signature-padding-sm,
|
|
45498
|
+
line-size: $kendo-signature-line-size-sm,
|
|
45499
|
+
line-offset: $kendo-signature-line-bottom-offset-sm
|
|
45500
|
+
),
|
|
45501
|
+
md: (
|
|
45502
|
+
padding: $kendo-signature-padding-md,
|
|
45503
|
+
line-size: $kendo-signature-line-size-md,
|
|
45504
|
+
line-offset: $kendo-signature-line-bottom-offset-md
|
|
45505
|
+
),
|
|
45506
|
+
lg: (
|
|
45507
|
+
padding: $kendo-signature-padding-lg,
|
|
45508
|
+
line-size: $kendo-signature-line-size-lg,
|
|
45509
|
+
line-offset: $kendo-signature-line-bottom-offset-lg
|
|
45510
|
+
)
|
|
45511
|
+
) !default;
|
|
45512
|
+
|
|
45513
|
+
$kendo-signature-actions-gap: map-get( $spacing, 1 ) !default;
|
|
45514
|
+
$kendo-signature-maximized-line-width: map-get( $spacing, 1 ) - map-get( $spacing, hair ) !default;
|
|
45515
|
+
|
|
45516
|
+
// #endregion
|
|
45517
|
+
// #region @import "_layout.scss"; -> packages/material/scss/signature/_layout.scss
|
|
45518
|
+
// #region @import "~@progress/kendo-theme-default/scss/signature/_layout.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/signature/_layout.scss
|
|
45519
|
+
@include exports("signature/layout") {
|
|
45520
|
+
|
|
45521
|
+
.k-signature {
|
|
45522
|
+
width: $kendo-signature-width;
|
|
45523
|
+
height: $kendo-signature-height;
|
|
45524
|
+
position: relative;
|
|
45525
|
+
box-sizing: border-box;
|
|
45526
|
+
display: flex;
|
|
45527
|
+
flex-direction: column;
|
|
45528
|
+
justify-content: space-between;
|
|
45529
|
+
|
|
45530
|
+
&.k-signature-maximized {
|
|
45531
|
+
width: $kendo-signature-maximized-width;
|
|
45532
|
+
height: $kendo-signature-maximized-height;
|
|
45533
|
+
|
|
45534
|
+
> .k-signature-line {
|
|
45535
|
+
border-bottom-width: $kendo-signature-maximized-line-width;
|
|
45536
|
+
}
|
|
45537
|
+
}
|
|
45538
|
+
}
|
|
45539
|
+
|
|
45540
|
+
.k-signature-actions {
|
|
45541
|
+
display: flex;
|
|
45542
|
+
width: min-content;
|
|
45543
|
+
margin-inline-start: auto;
|
|
45544
|
+
gap: $kendo-signature-actions-gap;
|
|
45545
|
+
z-index: 2;
|
|
45546
|
+
}
|
|
45547
|
+
|
|
45548
|
+
.k-signature-canvas {
|
|
45549
|
+
position: absolute;
|
|
45550
|
+
top: 0;
|
|
45551
|
+
left: 0;
|
|
45552
|
+
width: 100%;
|
|
45553
|
+
height: 100%;
|
|
45554
|
+
display: block;
|
|
45555
|
+
z-index: 1;
|
|
45556
|
+
}
|
|
45557
|
+
|
|
45558
|
+
.k-signature-line {
|
|
45559
|
+
position: absolute;
|
|
45560
|
+
z-index: 0;
|
|
45561
|
+
border-bottom-width: $kendo-signature-line-width;
|
|
45562
|
+
border-bottom-style: $kendo-signature-line-style;
|
|
45563
|
+
}
|
|
45564
|
+
|
|
45565
|
+
// Sizes
|
|
45566
|
+
@each $size, $size-props in $kendo-signature-sizes {
|
|
45567
|
+
$_padding: map-get($size-props, padding);
|
|
45568
|
+
$_line-size: map-get($size-props, line-size);
|
|
45569
|
+
$_line-offset: map-get($size-props, line-offset);
|
|
45570
|
+
|
|
45571
|
+
.k-signature-#{$size} {
|
|
45572
|
+
padding: $_padding;
|
|
45573
|
+
|
|
45574
|
+
.k-signature-line {
|
|
45575
|
+
width: $_line-size;
|
|
45576
|
+
bottom: $_line-offset;
|
|
45577
|
+
}
|
|
45578
|
+
}
|
|
45579
|
+
|
|
45580
|
+
}
|
|
45581
|
+
}
|
|
45582
|
+
|
|
45583
|
+
// #endregion
|
|
45584
|
+
|
|
45585
|
+
// #endregion
|
|
45586
|
+
// #region @import "_theme.scss"; -> packages/material/scss/signature/_theme.scss
|
|
45587
|
+
// #region @import "~@progress/kendo-theme-default/scss/signature/_theme.scss"; -> packages/material/node_modules/@progress/kendo-theme-default/scss/signature/_theme.scss
|
|
45588
|
+
@include exports("signature/theme") {
|
|
45589
|
+
|
|
45590
|
+
// Solid signature
|
|
45591
|
+
.k-signature {
|
|
45592
|
+
|
|
45593
|
+
.k-signature-line {
|
|
45594
|
+
border-bottom-color: $kendo-signature-line-color;
|
|
45595
|
+
}
|
|
45596
|
+
}
|
|
45597
|
+
|
|
45598
|
+
|
|
45599
|
+
}
|
|
45600
|
+
|
|
45601
|
+
// #endregion
|
|
45602
|
+
|
|
45603
|
+
// #endregion
|
|
45604
|
+
|
|
45469
45605
|
// #endregion
|
|
45470
45606
|
|
|
45471
45607
|
// #endregion
|