@progress/kendo-theme-bootstrap 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 +314 -329
- package/dist/all.scss +351 -215
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +8 -11
- package/scss/breadcrumb/_layout.scss +1 -1
- package/scss/breadcrumb/_theme.scss +1 -1
- package/scss/chip/_variables.scss +1 -1
- package/scss/grid/_theme.scss +25 -25
- package/scss/index.scss +1 -0
- package/scss/pager/_theme.scss +1 -1
- package/scss/progressbar/_variables.scss +1 -0
- package/scss/scrollview/_theme.scss +4 -4
- 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/spreadsheet/_theme.scss +6 -6
- package/scss/tabstrip/_theme.scss +4 -4
package/dist/all.scss
CHANGED
|
@@ -13475,7 +13475,7 @@ $kendo-avatar-theme-colors: $kendo-theme-colors !default;
|
|
|
13475
13475
|
$kendo-chip-border-width: 1px !default;
|
|
13476
13476
|
/// The spacing between the text and the icons of the chip.
|
|
13477
13477
|
/// @group chip
|
|
13478
|
-
$kendo-chip-spacing: map-get( $spacing, 1 );
|
|
13478
|
+
$kendo-chip-spacing: map-get( $spacing, 1 ) !default;
|
|
13479
13479
|
|
|
13480
13480
|
/// Horizontal padding of the chip.
|
|
13481
13481
|
/// @group chip
|
|
@@ -16154,7 +16154,8 @@ $fieldset-legend-border: null !default;
|
|
|
16154
16154
|
|
|
16155
16155
|
.k-multiselect,
|
|
16156
16156
|
.k-floating-label-container,
|
|
16157
|
-
.k-daterangepicker .k-dateinput
|
|
16157
|
+
.k-daterangepicker .k-dateinput,
|
|
16158
|
+
.k-signature {
|
|
16158
16159
|
display: inline-flex;
|
|
16159
16160
|
width: 100%;
|
|
16160
16161
|
}
|
|
@@ -17276,6 +17277,7 @@ $listbox-drop-hint-width: 1px !default;
|
|
|
17276
17277
|
// #region @import "_variables.scss"; -> packages/bootstrap/scss/progressbar/_variables.scss
|
|
17277
17278
|
// Progressbar
|
|
17278
17279
|
$progressbar-height: $progress-height !default;
|
|
17280
|
+
$progressbar-horizontal-width: 100% !default;
|
|
17279
17281
|
$progressbar-animation-timing: $progress-bar-animation-timing !default;
|
|
17280
17282
|
$progressbar-border-width: 0px !default;
|
|
17281
17283
|
$progressbar-font-family: $font-family !default;
|
|
@@ -17330,7 +17332,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17330
17332
|
|
|
17331
17333
|
|
|
17332
17334
|
// Selection
|
|
17333
|
-
> .k-state-selected
|
|
17335
|
+
> .k-state-selected,
|
|
17334
17336
|
> .k-selected {
|
|
17335
17337
|
border-width: 0;
|
|
17336
17338
|
border-style: solid;
|
|
@@ -17391,7 +17393,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17391
17393
|
|
|
17392
17394
|
// Horizontal
|
|
17393
17395
|
.k-progressbar-horizontal {
|
|
17394
|
-
width:
|
|
17396
|
+
width: $progressbar-horizontal-width;
|
|
17395
17397
|
height: $progressbar-height;
|
|
17396
17398
|
grid-template-columns: 1fr;
|
|
17397
17399
|
grid-template-rows: 100%;
|
|
@@ -17401,7 +17403,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17401
17403
|
flex-direction: row;
|
|
17402
17404
|
}
|
|
17403
17405
|
|
|
17404
|
-
> .k-state-selected
|
|
17406
|
+
> .k-state-selected,
|
|
17405
17407
|
> .k-selected {
|
|
17406
17408
|
width: 0;
|
|
17407
17409
|
width: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
|
|
@@ -17428,7 +17430,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17428
17430
|
// Horizontal reverse
|
|
17429
17431
|
&.k-progressbar-reverse {
|
|
17430
17432
|
|
|
17431
|
-
> .k-state-selected
|
|
17433
|
+
> .k-state-selected,
|
|
17432
17434
|
> .k-selected {
|
|
17433
17435
|
flex-direction: row-reverse;
|
|
17434
17436
|
justify-self: flex-end;
|
|
@@ -17453,7 +17455,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17453
17455
|
writing-mode: vertical-lr;
|
|
17454
17456
|
}
|
|
17455
17457
|
|
|
17456
|
-
> .k-state-selected
|
|
17458
|
+
> .k-state-selected,
|
|
17457
17459
|
> .k-selected {
|
|
17458
17460
|
height: 0;
|
|
17459
17461
|
height: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
|
|
@@ -17483,7 +17485,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17483
17485
|
&.k-progressbar-reverse {
|
|
17484
17486
|
flex-direction: column;
|
|
17485
17487
|
|
|
17486
|
-
> .k-state-selected
|
|
17488
|
+
> .k-state-selected,
|
|
17487
17489
|
> .k-selected {
|
|
17488
17490
|
flex-direction: column;
|
|
17489
17491
|
align-self: flex-start;
|
|
@@ -17508,7 +17510,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17508
17510
|
|
|
17509
17511
|
> .k-state-selected,
|
|
17510
17512
|
> .k-selected,
|
|
17511
|
-
> .k-state-selected > .k-progress-status-wrap
|
|
17513
|
+
> .k-state-selected > .k-progress-status-wrap,
|
|
17512
17514
|
> .k-selected > .k-progress-status-wrap {
|
|
17513
17515
|
transition: width .1s ease-in-out;
|
|
17514
17516
|
}
|
|
@@ -17537,7 +17539,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17537
17539
|
display: -ms-inline-grid;
|
|
17538
17540
|
|
|
17539
17541
|
> .k-progress-status-wrap,
|
|
17540
|
-
> .k-state-selected
|
|
17542
|
+
> .k-state-selected,
|
|
17541
17543
|
> .k-selected {
|
|
17542
17544
|
-ms-grid-column: 1;
|
|
17543
17545
|
-ms-grid-row: 1;
|
|
@@ -17547,7 +17549,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17547
17549
|
-ms-grid-columns: 1fr;
|
|
17548
17550
|
-ms-grid-rows: $progressbar-height;
|
|
17549
17551
|
|
|
17550
|
-
&.k-progressbar-reverse > .k-state-selected
|
|
17552
|
+
&.k-progressbar-reverse > .k-state-selected,
|
|
17551
17553
|
&.k-progressbar-reverse > .k-selected {
|
|
17552
17554
|
-ms-grid-column-align: end;
|
|
17553
17555
|
}
|
|
@@ -17556,12 +17558,12 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17556
17558
|
-ms-grid-columns: $progressbar-height;
|
|
17557
17559
|
-ms-grid-rows: 1fr;
|
|
17558
17560
|
|
|
17559
|
-
> .k-state-selected
|
|
17561
|
+
> .k-state-selected,
|
|
17560
17562
|
> .k-selected {
|
|
17561
17563
|
-ms-grid-row-align: end;
|
|
17562
17564
|
}
|
|
17563
17565
|
|
|
17564
|
-
&.k-progressbar-reverse > .k-state-selected
|
|
17566
|
+
&.k-progressbar-reverse > .k-state-selected,
|
|
17565
17567
|
&.k-progressbar-reverse > .k-selected {
|
|
17566
17568
|
-ms-grid-row-align: start;
|
|
17567
17569
|
}
|
|
@@ -17584,7 +17586,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
17584
17586
|
.k-progressbar {
|
|
17585
17587
|
@include fill( $progressbar-text, $progressbar-bg, $progressbar-border, $progressbar-gradient );
|
|
17586
17588
|
|
|
17587
|
-
.k-state-selected
|
|
17589
|
+
.k-state-selected,
|
|
17588
17590
|
.k-selected {
|
|
17589
17591
|
@include fill( $progressbar-fill-text, $progressbar-fill-bg, $progressbar-fill-border, $progressbar-fill-gradient );
|
|
17590
17592
|
}
|
|
@@ -17954,7 +17956,7 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
17954
17956
|
}
|
|
17955
17957
|
|
|
17956
17958
|
.k-radio:focus,
|
|
17957
|
-
.k-radio.k-state-focus
|
|
17959
|
+
.k-radio.k-state-focus,
|
|
17958
17960
|
.k-radio.k-focus {
|
|
17959
17961
|
box-shadow: none !important; // sass-lint:disable-line no-important
|
|
17960
17962
|
|
|
@@ -18018,7 +18020,7 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
18018
18020
|
|
|
18019
18021
|
// Hover state
|
|
18020
18022
|
.k-radio:hover,
|
|
18021
|
-
.k-radio.k-state-hover
|
|
18023
|
+
.k-radio.k-state-hover,
|
|
18022
18024
|
.k-radio.k-hover {
|
|
18023
18025
|
@include fill(
|
|
18024
18026
|
$kendo-radio-hover-text,
|
|
@@ -18030,7 +18032,7 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
18030
18032
|
|
|
18031
18033
|
// Focus state
|
|
18032
18034
|
.k-radio:focus,
|
|
18033
|
-
.k-radio.k-state-focus
|
|
18035
|
+
.k-radio.k-state-focus,
|
|
18034
18036
|
.k-radio.k-focus {
|
|
18035
18037
|
@include fill( $border: $kendo-radio-focus-border );
|
|
18036
18038
|
@include box-shadow( $kendo-radio-focus-shadow );
|
|
@@ -18062,7 +18064,7 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
18062
18064
|
);
|
|
18063
18065
|
}
|
|
18064
18066
|
.k-radio:checked:focus,
|
|
18065
|
-
.k-radio.k-checked.k-state-focus
|
|
18067
|
+
.k-radio.k-checked.k-state-focus,
|
|
18066
18068
|
.k-radio.k-checked.k-focus {
|
|
18067
18069
|
@include fill( $border: $kendo-radio-focus-checked-border );
|
|
18068
18070
|
@include box-shadow( $kendo-radio-focus-checked-shadow );
|
|
@@ -18239,7 +18241,7 @@ $slider-disabled-opacity: null !default;
|
|
|
18239
18241
|
}
|
|
18240
18242
|
|
|
18241
18243
|
|
|
18242
|
-
&.k-state-disabled
|
|
18244
|
+
&.k-state-disabled,
|
|
18243
18245
|
&.k-disabled {
|
|
18244
18246
|
.k-tick,
|
|
18245
18247
|
.k-slider-track,
|
|
@@ -18696,20 +18698,20 @@ $slider-disabled-opacity: null !default;
|
|
|
18696
18698
|
}
|
|
18697
18699
|
|
|
18698
18700
|
&:focus,
|
|
18699
|
-
&.k-state-focused
|
|
18701
|
+
&.k-state-focused,
|
|
18700
18702
|
&.k-focus {
|
|
18701
18703
|
@include box-shadow( $slider-draghandle-focused-shadow );
|
|
18702
18704
|
}
|
|
18703
18705
|
}
|
|
18704
18706
|
|
|
18705
|
-
&.k-state-focused
|
|
18707
|
+
&.k-state-focused,
|
|
18706
18708
|
&.k-focus {
|
|
18707
18709
|
.k-draghandle {
|
|
18708
18710
|
@include box-shadow( $slider-draghandle-focused-shadow );
|
|
18709
18711
|
}
|
|
18710
18712
|
}
|
|
18711
18713
|
|
|
18712
|
-
&.k-state-disabled
|
|
18714
|
+
&.k-state-disabled,
|
|
18713
18715
|
&.k-disabled {
|
|
18714
18716
|
opacity: $slider-disabled-opacity;
|
|
18715
18717
|
}
|
|
@@ -19259,7 +19261,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19259
19261
|
}
|
|
19260
19262
|
|
|
19261
19263
|
// // styles are applied to the k-link element inside
|
|
19262
|
-
// .k-state-selected
|
|
19264
|
+
// .k-state-selected,
|
|
19263
19265
|
// .k-selected {
|
|
19264
19266
|
// color: inherit;
|
|
19265
19267
|
// background: transparent;
|
|
@@ -19285,6 +19287,10 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
19285
19287
|
&::after {
|
|
19286
19288
|
display: none;
|
|
19287
19289
|
}
|
|
19290
|
+
|
|
19291
|
+
&:focus {
|
|
19292
|
+
outline: 0;
|
|
19293
|
+
}
|
|
19288
19294
|
}
|
|
19289
19295
|
|
|
19290
19296
|
.k-range-start {
|
|
@@ -19780,7 +19786,7 @@ $time-list-focused-bg: rgba(0, 0, 0, .02) !default;
|
|
|
19780
19786
|
display: block;
|
|
19781
19787
|
}
|
|
19782
19788
|
|
|
19783
|
-
&.k-state-focused
|
|
19789
|
+
&.k-state-focused,
|
|
19784
19790
|
&.k-focus {
|
|
19785
19791
|
&::before,
|
|
19786
19792
|
&::after {
|
|
@@ -19925,7 +19931,7 @@ $time-list-focused-bg: rgba(0, 0, 0, .02) !default;
|
|
|
19925
19931
|
color: $time-list-title-text;
|
|
19926
19932
|
}
|
|
19927
19933
|
|
|
19928
|
-
&.k-state-focused
|
|
19934
|
+
&.k-state-focused,
|
|
19929
19935
|
&.k-focus {
|
|
19930
19936
|
.k-title {
|
|
19931
19937
|
color: $time-list-title-focus-text;
|
|
@@ -20253,7 +20259,7 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
20253
20259
|
&.k-focus,
|
|
20254
20260
|
&.k-state-selected,
|
|
20255
20261
|
&.k-selected,
|
|
20256
|
-
&.k-state-selected:hover
|
|
20262
|
+
&.k-state-selected:hover,
|
|
20257
20263
|
&.k-selected:hover {
|
|
20258
20264
|
position: relative;
|
|
20259
20265
|
z-index: 100;
|
|
@@ -22281,7 +22287,7 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
22281
22287
|
color: $component-text;
|
|
22282
22288
|
|
|
22283
22289
|
&:focus,
|
|
22284
|
-
&.k-state-focused
|
|
22290
|
+
&.k-state-focused,
|
|
22285
22291
|
&.k-focus {
|
|
22286
22292
|
|
|
22287
22293
|
.k-rating-item {
|
|
@@ -22289,7 +22295,7 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
22289
22295
|
text-shadow: $rating-icon-focused-shadow;
|
|
22290
22296
|
}
|
|
22291
22297
|
|
|
22292
|
-
&.k-state-selected > .k-icon
|
|
22298
|
+
&.k-state-selected > .k-icon,
|
|
22293
22299
|
&.k-selected > .k-icon {
|
|
22294
22300
|
text-shadow: $rating-icon-focused-selected-shadow;
|
|
22295
22301
|
}
|
|
@@ -22300,19 +22306,19 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
22300
22306
|
.k-rating-item {
|
|
22301
22307
|
color: $rating-icon-text;
|
|
22302
22308
|
|
|
22303
|
-
&.k-state-selected
|
|
22309
|
+
&.k-state-selected,
|
|
22304
22310
|
&.k-selected {
|
|
22305
22311
|
color: $rating-icon-selected-text;
|
|
22306
22312
|
|
|
22307
22313
|
&:focus,
|
|
22308
|
-
&.k-state-focused
|
|
22314
|
+
&.k-state-focused,
|
|
22309
22315
|
&.k-focus {
|
|
22310
22316
|
color: $rating-icon-focused-text;
|
|
22311
22317
|
}
|
|
22312
22318
|
}
|
|
22313
22319
|
|
|
22314
22320
|
&:hover,
|
|
22315
|
-
&.k-state-hover
|
|
22321
|
+
&.k-state-hover,
|
|
22316
22322
|
&.k-hover {
|
|
22317
22323
|
color: $rating-icon-hover-text;
|
|
22318
22324
|
cursor: pointer;
|
|
@@ -23555,7 +23561,7 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
23555
23561
|
z-index: 1;
|
|
23556
23562
|
}
|
|
23557
23563
|
input[disabled],
|
|
23558
|
-
input.k-state-disabled
|
|
23564
|
+
input.k-state-disabled,
|
|
23559
23565
|
input.k-disabled {
|
|
23560
23566
|
visibility: hidden;
|
|
23561
23567
|
}
|
|
@@ -23603,12 +23609,12 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
23603
23609
|
|
|
23604
23610
|
.k-file {
|
|
23605
23611
|
|
|
23606
|
-
&.k-state-focused
|
|
23612
|
+
&.k-state-focused,
|
|
23607
23613
|
&.k-focus {
|
|
23608
23614
|
box-shadow: inset $upload-focused-shadow;
|
|
23609
23615
|
}
|
|
23610
23616
|
|
|
23611
|
-
.k-upload-action.k-state-focused
|
|
23617
|
+
.k-upload-action.k-state-focused,
|
|
23612
23618
|
.k-upload-action.k-focus {
|
|
23613
23619
|
box-shadow: $upload-focused-shadow;
|
|
23614
23620
|
}
|
|
@@ -24670,7 +24676,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
24670
24676
|
|
|
24671
24677
|
// Hover state
|
|
24672
24678
|
&:hover,
|
|
24673
|
-
&.k-state-hover
|
|
24679
|
+
&.k-state-hover,
|
|
24674
24680
|
&.k-hover {
|
|
24675
24681
|
@include fill(
|
|
24676
24682
|
$actionsheet-item-hover-text,
|
|
@@ -24684,7 +24690,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
24684
24690
|
|
|
24685
24691
|
// Focus state
|
|
24686
24692
|
&:focus,
|
|
24687
|
-
&.k-state-focus
|
|
24693
|
+
&.k-state-focus,
|
|
24688
24694
|
&.k-focus {
|
|
24689
24695
|
@include fill(
|
|
24690
24696
|
$actionsheet-item-focus-text,
|
|
@@ -24698,7 +24704,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
24698
24704
|
|
|
24699
24705
|
// Disabed state
|
|
24700
24706
|
&:disabled,
|
|
24701
|
-
&.k-state-disabled
|
|
24707
|
+
&.k-state-disabled,
|
|
24702
24708
|
&.k-disabled {
|
|
24703
24709
|
@include fill(
|
|
24704
24710
|
$actionsheet-item-disabled-text,
|
|
@@ -24943,7 +24949,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
24943
24949
|
|
|
24944
24950
|
.k-window {
|
|
24945
24951
|
&:focus,
|
|
24946
|
-
&.k-state-focused
|
|
24952
|
+
&.k-state-focused,
|
|
24947
24953
|
&.k-focus {
|
|
24948
24954
|
@include box-shadow( $window-focused-shadow );
|
|
24949
24955
|
}
|
|
@@ -25465,33 +25471,33 @@ $drawer-selected-hover-text: $selected-text !default;
|
|
|
25465
25471
|
.k-drawer-item {
|
|
25466
25472
|
|
|
25467
25473
|
&:hover,
|
|
25468
|
-
&.k-state-hover
|
|
25474
|
+
&.k-state-hover,
|
|
25469
25475
|
&.k-hover {
|
|
25470
25476
|
color: $drawer-hovered-text;
|
|
25471
25477
|
background-color: $drawer-hovered-bg;
|
|
25472
25478
|
}
|
|
25473
25479
|
|
|
25474
25480
|
&:focus,
|
|
25475
|
-
&.k-state-focused
|
|
25481
|
+
&.k-state-focused,
|
|
25476
25482
|
&.k-focus {
|
|
25477
25483
|
background-color: $drawer-focused-bg;
|
|
25478
25484
|
box-shadow: $drawer-focused-shadow;
|
|
25479
25485
|
|
|
25480
25486
|
&:hover,
|
|
25481
|
-
&.k-state-hover
|
|
25487
|
+
&.k-state-hover,
|
|
25482
25488
|
&.k-hover {
|
|
25483
25489
|
color: $drawer-hovered-text;
|
|
25484
25490
|
background-color: $drawer-hovered-bg;
|
|
25485
25491
|
}
|
|
25486
25492
|
}
|
|
25487
25493
|
|
|
25488
|
-
&.k-state-selected
|
|
25494
|
+
&.k-state-selected,
|
|
25489
25495
|
&.k-selected {
|
|
25490
25496
|
color: $drawer-selected-text;
|
|
25491
25497
|
background-color: $drawer-selected-bg;
|
|
25492
25498
|
|
|
25493
25499
|
&:hover,
|
|
25494
|
-
&.k-state-hover
|
|
25500
|
+
&.k-state-hover,
|
|
25495
25501
|
&.k-hover {
|
|
25496
25502
|
color: $drawer-selected-hover-text;
|
|
25497
25503
|
background-color: $drawer-selected-hover-bg;
|
|
@@ -26748,7 +26754,7 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
26748
26754
|
outline: 0;
|
|
26749
26755
|
}
|
|
26750
26756
|
}
|
|
26751
|
-
.k-bottom-nav-item.k-state-disabled
|
|
26757
|
+
.k-bottom-nav-item.k-state-disabled,
|
|
26752
26758
|
.k-bottom-nav-item.k-disabled {
|
|
26753
26759
|
background-color: initial;
|
|
26754
26760
|
}
|
|
@@ -26803,7 +26809,7 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
26803
26809
|
@include fill( $bg: rgba(true-mix( $color, contrast-wcag( $color ), 35%), .2));
|
|
26804
26810
|
}
|
|
26805
26811
|
|
|
26806
|
-
.k-bottom-nav-item.k-state-selected
|
|
26812
|
+
.k-bottom-nav-item.k-state-selected,
|
|
26807
26813
|
.k-bottom-nav-item.k-selected {
|
|
26808
26814
|
@include fill( $color: contrast-wcag( $color ) );
|
|
26809
26815
|
}
|
|
@@ -26827,7 +26833,7 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
26827
26833
|
}
|
|
26828
26834
|
|
|
26829
26835
|
@each $name, $color in $kendo-theme-colors {
|
|
26830
|
-
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected
|
|
26836
|
+
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected,
|
|
26831
26837
|
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-selected {
|
|
26832
26838
|
@if $name == "secondary" or $name == "light" {
|
|
26833
26839
|
@include fill( $color: try-shade($color, 3) );
|
|
@@ -27083,7 +27089,7 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
27083
27089
|
text-decoration: $link-decoration;
|
|
27084
27090
|
|
|
27085
27091
|
&:hover,
|
|
27086
|
-
&.k-state-hover
|
|
27092
|
+
&.k-state-hover,
|
|
27087
27093
|
&.k-hover {
|
|
27088
27094
|
text-decoration: $link-hover-decoration;
|
|
27089
27095
|
}
|
|
@@ -27104,7 +27110,7 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
27104
27110
|
);
|
|
27105
27111
|
|
|
27106
27112
|
&:focus,
|
|
27107
|
-
&.k-state-focused
|
|
27113
|
+
&.k-state-focused,
|
|
27108
27114
|
&.k-focus {
|
|
27109
27115
|
@include box-shadow( $breadcrumb-focused-shadow );
|
|
27110
27116
|
}
|
|
@@ -27121,7 +27127,7 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
27121
27127
|
|
|
27122
27128
|
// Hovered state
|
|
27123
27129
|
&:hover,
|
|
27124
|
-
&.k-state-hover
|
|
27130
|
+
&.k-state-hover,
|
|
27125
27131
|
&.k-hover {
|
|
27126
27132
|
@include fill(
|
|
27127
27133
|
$breadcrumb-link-hovered-text,
|
|
@@ -27132,7 +27138,7 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
27132
27138
|
|
|
27133
27139
|
// Focused state
|
|
27134
27140
|
&:focus,
|
|
27135
|
-
&.k-state-focused
|
|
27141
|
+
&.k-state-focused,
|
|
27136
27142
|
&.k-focus {
|
|
27137
27143
|
@include fill(
|
|
27138
27144
|
$breadcrumb-link-focused-text,
|
|
@@ -27154,7 +27160,7 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
27154
27160
|
|
|
27155
27161
|
// Hovered state
|
|
27156
27162
|
&:hover,
|
|
27157
|
-
&.k-state-hover
|
|
27163
|
+
&.k-state-hover,
|
|
27158
27164
|
&.k-hover {
|
|
27159
27165
|
@include fill(
|
|
27160
27166
|
$breadcrumb-root-link-hovered-text,
|
|
@@ -27165,7 +27171,7 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
27165
27171
|
|
|
27166
27172
|
// Focused state
|
|
27167
27173
|
&:focus,
|
|
27168
|
-
&.k-state-focused
|
|
27174
|
+
&.k-state-focused,
|
|
27169
27175
|
&.k-focus {
|
|
27170
27176
|
@include fill(
|
|
27171
27177
|
$breadcrumb-root-link-focused-text,
|
|
@@ -27189,7 +27195,7 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
27189
27195
|
color: $breadcrumb-active-color;
|
|
27190
27196
|
}
|
|
27191
27197
|
|
|
27192
|
-
.k-state-disabled
|
|
27198
|
+
.k-state-disabled,
|
|
27193
27199
|
.k-disabled {
|
|
27194
27200
|
opacity: 1;
|
|
27195
27201
|
filter: none;
|
|
@@ -27332,7 +27338,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27332
27338
|
|
|
27333
27339
|
// Focused state
|
|
27334
27340
|
&:focus,
|
|
27335
|
-
&.k-state-focus
|
|
27341
|
+
&.k-state-focus,
|
|
27336
27342
|
&.k-focus {
|
|
27337
27343
|
z-index: 3;
|
|
27338
27344
|
}
|
|
@@ -27382,7 +27388,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27382
27388
|
&:hover {
|
|
27383
27389
|
z-index: 2;
|
|
27384
27390
|
}
|
|
27385
|
-
&.k-state-disabled
|
|
27391
|
+
&.k-state-disabled,
|
|
27386
27392
|
&.k-disabled {
|
|
27387
27393
|
color: inherit;
|
|
27388
27394
|
}
|
|
@@ -27432,7 +27438,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27432
27438
|
}
|
|
27433
27439
|
|
|
27434
27440
|
// Selected state
|
|
27435
|
-
.k-state-selected
|
|
27441
|
+
.k-state-selected,
|
|
27436
27442
|
.k-selected {
|
|
27437
27443
|
cursor: inherit;
|
|
27438
27444
|
z-index: 2;
|
|
@@ -27605,7 +27611,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27605
27611
|
&:focus,
|
|
27606
27612
|
&.k-focus,
|
|
27607
27613
|
&.k-state-focus,
|
|
27608
|
-
&.k-state-focused
|
|
27614
|
+
&.k-state-focused,
|
|
27609
27615
|
&.k-focus {
|
|
27610
27616
|
@include fill( $bg: $pager-focus-bg );
|
|
27611
27617
|
@include box-shadow( $pager-focus-shadow );
|
|
@@ -27621,7 +27627,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27621
27627
|
);
|
|
27622
27628
|
|
|
27623
27629
|
&:hover,
|
|
27624
|
-
&.k-state-hover
|
|
27630
|
+
&.k-state-hover,
|
|
27625
27631
|
&.k-hover {
|
|
27626
27632
|
@include fill(
|
|
27627
27633
|
$pager-item-hover-text,
|
|
@@ -27630,7 +27636,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27630
27636
|
);
|
|
27631
27637
|
}
|
|
27632
27638
|
|
|
27633
|
-
&.k-state-selected
|
|
27639
|
+
&.k-state-selected,
|
|
27634
27640
|
&.k-selected {
|
|
27635
27641
|
@include fill(
|
|
27636
27642
|
$pager-item-selected-text,
|
|
@@ -27640,7 +27646,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27640
27646
|
}
|
|
27641
27647
|
|
|
27642
27648
|
&:focus,
|
|
27643
|
-
&.k-state-focus
|
|
27649
|
+
&.k-state-focus,
|
|
27644
27650
|
&.k-focus {
|
|
27645
27651
|
background-color: $pager-item-focus-bg;
|
|
27646
27652
|
@include box-shadow( $pager-item-focus-shadow );
|
|
@@ -27664,7 +27670,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27664
27670
|
);
|
|
27665
27671
|
|
|
27666
27672
|
&:hover,
|
|
27667
|
-
&.k-state-hover
|
|
27673
|
+
&.k-state-hover,
|
|
27668
27674
|
&.k-hover {
|
|
27669
27675
|
@include fill(
|
|
27670
27676
|
$pager-number-hover-text,
|
|
@@ -27674,13 +27680,13 @@ $pager-dropdown-width: 5em !default;
|
|
|
27674
27680
|
}
|
|
27675
27681
|
|
|
27676
27682
|
&:focus,
|
|
27677
|
-
&.k-state-focus
|
|
27683
|
+
&.k-state-focus,
|
|
27678
27684
|
&.k-focus {
|
|
27679
27685
|
background-color: $pager-number-focus-bg;
|
|
27680
27686
|
@include box-shadow( $pager-number-focus-shadow );
|
|
27681
27687
|
}
|
|
27682
27688
|
|
|
27683
|
-
&.k-state-selected
|
|
27689
|
+
&.k-state-selected,
|
|
27684
27690
|
&.k-selected {
|
|
27685
27691
|
@include fill(
|
|
27686
27692
|
$pager-number-selected-text,
|
|
@@ -27713,7 +27719,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27713
27719
|
);
|
|
27714
27720
|
|
|
27715
27721
|
&:hover,
|
|
27716
|
-
&.k-state-hover
|
|
27722
|
+
&.k-state-hover,
|
|
27717
27723
|
&.k-hover {
|
|
27718
27724
|
@include fill(
|
|
27719
27725
|
$dropdownlist-hovered-text,
|
|
@@ -27734,7 +27740,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27734
27740
|
.k-link {
|
|
27735
27741
|
|
|
27736
27742
|
&:hover,
|
|
27737
|
-
&.k-state-hover
|
|
27743
|
+
&.k-state-hover,
|
|
27738
27744
|
&.k-hover {
|
|
27739
27745
|
@include fill(
|
|
27740
27746
|
$kendo-list-item-hover-text,
|
|
@@ -27742,7 +27748,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27742
27748
|
);
|
|
27743
27749
|
}
|
|
27744
27750
|
|
|
27745
|
-
&.k-state-selected
|
|
27751
|
+
&.k-state-selected,
|
|
27746
27752
|
&.k-selected {
|
|
27747
27753
|
@include fill(
|
|
27748
27754
|
$kendo-list-item-selected-text,
|
|
@@ -27782,7 +27788,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27782
27788
|
);
|
|
27783
27789
|
|
|
27784
27790
|
&:hover,
|
|
27785
|
-
&.k-state-hover
|
|
27791
|
+
&.k-state-hover,
|
|
27786
27792
|
&.k-hover {
|
|
27787
27793
|
@include fill(
|
|
27788
27794
|
$pager-text,
|
|
@@ -28049,7 +28055,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
28049
28055
|
opacity: $stepper-optional-label-opacity;
|
|
28050
28056
|
}
|
|
28051
28057
|
.k-step-disabled .k-step-label-optional,
|
|
28052
|
-
&.k-state-disabled .k-step-label-optional
|
|
28058
|
+
&.k-state-disabled .k-step-label-optional,
|
|
28053
28059
|
&.k-disabled .k-step-label-optional {
|
|
28054
28060
|
color: inherit;
|
|
28055
28061
|
}
|
|
@@ -28367,7 +28373,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
28367
28373
|
$bg: $stepper-progressbar-bg
|
|
28368
28374
|
);
|
|
28369
28375
|
|
|
28370
|
-
.k-state-selected
|
|
28376
|
+
.k-state-selected,
|
|
28371
28377
|
.k-selected {
|
|
28372
28378
|
@include fill(
|
|
28373
28379
|
$color: $stepper-progressbar-fill-text,
|
|
@@ -28618,13 +28624,13 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28618
28624
|
position: relative;
|
|
28619
28625
|
z-index: 1;
|
|
28620
28626
|
|
|
28621
|
-
&.k-state-active
|
|
28627
|
+
&.k-state-active,
|
|
28622
28628
|
&.k-active {
|
|
28623
28629
|
display: block;
|
|
28624
28630
|
}
|
|
28625
28631
|
|
|
28626
28632
|
&:focus,
|
|
28627
|
-
&.k-state-focused
|
|
28633
|
+
&.k-state-focused,
|
|
28628
28634
|
&.k-focus {
|
|
28629
28635
|
outline-width: 1px;
|
|
28630
28636
|
outline-style: dotted;
|
|
@@ -28713,7 +28719,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28713
28719
|
margin-left: $tabstrip-item-gap;
|
|
28714
28720
|
}
|
|
28715
28721
|
|
|
28716
|
-
.k-item.k-state-active
|
|
28722
|
+
.k-item.k-state-active,
|
|
28717
28723
|
.k-item.k-active {
|
|
28718
28724
|
border-bottom-color: transparent;
|
|
28719
28725
|
}
|
|
@@ -28743,7 +28749,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28743
28749
|
margin-left: $tabstrip-item-gap;
|
|
28744
28750
|
}
|
|
28745
28751
|
|
|
28746
|
-
.k-item.k-state-active
|
|
28752
|
+
.k-item.k-state-active,
|
|
28747
28753
|
.k-item.k-active {
|
|
28748
28754
|
border-top-color: transparent;
|
|
28749
28755
|
}
|
|
@@ -28777,7 +28783,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28777
28783
|
margin-top: $tabstrip-item-gap;
|
|
28778
28784
|
}
|
|
28779
28785
|
|
|
28780
|
-
.k-item.k-state-active
|
|
28786
|
+
.k-item.k-state-active,
|
|
28781
28787
|
.k-item.k-active {
|
|
28782
28788
|
border-right-color: transparent;
|
|
28783
28789
|
}
|
|
@@ -28813,7 +28819,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28813
28819
|
margin-top: $tabstrip-item-gap;
|
|
28814
28820
|
}
|
|
28815
28821
|
|
|
28816
|
-
.k-item.k-state-active
|
|
28822
|
+
.k-item.k-state-active,
|
|
28817
28823
|
.k-item.k-active {
|
|
28818
28824
|
border-left-color: transparent;
|
|
28819
28825
|
}
|
|
@@ -28859,7 +28865,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28859
28865
|
border-left-width: $tabstrip-indicator-size;
|
|
28860
28866
|
}
|
|
28861
28867
|
}
|
|
28862
|
-
.k-item.k-state-active::after
|
|
28868
|
+
.k-item.k-state-active::after,
|
|
28863
28869
|
.k-item.k-active::after {
|
|
28864
28870
|
display: block;
|
|
28865
28871
|
}
|
|
@@ -28933,7 +28939,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28933
28939
|
);
|
|
28934
28940
|
|
|
28935
28941
|
&:hover,
|
|
28936
|
-
&.k-state-hover
|
|
28942
|
+
&.k-state-hover,
|
|
28937
28943
|
&.k-hover {
|
|
28938
28944
|
@include fill(
|
|
28939
28945
|
$tabstrip-item-hovered-text,
|
|
@@ -28946,7 +28952,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28946
28952
|
&:active,
|
|
28947
28953
|
&.k-state-active,
|
|
28948
28954
|
&.k-active,
|
|
28949
|
-
&.k-state-selected
|
|
28955
|
+
&.k-state-selected,
|
|
28950
28956
|
&.k-selected {
|
|
28951
28957
|
@include fill(
|
|
28952
28958
|
$tabstrip-item-selected-text,
|
|
@@ -28957,7 +28963,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28957
28963
|
}
|
|
28958
28964
|
|
|
28959
28965
|
&:focus,
|
|
28960
|
-
&.k-state-focused
|
|
28966
|
+
&.k-state-focused,
|
|
28961
28967
|
&.k-focus {
|
|
28962
28968
|
@include box-shadow( $tabstrip-item-focused-shadow );
|
|
28963
28969
|
}
|
|
@@ -28980,7 +28986,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28980
28986
|
);
|
|
28981
28987
|
|
|
28982
28988
|
&:focus,
|
|
28983
|
-
&.k-state-focused
|
|
28989
|
+
&.k-state-focused,
|
|
28984
28990
|
&.k-focus {
|
|
28985
28991
|
outline-color: $tabstrip-content-border-focused;
|
|
28986
28992
|
}
|
|
@@ -28991,7 +28997,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28991
28997
|
@if ($tabstrip-indicator-size) {
|
|
28992
28998
|
|
|
28993
28999
|
.k-tabstrip-items-wrapper {
|
|
28994
|
-
.k-item.k-state-active::after
|
|
29000
|
+
.k-item.k-state-active::after,
|
|
28995
29001
|
.k-item.k-active::after {
|
|
28996
29002
|
border-color: $tabstrip-indicator-color;
|
|
28997
29003
|
}
|
|
@@ -29010,7 +29016,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29010
29016
|
|
|
29011
29017
|
> .k-tabstrip-items .k-item.k-state-hover,
|
|
29012
29018
|
> .k-tabstrip-items .k-item.k-hover,
|
|
29013
|
-
> .k-tabstrip-items .k-item.k-state-active
|
|
29019
|
+
> .k-tabstrip-items .k-item.k-state-active,
|
|
29014
29020
|
> .k-tabstrip-items .k-item.k-active {
|
|
29015
29021
|
border-bottom-color: transparent;
|
|
29016
29022
|
}
|
|
@@ -29019,7 +29025,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29019
29025
|
|
|
29020
29026
|
> .k-tabstrip-items .k-item.k-state-hover,
|
|
29021
29027
|
> .k-tabstrip-items .k-item.k-hover,
|
|
29022
|
-
> .k-tabstrip-items .k-item.k-state-active
|
|
29028
|
+
> .k-tabstrip-items .k-item.k-state-active,
|
|
29023
29029
|
> .k-tabstrip-items .k-item.k-active {
|
|
29024
29030
|
border-top-color: transparent;
|
|
29025
29031
|
}
|
|
@@ -29028,7 +29034,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29028
29034
|
|
|
29029
29035
|
> .k-tabstrip-items .k-item.k-state-hover,
|
|
29030
29036
|
> .k-tabstrip-items .k-item.k-hover,
|
|
29031
|
-
> .k-tabstrip-items .k-item.k-state-active
|
|
29037
|
+
> .k-tabstrip-items .k-item.k-state-active,
|
|
29032
29038
|
> .k-tabstrip-items .k-item.k-active {
|
|
29033
29039
|
border-right-color: transparent;
|
|
29034
29040
|
}
|
|
@@ -29037,7 +29043,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29037
29043
|
|
|
29038
29044
|
> .k-tabstrip-items .k-item.k-state-hover,
|
|
29039
29045
|
> .k-tabstrip-items .k-item.k-hover,
|
|
29040
|
-
> .k-tabstrip-items .k-item.k-state-active
|
|
29046
|
+
> .k-tabstrip-items .k-item.k-state-active,
|
|
29041
29047
|
> .k-tabstrip-items .k-item.k-active {
|
|
29042
29048
|
border-left-color: transparent;
|
|
29043
29049
|
}
|
|
@@ -29128,7 +29134,7 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
29128
29134
|
justify-content: space-between;
|
|
29129
29135
|
|
|
29130
29136
|
&:focus,
|
|
29131
|
-
&.k-state-focused
|
|
29137
|
+
&.k-state-focused,
|
|
29132
29138
|
&.k-focus {
|
|
29133
29139
|
outline-width: 1px;
|
|
29134
29140
|
outline-style: dotted;
|
|
@@ -29225,13 +29231,13 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
29225
29231
|
@include exports("wizard/theme") {
|
|
29226
29232
|
.k-wizard-step {
|
|
29227
29233
|
&:focus,
|
|
29228
|
-
&.k-state-focused
|
|
29234
|
+
&.k-state-focused,
|
|
29229
29235
|
&.k-focus {
|
|
29230
29236
|
outline-color: $wizard-step-border-focused;
|
|
29231
29237
|
}
|
|
29232
29238
|
|
|
29233
29239
|
.k-ie &:focus,
|
|
29234
|
-
.k-ie &.k-state-focused
|
|
29240
|
+
.k-ie &.k-state-focused,
|
|
29235
29241
|
.k-ie &.k-focus {
|
|
29236
29242
|
@include box-shadow($wizard-focused-shadow);
|
|
29237
29243
|
outline: none;
|
|
@@ -29402,7 +29408,7 @@ $expander-content-padding-y: $expander-content-padding-x !default;
|
|
|
29402
29408
|
$expander-border
|
|
29403
29409
|
);
|
|
29404
29410
|
|
|
29405
|
-
&.k-state-focus
|
|
29411
|
+
&.k-state-focus,
|
|
29406
29412
|
&.k-focus {
|
|
29407
29413
|
box-shadow: $expander-focus-shadow;
|
|
29408
29414
|
}
|
|
@@ -29417,13 +29423,13 @@ $expander-content-padding-y: $expander-content-padding-x !default;
|
|
|
29417
29423
|
outline: none;
|
|
29418
29424
|
|
|
29419
29425
|
&:hover,
|
|
29420
|
-
&.k-state-hover
|
|
29426
|
+
&.k-state-hover,
|
|
29421
29427
|
&.k-hover {
|
|
29422
29428
|
background-color: $expander-header-hover-bg;
|
|
29423
29429
|
}
|
|
29424
29430
|
|
|
29425
29431
|
// Should be removed
|
|
29426
|
-
&.k-state-focused
|
|
29432
|
+
&.k-state-focused,
|
|
29427
29433
|
&.k-focus {
|
|
29428
29434
|
background-color: $expander-header-focused-bg;
|
|
29429
29435
|
box-shadow: $expander-header-focused-shadow;
|
|
@@ -29796,7 +29802,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29796
29802
|
|
|
29797
29803
|
// Hover
|
|
29798
29804
|
> .k-link:hover,
|
|
29799
|
-
> .k-link.k-state-hover
|
|
29805
|
+
> .k-link.k-state-hover,
|
|
29800
29806
|
> .k-link.k-hover {
|
|
29801
29807
|
@include fill(
|
|
29802
29808
|
$panelbar-header-hovered-text,
|
|
@@ -29810,7 +29816,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29810
29816
|
> .k-link:focus,
|
|
29811
29817
|
> .k-link.k-state-focus,
|
|
29812
29818
|
> .k-link.k-focus,
|
|
29813
|
-
> .k-link.k-state-focused
|
|
29819
|
+
> .k-link.k-state-focused,
|
|
29814
29820
|
> .k-link.k-focus {
|
|
29815
29821
|
@include fill(
|
|
29816
29822
|
$panelbar-header-focused-text,
|
|
@@ -29823,7 +29829,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29823
29829
|
|
|
29824
29830
|
// Focus & Hover
|
|
29825
29831
|
> .k-link:focus:hover,
|
|
29826
|
-
> .k-link.k-state-focus.k-state-hover
|
|
29832
|
+
> .k-link.k-state-focus.k-state-hover,
|
|
29827
29833
|
> .k-link.k-focus.k-hover {
|
|
29828
29834
|
@include fill(
|
|
29829
29835
|
$panelbar-header-hovered-focused-text,
|
|
@@ -29834,7 +29840,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29834
29840
|
}
|
|
29835
29841
|
|
|
29836
29842
|
// Selected
|
|
29837
|
-
> .k-link.k-state-selected
|
|
29843
|
+
> .k-link.k-state-selected,
|
|
29838
29844
|
> .k-link.k-selected {
|
|
29839
29845
|
@include fill(
|
|
29840
29846
|
$panelbar-header-selected-text,
|
|
@@ -29852,7 +29858,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29852
29858
|
// Selected Hover
|
|
29853
29859
|
> .k-link.k-state-selected:hover,
|
|
29854
29860
|
> .k-link.k-selected:hover,
|
|
29855
|
-
> .k-link.k-state-selected.k-state-hover
|
|
29861
|
+
> .k-link.k-state-selected.k-state-hover,
|
|
29856
29862
|
> .k-link.k-selected.k-hover {
|
|
29857
29863
|
@include fill(
|
|
29858
29864
|
$panelbar-header-selected-hovered-text,
|
|
@@ -29867,7 +29873,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29867
29873
|
> .k-link.k-selected:focus,
|
|
29868
29874
|
> .k-link.k-state-selected.k-state-focus,
|
|
29869
29875
|
> .k-link.k-selected.k-focus,
|
|
29870
|
-
> .k-link.k-state-selected.k-state-focused
|
|
29876
|
+
> .k-link.k-state-selected.k-state-focused,
|
|
29871
29877
|
> .k-link.k-selected.k-focused {
|
|
29872
29878
|
@include fill(
|
|
29873
29879
|
$panelbar-header-selected-focused-text,
|
|
@@ -29882,7 +29888,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29882
29888
|
> .k-link.k-selected:hover:focus,
|
|
29883
29889
|
> .k-link.k-state-selected.k-state-hover.k-state-focus,
|
|
29884
29890
|
> .k-link.k-selected.k-hover.k-state-focus,
|
|
29885
|
-
> .k-link.k-state-selected.k-state-hover.k-state-focused
|
|
29891
|
+
> .k-link.k-state-selected.k-state-hover.k-state-focused,
|
|
29886
29892
|
> .k-link.k-selected.k-hover.k-state-focused {
|
|
29887
29893
|
@include fill(
|
|
29888
29894
|
$panelbar-header-selected-hovered-focused-text,
|
|
@@ -29903,7 +29909,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29903
29909
|
> .k-item > .k-link.k-state-hover,
|
|
29904
29910
|
> .k-item > .k-link.k-hover,
|
|
29905
29911
|
> .k-panelbar-item > .k-link:hover,
|
|
29906
|
-
> .k-panelbar-item > .k-link.k-state-hover
|
|
29912
|
+
> .k-panelbar-item > .k-link.k-state-hover,
|
|
29907
29913
|
> .k-panelbar-item > .k-link.k-hover {
|
|
29908
29914
|
@include fill(
|
|
29909
29915
|
$panelbar-item-hovered-text,
|
|
@@ -29922,7 +29928,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29922
29928
|
> .k-panelbar-item > .k-link:focus,
|
|
29923
29929
|
> .k-panelbar-item > .k-link.k-state-focus,
|
|
29924
29930
|
> .k-panelbar-item > .k-link.k-focus,
|
|
29925
|
-
> .k-panelbar-item > .k-link.k-state-focused
|
|
29931
|
+
> .k-panelbar-item > .k-link.k-state-focused,
|
|
29926
29932
|
> .k-panelbar-item > .k-link.k-focus {
|
|
29927
29933
|
@include fill(
|
|
29928
29934
|
$panelbar-item-focused-text,
|
|
@@ -29938,7 +29944,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29938
29944
|
> .k-item > .k-link.k-state-focus.k-state-hover,
|
|
29939
29945
|
> .k-item > .k-link.k-focus.k-hover,
|
|
29940
29946
|
> .k-panelbar-item > .k-link:focus:hover,
|
|
29941
|
-
> .k-panelbar-item > .k-link.k-state-focus.k-state-hover
|
|
29947
|
+
> .k-panelbar-item > .k-link.k-state-focus.k-state-hover,
|
|
29942
29948
|
> .k-panelbar-item > .k-link.k-focus.k-hover {
|
|
29943
29949
|
@include fill(
|
|
29944
29950
|
$panelbar-item-hovered-focused-text,
|
|
@@ -29951,7 +29957,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29951
29957
|
// Selected
|
|
29952
29958
|
> .k-item > .k-link.k-state-selected,
|
|
29953
29959
|
> .k-item > .k-link.k-selected,
|
|
29954
|
-
> .k-panelbar-item > .k-link.k-state-selected
|
|
29960
|
+
> .k-panelbar-item > .k-link.k-state-selected,
|
|
29955
29961
|
> .k-panelbar-item > .k-link.k-selected {
|
|
29956
29962
|
@include fill(
|
|
29957
29963
|
$panelbar-item-selected-text,
|
|
@@ -29968,7 +29974,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29968
29974
|
> .k-item > .k-link.k-selected.k-hover,
|
|
29969
29975
|
> .k-panelbar-item > .k-link.k-state-selected:hover,
|
|
29970
29976
|
> .k-panelbar-item > .k-link.k-selected:hover,
|
|
29971
|
-
> .k-panelbar-item > .k-link.k-state-selected.k-state-hover
|
|
29977
|
+
> .k-panelbar-item > .k-link.k-state-selected.k-state-hover,
|
|
29972
29978
|
> .k-panelbar-item > .k-link.k-selected.k-hover {
|
|
29973
29979
|
@include fill(
|
|
29974
29980
|
$panelbar-item-selected-hovered-text,
|
|
@@ -29989,7 +29995,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29989
29995
|
> .k-panelbar-item > .k-link.k-selected:focus,
|
|
29990
29996
|
> .k-panelbar-item > .k-link.k-state-selected.k-state-focus,
|
|
29991
29997
|
> .k-panelbar-item > .k-link.k-selected.k-focus,
|
|
29992
|
-
> .k-item > .k-link.k-state-selected.k-state-focused
|
|
29998
|
+
> .k-item > .k-link.k-state-selected.k-state-focused,
|
|
29993
29999
|
> .k-item > .k-link.k-selected.k-focused {
|
|
29994
30000
|
@include fill(
|
|
29995
30001
|
$panelbar-item-selected-focused-text,
|
|
@@ -30010,7 +30016,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
30010
30016
|
> .k-panelbar-item > .k-link.k-selected:focus:hover,
|
|
30011
30017
|
> .k-panelbar-item > .k-link.k-state-selected.k-state-focus.k-state-hover,
|
|
30012
30018
|
> .k-panelbar-item > .k-link.k-selected.k-focus.k-state-hover,
|
|
30013
|
-
> .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover
|
|
30019
|
+
> .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover,
|
|
30014
30020
|
> .k-item > .k-link.k-selected.k-focused.k-state-hover {
|
|
30015
30021
|
@include fill(
|
|
30016
30022
|
$panelbar-item-selected-hovered-focused-text,
|
|
@@ -30304,7 +30310,7 @@ $splitbar-selected-text: $selected-text !default;
|
|
|
30304
30310
|
.k-splitbar:focus,
|
|
30305
30311
|
.k-splitbar.k-state-focus,
|
|
30306
30312
|
.k-splitbar.k-focus,
|
|
30307
|
-
.k-splitbar.k-state-focused
|
|
30313
|
+
.k-splitbar.k-state-focused,
|
|
30308
30314
|
.k-splitbar.k-focus {
|
|
30309
30315
|
color: $splitbar-selected-text;
|
|
30310
30316
|
background: $splitbar-selected-bg;
|
|
@@ -30417,7 +30423,7 @@ $tilelayout-hint-border: $component-border !default;
|
|
|
30417
30423
|
.k-tilelayout-item:focus,
|
|
30418
30424
|
.k-tilelayout-item.k-focus,
|
|
30419
30425
|
.k-tilelayout-item.k-state-focus,
|
|
30420
|
-
.k-tilelayout-item.k-state-focused
|
|
30426
|
+
.k-tilelayout-item.k-state-focused,
|
|
30421
30427
|
.k-tilelayout-item.k-focus {
|
|
30422
30428
|
@include box-shadow($tilelayout-card-focus-shadow);
|
|
30423
30429
|
}
|
|
@@ -31093,12 +31099,12 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31093
31099
|
|
|
31094
31100
|
.k-column-menu {
|
|
31095
31101
|
|
|
31096
|
-
.k-listgroup-item.k-state-selected
|
|
31102
|
+
.k-listgroup-item.k-state-selected,
|
|
31097
31103
|
.k-listgroup-item.k-selected {
|
|
31098
31104
|
color: $adaptive-grid-sort-text;
|
|
31099
31105
|
background: none;
|
|
31100
31106
|
}
|
|
31101
|
-
.k-listgroup-item.k-state-selected .k-link
|
|
31107
|
+
.k-listgroup-item.k-state-selected .k-link,
|
|
31102
31108
|
.k-listgroup-item.k-selected .k-link {
|
|
31103
31109
|
color: inherit;
|
|
31104
31110
|
}
|
|
@@ -31843,7 +31849,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31843
31849
|
&.k-i-sort-desc-sm,
|
|
31844
31850
|
&.k-i-sort-asc-sm {
|
|
31845
31851
|
vertical-align: text-top;
|
|
31846
|
-
margin-
|
|
31852
|
+
margin-inline-start: $grid-sorted-icon-spacing;
|
|
31847
31853
|
}
|
|
31848
31854
|
}
|
|
31849
31855
|
|
|
@@ -31853,7 +31859,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31853
31859
|
height: $icon-size;
|
|
31854
31860
|
font-size: $grid-sorting-index-font-size;
|
|
31855
31861
|
margin-top: $grid-sorting-index-spacing-y;
|
|
31856
|
-
margin-
|
|
31862
|
+
margin-inline-start: $grid-sorting-index-spacing-x;
|
|
31857
31863
|
}
|
|
31858
31864
|
}
|
|
31859
31865
|
|
|
@@ -32254,15 +32260,15 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32254
32260
|
}
|
|
32255
32261
|
|
|
32256
32262
|
.k-header > .k-cell-inner {
|
|
32257
|
-
margin: (-1 * $grid-header-padding-y)
|
|
32263
|
+
margin: (-1 * $grid-header-padding-y) (-1 * $grid-header-padding-x);
|
|
32258
32264
|
}
|
|
32259
32265
|
|
|
32260
32266
|
.k-filterable {
|
|
32261
32267
|
> .k-cell-inner {
|
|
32262
|
-
margin
|
|
32268
|
+
margin-inline-end: calc(-1 * #{$grid-filterable-icon-spacing});
|
|
32263
32269
|
|
|
32264
32270
|
.k-link {
|
|
32265
|
-
padding-
|
|
32271
|
+
padding-inline-end: 0;
|
|
32266
32272
|
}
|
|
32267
32273
|
}
|
|
32268
32274
|
}
|
|
@@ -32301,6 +32307,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32301
32307
|
.k-grid-filter,
|
|
32302
32308
|
.k-header-column-menu {
|
|
32303
32309
|
position: static;
|
|
32310
|
+
margin-inline-end: $grid-header-menu-icon-spacing;
|
|
32304
32311
|
}
|
|
32305
32312
|
|
|
32306
32313
|
.k-grid-filter,
|
|
@@ -32611,28 +32618,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32611
32618
|
margin-left: $icon-spacing;
|
|
32612
32619
|
margin-right: 0;
|
|
32613
32620
|
}
|
|
32614
|
-
|
|
32615
|
-
.k-header > .k-cell-inner {
|
|
32616
|
-
margin-right: (-1 * $grid-cell-padding-x);
|
|
32617
|
-
margin-left: calc(-1 * calc( #{$kendo-button-calc-size} - #{$grid-cell-padding-x}));
|
|
32618
|
-
|
|
32619
|
-
.k-sort-order {
|
|
32620
|
-
margin-right: $grid-sorting-index-spacing-x;
|
|
32621
|
-
margin-left: 0;
|
|
32622
|
-
}
|
|
32623
|
-
}
|
|
32624
|
-
|
|
32625
|
-
.k-filterable {
|
|
32626
|
-
> .k-cell-inner {
|
|
32627
|
-
margin-right: (-1 * $grid-cell-padding-x);
|
|
32628
|
-
margin-left: calc(-1 * #{$kendo-button-calc-size});
|
|
32629
|
-
|
|
32630
|
-
.k-link {
|
|
32631
|
-
padding-right: $grid-header-padding-x;
|
|
32632
|
-
padding-left: 0;
|
|
32633
|
-
}
|
|
32634
|
-
}
|
|
32635
|
-
}
|
|
32636
32621
|
}
|
|
32637
32622
|
}
|
|
32638
32623
|
|
|
@@ -32690,9 +32675,9 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32690
32675
|
}
|
|
32691
32676
|
|
|
32692
32677
|
// Hover state
|
|
32693
|
-
tbody
|
|
32694
|
-
tbody
|
|
32695
|
-
tbody
|
|
32678
|
+
tbody>tr:not(.k-detail-row):hover,
|
|
32679
|
+
tbody>tr:not(.k-detail-row).k-state-hover,
|
|
32680
|
+
tbody>tr:not(.k-detail-row).k-hover {
|
|
32696
32681
|
color: $grid-hovered-text;
|
|
32697
32682
|
background-color: $grid-hovered-bg;
|
|
32698
32683
|
}
|
|
@@ -32702,7 +32687,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32702
32687
|
th.k-selected,
|
|
32703
32688
|
td.k-state-selected,
|
|
32704
32689
|
td.k-selected,
|
|
32705
|
-
tr.k-state-selected > td
|
|
32690
|
+
tr.k-state-selected > td,
|
|
32706
32691
|
tr.k-selected > td {
|
|
32707
32692
|
color: $grid-selected-text;
|
|
32708
32693
|
background-color: $grid-selected-bg;
|
|
@@ -32753,12 +32738,12 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32753
32738
|
}
|
|
32754
32739
|
|
|
32755
32740
|
// Selected state
|
|
32756
|
-
.k-state-selected td
|
|
32741
|
+
.k-state-selected td,
|
|
32757
32742
|
.k-selected td {
|
|
32758
32743
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
32759
32744
|
}
|
|
32760
32745
|
|
|
32761
|
-
.k-state-selected.k-alt td
|
|
32746
|
+
.k-state-selected.k-alt td,
|
|
32762
32747
|
.k-selected.k-alt td {
|
|
32763
32748
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
32764
32749
|
}
|
|
@@ -32766,7 +32751,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32766
32751
|
// Selected hover
|
|
32767
32752
|
.k-state-selected:hover td,
|
|
32768
32753
|
.k-selected:hover td,
|
|
32769
|
-
.k-state-selected.k-state-hover td
|
|
32754
|
+
.k-state-selected.k-state-hover td,
|
|
32770
32755
|
.k-selected.k-hover td {
|
|
32771
32756
|
@include fill( $bg: $grid-sticky-selected-hovered-bg );
|
|
32772
32757
|
}
|
|
@@ -32826,7 +32811,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32826
32811
|
&.k-state-border-down {
|
|
32827
32812
|
box-shadow: inset 0 0 0 2px rgba( 0, 0, 0, .1 );
|
|
32828
32813
|
}
|
|
32829
|
-
&.k-state-active
|
|
32814
|
+
&.k-state-active,
|
|
32830
32815
|
&.k-active {
|
|
32831
32816
|
color: $selected-text;
|
|
32832
32817
|
background-color: $selected-bg;
|
|
@@ -32884,7 +32869,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32884
32869
|
&.k-selected .k-grid-content-sticky,
|
|
32885
32870
|
&.k-state-selected .k-grid-row-sticky,
|
|
32886
32871
|
&.k-selected .k-grid-row-sticky,
|
|
32887
|
-
td.k-grid-content-sticky.k-state-selected
|
|
32872
|
+
td.k-grid-content-sticky.k-state-selected,
|
|
32888
32873
|
td.k-grid-content-sticky.k-selected {
|
|
32889
32874
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
32890
32875
|
}
|
|
@@ -32893,7 +32878,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32893
32878
|
&.k-selected.k-alt .k-grid-content-sticky,
|
|
32894
32879
|
&.k-state-selected.k-alt .k-grid-row-sticky,
|
|
32895
32880
|
&.k-selected.k-alt .k-grid-row-sticky,
|
|
32896
|
-
&.k-alt td.k-grid-content-sticky.k-state-selected
|
|
32881
|
+
&.k-alt td.k-grid-content-sticky.k-state-selected,
|
|
32897
32882
|
&.k-alt td.k-grid-content-sticky.k-selected {
|
|
32898
32883
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
32899
32884
|
}
|
|
@@ -32904,7 +32889,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32904
32889
|
&:hover .k-grid-row-sticky,
|
|
32905
32890
|
&.k-state-hover .k-grid-content-sticky,
|
|
32906
32891
|
&.k-hover .k-grid-content-sticky,
|
|
32907
|
-
&.k-state-hover .k-grid-row-sticky
|
|
32892
|
+
&.k-state-hover .k-grid-row-sticky,
|
|
32908
32893
|
&.k-hover .k-grid-row-sticky {
|
|
32909
32894
|
background-color: $grid-sticky-hovered-bg;
|
|
32910
32895
|
}
|
|
@@ -32921,7 +32906,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32921
32906
|
&.k-selected.k-hover .k-grid-row-sticky,
|
|
32922
32907
|
&:hover td.k-grid-content-sticky.k-state-selected,
|
|
32923
32908
|
&:hover td.k-grid-content-sticky.k-selected,
|
|
32924
|
-
&.k-state-hover td.k-grid-content-sticky.k-state-selected
|
|
32909
|
+
&.k-state-hover td.k-grid-content-sticky.k-state-selected,
|
|
32925
32910
|
&.k-hover td.k-grid-content-sticky.k-selected {
|
|
32926
32911
|
background-color: $grid-sticky-selected-hovered-bg;
|
|
32927
32912
|
}
|
|
@@ -32935,7 +32920,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32935
32920
|
background-color: $grid-sticky-bg;
|
|
32936
32921
|
|
|
32937
32922
|
&:hover,
|
|
32938
|
-
&.k-state-hover
|
|
32923
|
+
&.k-state-hover,
|
|
32939
32924
|
&.k-hover {
|
|
32940
32925
|
background-color: $grid-sticky-hovered-bg;
|
|
32941
32926
|
}
|
|
@@ -32947,7 +32932,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32947
32932
|
background-color: $grid-sticky-bg;
|
|
32948
32933
|
|
|
32949
32934
|
&:hover td,
|
|
32950
|
-
&.k-state-hover td
|
|
32935
|
+
&.k-state-hover td,
|
|
32951
32936
|
&.k-hover td {
|
|
32952
32937
|
background-color: $grid-sticky-hovered-bg;
|
|
32953
32938
|
}
|
|
@@ -32965,7 +32950,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32965
32950
|
.k-selected.k-grid-row-sticky td,
|
|
32966
32951
|
.k-grid-row-sticky td.k-state-selected,
|
|
32967
32952
|
.k-grid-row-sticky td.k-selected,
|
|
32968
|
-
.k-state-selected.k-grid-content-sticky
|
|
32953
|
+
.k-state-selected.k-grid-content-sticky,
|
|
32969
32954
|
.k-selected.k-grid-content-sticky {
|
|
32970
32955
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
32971
32956
|
}
|
|
@@ -32974,7 +32959,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32974
32959
|
tr.k-selected.k-alt .k-grid-content-sticky,
|
|
32975
32960
|
.k-state-selected.k-alt.k-grid-row-sticky td,
|
|
32976
32961
|
.k-selected.k-alt.k-grid-row-sticky td,
|
|
32977
|
-
.k-alt .k-state-selected.k-grid-content-sticky
|
|
32962
|
+
.k-alt .k-state-selected.k-grid-content-sticky,
|
|
32978
32963
|
.k-alt .k-selected.k-grid-content-sticky {
|
|
32979
32964
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
32980
32965
|
}
|
|
@@ -32990,7 +32975,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32990
32975
|
.k-grid-row-sticky.k-alt.k-state-hover td,
|
|
32991
32976
|
.k-grid-row-sticky.k-alt.k-hover td,
|
|
32992
32977
|
.k-alt:hover .k-grid-content-sticky,
|
|
32993
|
-
.k-alt.k-state-hover .k-grid-content-sticky
|
|
32978
|
+
.k-alt.k-state-hover .k-grid-content-sticky,
|
|
32994
32979
|
.k-alt.k-hover .k-grid-content-sticky {
|
|
32995
32980
|
background-color: $grid-sticky-hovered-bg;
|
|
32996
32981
|
}
|
|
@@ -33018,7 +33003,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33018
33003
|
.k-grid-row-sticky.k-hover td.k-selected,
|
|
33019
33004
|
tr:hover .k-grid-content-sticky.k-state-selected,
|
|
33020
33005
|
tr:hover .k-grid-content-sticky.k-selected,
|
|
33021
|
-
tr.k-state-hover .k-grid-content-sticky.k-state-selected
|
|
33006
|
+
tr.k-state-hover .k-grid-content-sticky.k-state-selected,
|
|
33022
33007
|
tr.k-hover .k-grid-content-sticky.k-selected {
|
|
33023
33008
|
background-color: $grid-sticky-selected-hovered-bg;
|
|
33024
33009
|
}
|
|
@@ -33030,7 +33015,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33030
33015
|
}
|
|
33031
33016
|
|
|
33032
33017
|
&:hover .k-grid-content-sticky,
|
|
33033
|
-
&.k-state-hover .k-grid-content-sticky
|
|
33018
|
+
&.k-state-hover .k-grid-content-sticky,
|
|
33034
33019
|
&.k-hover .k-grid-content-sticky {
|
|
33035
33020
|
@include fill( $bg: $grid-sticky-hovered-bg );
|
|
33036
33021
|
}
|
|
@@ -33043,7 +33028,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33043
33028
|
}
|
|
33044
33029
|
|
|
33045
33030
|
&:hover .k-grid-footer-sticky,
|
|
33046
|
-
&.k-state-hover .k-grid-footer-sticky
|
|
33031
|
+
&.k-state-hover .k-grid-footer-sticky,
|
|
33047
33032
|
&.k-hover .k-grid-footer-sticky {
|
|
33048
33033
|
@include fill( $bg: $grid-sticky-footer-hovered-bg );
|
|
33049
33034
|
}
|
|
@@ -33086,7 +33071,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33086
33071
|
);
|
|
33087
33072
|
}
|
|
33088
33073
|
.k-columnmenu-item:focus,
|
|
33089
|
-
.k-columnmenu-item.k-state-focus
|
|
33074
|
+
.k-columnmenu-item.k-state-focus,
|
|
33090
33075
|
.k-columnmenu-item.k-focus {
|
|
33091
33076
|
@include box-shadow( $kendo-list-item-focus-shadow );
|
|
33092
33077
|
}
|
|
@@ -33096,7 +33081,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33096
33081
|
}
|
|
33097
33082
|
|
|
33098
33083
|
.k-columnmenu-item {
|
|
33099
|
-
&.k-state-selected
|
|
33084
|
+
&.k-state-selected,
|
|
33100
33085
|
&.k-selected {
|
|
33101
33086
|
@include fill(
|
|
33102
33087
|
$kendo-list-item-selected-text,
|
|
@@ -33122,7 +33107,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33122
33107
|
);
|
|
33123
33108
|
|
|
33124
33109
|
&:hover,
|
|
33125
|
-
&.k-state-hover
|
|
33110
|
+
&.k-state-hover,
|
|
33126
33111
|
&.k-hover {
|
|
33127
33112
|
@include fill(
|
|
33128
33113
|
$kendo-list-item-hover-text,
|
|
@@ -33130,7 +33115,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33130
33115
|
);
|
|
33131
33116
|
}
|
|
33132
33117
|
|
|
33133
|
-
&.k-state-selected
|
|
33118
|
+
&.k-state-selected,
|
|
33134
33119
|
&.k-selected {
|
|
33135
33120
|
@include fill(
|
|
33136
33121
|
$kendo-list-item-selected-text,
|
|
@@ -33139,7 +33124,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33139
33124
|
}
|
|
33140
33125
|
|
|
33141
33126
|
&:focus,
|
|
33142
|
-
&.k-state-focused
|
|
33127
|
+
&.k-state-focused,
|
|
33143
33128
|
&.k-focus {
|
|
33144
33129
|
@include box-shadow( $kendo-list-item-focus-shadow );
|
|
33145
33130
|
}
|
|
@@ -33378,7 +33363,7 @@ $listview-item-focus-shadow: inset 0 0 0 3px rgba( $listview-text, .15 ) !defaul
|
|
|
33378
33363
|
// Listview content
|
|
33379
33364
|
.k-listview-content {
|
|
33380
33365
|
|
|
33381
|
-
> .k-state-focused
|
|
33366
|
+
> .k-state-focused,
|
|
33382
33367
|
> .k-focus {
|
|
33383
33368
|
@include fill(
|
|
33384
33369
|
$listview-item-focus-text,
|
|
@@ -33388,7 +33373,7 @@ $listview-item-focus-shadow: inset 0 0 0 3px rgba( $listview-text, .15 ) !defaul
|
|
|
33388
33373
|
@include box-shadow( $listview-item-focus-shadow );
|
|
33389
33374
|
}
|
|
33390
33375
|
|
|
33391
|
-
> .k-state-selected
|
|
33376
|
+
> .k-state-selected,
|
|
33392
33377
|
> .k-selected {
|
|
33393
33378
|
@include fill(
|
|
33394
33379
|
$listview-item-selected-text,
|
|
@@ -33769,7 +33754,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
33769
33754
|
overflow: hidden;
|
|
33770
33755
|
|
|
33771
33756
|
// disabled cells in the Spreadsheet should allow navigation if link is used
|
|
33772
|
-
.k-state-disabled
|
|
33757
|
+
.k-state-disabled,
|
|
33773
33758
|
.k-disabled {
|
|
33774
33759
|
pointer-events: auto;
|
|
33775
33760
|
}
|
|
@@ -34331,7 +34316,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34331
34316
|
background-position: 50% 50%;
|
|
34332
34317
|
|
|
34333
34318
|
&:hover div,
|
|
34334
|
-
&.k-state-hovered div
|
|
34319
|
+
&.k-state-hovered div,
|
|
34335
34320
|
&.k-hover div {
|
|
34336
34321
|
margin: 0;
|
|
34337
34322
|
align-self: center;
|
|
@@ -34397,7 +34382,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34397
34382
|
.k-spreadsheet-insert-image-dialog {
|
|
34398
34383
|
.k-spreadsheet-has-image {
|
|
34399
34384
|
&:hover,
|
|
34400
|
-
&.k-state-hovered
|
|
34385
|
+
&.k-state-hovered,
|
|
34401
34386
|
&.k-hover {
|
|
34402
34387
|
border-radius: $spreadsheet-insert-image-dialog-preview-overlay-border-radius;
|
|
34403
34388
|
}
|
|
@@ -34574,7 +34559,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34574
34559
|
);
|
|
34575
34560
|
box-shadow: inset 0 0 0 1px $kendo-button-border;
|
|
34576
34561
|
|
|
34577
|
-
&.k-state-active
|
|
34562
|
+
&.k-state-active,
|
|
34578
34563
|
&.k-active {
|
|
34579
34564
|
@include fill(
|
|
34580
34565
|
$kendo-button-active-text,
|
|
@@ -34601,7 +34586,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34601
34586
|
> .k-menu,
|
|
34602
34587
|
> .k-menu:not(.k-context-menu) {
|
|
34603
34588
|
.k-item {
|
|
34604
|
-
&.k-state-hover
|
|
34589
|
+
&.k-state-hover,
|
|
34605
34590
|
&.k-hover {
|
|
34606
34591
|
@include fill(
|
|
34607
34592
|
$kendo-list-item-hover-text,
|
|
@@ -34632,13 +34617,13 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34632
34617
|
|
|
34633
34618
|
.k-spreadsheet-has-image {
|
|
34634
34619
|
&:hover,
|
|
34635
|
-
&.k-state-hovered
|
|
34620
|
+
&.k-state-hovered,
|
|
34636
34621
|
&.k-hover {
|
|
34637
34622
|
box-shadow: $spreadsheet-insert-image-dialog-preview-overlay-shadow;
|
|
34638
34623
|
}
|
|
34639
34624
|
|
|
34640
34625
|
&:hover div,
|
|
34641
|
-
&.k-state-hovered div
|
|
34626
|
+
&.k-state-hovered div,
|
|
34642
34627
|
&.k-hover div {
|
|
34643
34628
|
color: $spreadsheet-insert-image-dialog-overlay-hovered-text;
|
|
34644
34629
|
}
|
|
@@ -34673,7 +34658,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34673
34658
|
.k-button {}
|
|
34674
34659
|
|
|
34675
34660
|
.k-button:hover,
|
|
34676
|
-
.k-button.k-state-hover
|
|
34661
|
+
.k-button.k-state-hover,
|
|
34677
34662
|
.k-button.k-hover {
|
|
34678
34663
|
@include fill(
|
|
34679
34664
|
$kendo-list-item-hover-text,
|
|
@@ -34683,7 +34668,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34683
34668
|
.k-button:active,
|
|
34684
34669
|
.k-button.k-state-active,
|
|
34685
34670
|
.k-button.k-active,
|
|
34686
|
-
.k-button.k-state-selected
|
|
34671
|
+
.k-button.k-state-selected,
|
|
34687
34672
|
.k-button.k-selected {
|
|
34688
34673
|
@include fill(
|
|
34689
34674
|
$kendo-list-item-selected-text,
|
|
@@ -35660,7 +35645,7 @@ $pivotgrid-remove-text: null !default;
|
|
|
35660
35645
|
// Selected state
|
|
35661
35646
|
.k-pivotgrid-cell.k-state-selected,
|
|
35662
35647
|
.k-pivotgrid-cell.k-selected,
|
|
35663
|
-
.k-pivotgrid-row.k-state-selected > .k-pivotgrid-cell
|
|
35648
|
+
.k-pivotgrid-row.k-state-selected > .k-pivotgrid-cell,
|
|
35664
35649
|
.k-pivotgrid-row.k-selected > .k-pivotgrid-cell {
|
|
35665
35650
|
@include fill (
|
|
35666
35651
|
$pivotgrid-selected-text,
|
|
@@ -35892,7 +35877,7 @@ $treelist-footer-row-border-width: 1px !default;
|
|
|
35892
35877
|
}
|
|
35893
35878
|
|
|
35894
35879
|
.k-treelist-dragging,
|
|
35895
|
-
.k-treelist-dragging .k-state-hover
|
|
35880
|
+
.k-treelist-dragging .k-state-hover,
|
|
35896
35881
|
.k-treelist-dragging .k-hover {
|
|
35897
35882
|
cursor: default;
|
|
35898
35883
|
}
|
|
@@ -36658,7 +36643,7 @@ $filemanager-preview-icon-border: null !default;
|
|
|
36658
36643
|
);
|
|
36659
36644
|
}
|
|
36660
36645
|
|
|
36661
|
-
&.k-state-selected .k-file-icon
|
|
36646
|
+
&.k-state-selected .k-file-icon,
|
|
36662
36647
|
&.k-selected .k-file-icon {
|
|
36663
36648
|
@include fill(
|
|
36664
36649
|
inherit,
|
|
@@ -37122,7 +37107,7 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
37122
37107
|
);
|
|
37123
37108
|
}
|
|
37124
37109
|
.k-taskboard-column:focus,
|
|
37125
|
-
.k-taskboard-column.k-state-focus
|
|
37110
|
+
.k-taskboard-column.k-state-focus,
|
|
37126
37111
|
.k-taskboard-column.k-focus {
|
|
37127
37112
|
@include fill(
|
|
37128
37113
|
$taskboard-column-focus-text,
|
|
@@ -37325,7 +37310,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
37325
37310
|
pointer-events: auto;
|
|
37326
37311
|
}
|
|
37327
37312
|
|
|
37328
|
-
.k-editor-content.k-state-focused
|
|
37313
|
+
.k-editor-content.k-state-focused,
|
|
37329
37314
|
.k-editor-content.k-focus {
|
|
37330
37315
|
outline-width: 1px;
|
|
37331
37316
|
outline-style: dashed;
|
|
@@ -37779,7 +37764,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
37779
37764
|
display: block;
|
|
37780
37765
|
margin: auto;
|
|
37781
37766
|
|
|
37782
|
-
&.k-state-selected
|
|
37767
|
+
&.k-state-selected,
|
|
37783
37768
|
&.k-selected {
|
|
37784
37769
|
color: inherit;
|
|
37785
37770
|
border-width: 0;
|
|
@@ -38002,7 +37987,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
38002
37987
|
|
|
38003
37988
|
kendo-editor {
|
|
38004
37989
|
&.k-readonly {
|
|
38005
|
-
.k-editor-content.k-state-focused
|
|
37990
|
+
.k-editor-content.k-state-focused,
|
|
38006
37991
|
.k-editor-content.k-focus {
|
|
38007
37992
|
outline-color: $body-text;
|
|
38008
37993
|
}
|
|
@@ -38040,7 +38025,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
38040
38025
|
|
|
38041
38026
|
// Hover & Actve state
|
|
38042
38027
|
&:hover,
|
|
38043
|
-
&.k-state-active
|
|
38028
|
+
&.k-state-active,
|
|
38044
38029
|
&.k-active {
|
|
38045
38030
|
border-color: $panel-border;
|
|
38046
38031
|
}
|
|
@@ -38058,7 +38043,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
38058
38043
|
|
|
38059
38044
|
// Insert table
|
|
38060
38045
|
.k-ct-popup {
|
|
38061
|
-
.k-state-selected
|
|
38046
|
+
.k-state-selected,
|
|
38062
38047
|
.k-selected {
|
|
38063
38048
|
@include fill( $selected-text, $selected-bg, $selected-border, none );
|
|
38064
38049
|
}
|
|
@@ -38616,7 +38601,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
38616
38601
|
}
|
|
38617
38602
|
}
|
|
38618
38603
|
|
|
38619
|
-
tr.k-state-selected > td:last-child
|
|
38604
|
+
tr.k-state-selected > td:last-child,
|
|
38620
38605
|
tr.k-selected > td:last-child {
|
|
38621
38606
|
background: transparent;
|
|
38622
38607
|
}
|
|
@@ -38886,7 +38871,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
38886
38871
|
border-color: currentColor;
|
|
38887
38872
|
position: absolute;
|
|
38888
38873
|
}
|
|
38889
|
-
.k-gantt-line.k-state-selected
|
|
38874
|
+
.k-gantt-line.k-state-selected,
|
|
38890
38875
|
.k-gantt-line.k-selected {
|
|
38891
38876
|
z-index: 3;
|
|
38892
38877
|
}
|
|
@@ -38960,7 +38945,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
38960
38945
|
transform: translate(-50%, -50%);
|
|
38961
38946
|
}
|
|
38962
38947
|
.k-task-dot:hover::before,
|
|
38963
|
-
.k-task-dot.k-state-hover::before
|
|
38948
|
+
.k-task-dot.k-state-hover::before,
|
|
38964
38949
|
.k-task-dot.k-hover::before {
|
|
38965
38950
|
border-width: 1px;
|
|
38966
38951
|
}
|
|
@@ -39434,7 +39419,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39434
39419
|
$border: $gantt-milestone-border
|
|
39435
39420
|
);
|
|
39436
39421
|
}
|
|
39437
|
-
.k-task-milestone.k-state-selected .k-task-milestone-content
|
|
39422
|
+
.k-task-milestone.k-state-selected .k-task-milestone-content,
|
|
39438
39423
|
.k-task-milestone.k-selected .k-task-milestone-content {
|
|
39439
39424
|
@include fill(
|
|
39440
39425
|
$bg: $gantt-milestone-selected-bg,
|
|
@@ -39449,7 +39434,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39449
39434
|
stroke: $gantt-line-fill;
|
|
39450
39435
|
}
|
|
39451
39436
|
|
|
39452
|
-
polyline.k-state-selected
|
|
39437
|
+
polyline.k-state-selected,
|
|
39453
39438
|
polyline.k-selected {
|
|
39454
39439
|
stroke: $gantt-line-selected-fill;
|
|
39455
39440
|
}
|
|
@@ -39503,7 +39488,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39503
39488
|
);
|
|
39504
39489
|
}
|
|
39505
39490
|
.k-task-dot:hover::before,
|
|
39506
|
-
.k-task-dot.k-state-hover::before
|
|
39491
|
+
.k-task-dot.k-state-hover::before,
|
|
39507
39492
|
.k-task-dot.k-hover::before {
|
|
39508
39493
|
@include fill(
|
|
39509
39494
|
$bg: $gantt-dot-hover-bg,
|
|
@@ -39529,7 +39514,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39529
39514
|
);
|
|
39530
39515
|
}
|
|
39531
39516
|
}
|
|
39532
|
-
.k-task-milestone.k-state-selected
|
|
39517
|
+
.k-task-milestone.k-state-selected,
|
|
39533
39518
|
.k-task-milestone.k-selected {
|
|
39534
39519
|
background-image: none;
|
|
39535
39520
|
@include fill(
|
|
@@ -39560,7 +39545,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39560
39545
|
.k-task-advanced .k-task-summary-complete {
|
|
39561
39546
|
color: $gantt-advanced-bg;
|
|
39562
39547
|
}
|
|
39563
|
-
.k-task-summary.k-state-selected
|
|
39548
|
+
.k-task-summary.k-state-selected,
|
|
39564
39549
|
.k-task-summary.k-selected {
|
|
39565
39550
|
color: $gantt-summary-selected-bg;
|
|
39566
39551
|
|
|
@@ -39604,7 +39589,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39604
39589
|
$bg: $gantt-advanced-bg
|
|
39605
39590
|
);
|
|
39606
39591
|
}
|
|
39607
|
-
.k-task-single.k-state-selected
|
|
39592
|
+
.k-task-single.k-state-selected,
|
|
39608
39593
|
.k-task-single.k-selected {
|
|
39609
39594
|
@include fill(
|
|
39610
39595
|
$gantt-task-selected-text,
|
|
@@ -39621,7 +39606,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39621
39606
|
.k-gantt-line {
|
|
39622
39607
|
color: $gantt-line-fill;
|
|
39623
39608
|
}
|
|
39624
|
-
.k-gantt-line.k-state-selected
|
|
39609
|
+
.k-gantt-line.k-state-selected,
|
|
39625
39610
|
.k-gantt-line.k-selected {
|
|
39626
39611
|
color: $gantt-line-selected-fill;
|
|
39627
39612
|
}
|
|
@@ -40280,7 +40265,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40280
40265
|
}
|
|
40281
40266
|
|
|
40282
40267
|
&:hover,
|
|
40283
|
-
&.k-state-hover
|
|
40268
|
+
&.k-state-hover,
|
|
40284
40269
|
&.k-hover {
|
|
40285
40270
|
.k-event-delete {
|
|
40286
40271
|
opacity: 1;
|
|
@@ -40346,7 +40331,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40346
40331
|
|
|
40347
40332
|
// Hover
|
|
40348
40333
|
&:hover,
|
|
40349
|
-
&.k-state-hover
|
|
40334
|
+
&.k-state-hover,
|
|
40350
40335
|
&.k-hover {
|
|
40351
40336
|
.k-event-actions .k-event-delete,
|
|
40352
40337
|
.k-resize-handle {
|
|
@@ -40608,7 +40593,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40608
40593
|
.k-hover .k-task > .k-event-delete,
|
|
40609
40594
|
.k-scheduler-content tr:hover .k-event-delete,
|
|
40610
40595
|
.k-scheduler-content .k-scheduler-row:hover .k-event-delete,
|
|
40611
|
-
.k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete
|
|
40596
|
+
.k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete,
|
|
40612
40597
|
.k-scheduler-content .k-scheduler-row.k-hover .k-event-delete {
|
|
40613
40598
|
visibility: visible;
|
|
40614
40599
|
}
|
|
@@ -40682,7 +40667,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40682
40667
|
position: relative;
|
|
40683
40668
|
}
|
|
40684
40669
|
|
|
40685
|
-
td.k-state-selected
|
|
40670
|
+
td.k-state-selected,
|
|
40686
40671
|
td.k-selected {
|
|
40687
40672
|
background-color: inherit;
|
|
40688
40673
|
}
|
|
@@ -41065,7 +41050,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41065
41050
|
|
|
41066
41051
|
.k-scheduler-layout td.k-state-selected,
|
|
41067
41052
|
.k-scheduler-layout td.k-selected,
|
|
41068
|
-
.k-scheduler-layout .k-scheduler-cell.k-state-selected
|
|
41053
|
+
.k-scheduler-layout .k-scheduler-cell.k-state-selected,
|
|
41069
41054
|
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
41070
41055
|
background-color: rgba($selected-bg, .25);
|
|
41071
41056
|
}
|
|
@@ -41088,7 +41073,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41088
41073
|
);
|
|
41089
41074
|
@include box-shadow( $scheduler-event-shadow );
|
|
41090
41075
|
|
|
41091
|
-
&.k-state-hover
|
|
41076
|
+
&.k-state-hover,
|
|
41092
41077
|
&.k-hover {
|
|
41093
41078
|
@include fill(
|
|
41094
41079
|
$scheduler-event-hover-text,
|
|
@@ -41099,7 +41084,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41099
41084
|
@include box-shadow( $scheduler-event-hover-shadow );
|
|
41100
41085
|
}
|
|
41101
41086
|
|
|
41102
|
-
&.k-state-selected
|
|
41087
|
+
&.k-state-selected,
|
|
41103
41088
|
&.k-selected {
|
|
41104
41089
|
@include fill(
|
|
41105
41090
|
$scheduler-event-selected-text,
|
|
@@ -41169,7 +41154,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41169
41154
|
.k-scheduler-content tr.k-state-hover,
|
|
41170
41155
|
.k-scheduler-content tr.k-hover,
|
|
41171
41156
|
.k-scheduler-content .k-scheduler-row:hover,
|
|
41172
|
-
.k-scheduler-content .k-scheduler-row.k-state-hover
|
|
41157
|
+
.k-scheduler-content .k-scheduler-row.k-state-hover,
|
|
41173
41158
|
.k-scheduler-content .k-scheduler-row.k-hover {
|
|
41174
41159
|
@include fill(
|
|
41175
41160
|
$hovered-text,
|
|
@@ -41183,7 +41168,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41183
41168
|
.k-scheduler-content tr:hover .k-scheduler-groupcolumn,
|
|
41184
41169
|
.k-scheduler-content tr.k-state-hover .k-scheduler-datecolumn,
|
|
41185
41170
|
.k-scheduler-content tr.k-hover .k-scheduler-datecolumn,
|
|
41186
|
-
.k-scheduler-content tr.k-state-hover .k-scheduler-groupcolumn
|
|
41171
|
+
.k-scheduler-content tr.k-state-hover .k-scheduler-groupcolumn,
|
|
41187
41172
|
.k-scheduler-content tr.k-hover .k-scheduler-groupcolumn {
|
|
41188
41173
|
@include fill(
|
|
41189
41174
|
$scheduler-text,
|
|
@@ -41193,13 +41178,13 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41193
41178
|
}
|
|
41194
41179
|
|
|
41195
41180
|
// Selected
|
|
41196
|
-
.k-scheduler-content tr.k-state-selected
|
|
41181
|
+
.k-scheduler-content tr.k-state-selected,
|
|
41197
41182
|
.k-scheduler-content tr.k-selected {
|
|
41198
41183
|
background-color: rgba($selected-bg, .25);
|
|
41199
41184
|
}
|
|
41200
41185
|
.k-scheduler-content tr.k-state-selected .k-scheduler-datecolumn,
|
|
41201
41186
|
.k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
|
|
41202
|
-
.k-scheduler-content tr.k-state-selected .k-scheduler-groupcolumn
|
|
41187
|
+
.k-scheduler-content tr.k-state-selected .k-scheduler-groupcolumn,
|
|
41203
41188
|
.k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
|
|
41204
41189
|
background-color: $scheduler-bg;
|
|
41205
41190
|
}
|
|
@@ -41217,7 +41202,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41217
41202
|
@include fill( $bg: $scheduler-yearview-indicator-bg );
|
|
41218
41203
|
}
|
|
41219
41204
|
|
|
41220
|
-
.k-state-selected .k-day-indicator
|
|
41205
|
+
.k-state-selected .k-day-indicator,
|
|
41221
41206
|
.k-selected .k-day-indicator {
|
|
41222
41207
|
@include fill( $bg: $scheduler-yearview-indicator-selected-bg );
|
|
41223
41208
|
}
|
|
@@ -41521,7 +41506,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
41521
41506
|
|
|
41522
41507
|
|
|
41523
41508
|
// Message states
|
|
41524
|
-
.k-message.k-state-selected
|
|
41509
|
+
.k-message.k-state-selected,
|
|
41525
41510
|
.k-message.k-selected {
|
|
41526
41511
|
margin-bottom: $chat-item-spacing-y;
|
|
41527
41512
|
border: 0;
|
|
@@ -41731,7 +41716,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
41731
41716
|
flex: 0 0 auto;
|
|
41732
41717
|
}
|
|
41733
41718
|
|
|
41734
|
-
&.k-state-selected
|
|
41719
|
+
&.k-state-selected,
|
|
41735
41720
|
&.k-selected {
|
|
41736
41721
|
background: none;
|
|
41737
41722
|
}
|
|
@@ -41968,7 +41953,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
41968
41953
|
.k-bubble:hover {
|
|
41969
41954
|
@include box-shadow( $chat-bubble-hover-shadow );
|
|
41970
41955
|
}
|
|
41971
|
-
.k-state-selected .k-bubble
|
|
41956
|
+
.k-state-selected .k-bubble,
|
|
41972
41957
|
.k-selected .k-bubble {
|
|
41973
41958
|
@include box-shadow( $chat-bubble-selected-shadow );
|
|
41974
41959
|
}
|
|
@@ -41984,7 +41969,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
41984
41969
|
.k-alt .k-bubble:hover {
|
|
41985
41970
|
@include box-shadow( $chat-alt-bubble-hover-shadow );
|
|
41986
41971
|
}
|
|
41987
|
-
.k-alt .k-state-selected .k-bubble
|
|
41972
|
+
.k-alt .k-state-selected .k-bubble,
|
|
41988
41973
|
.k-alt .k-selected .k-bubble {
|
|
41989
41974
|
@include box-shadow( $chat-alt-bubble-selected-shadow );
|
|
41990
41975
|
}
|
|
@@ -42789,7 +42774,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
42789
42774
|
color: $body-text;
|
|
42790
42775
|
}
|
|
42791
42776
|
|
|
42792
|
-
.k-timeline-arrow.k-state-disabled
|
|
42777
|
+
.k-timeline-arrow.k-state-disabled,
|
|
42793
42778
|
.k-timeline-arrow.k-disabled {
|
|
42794
42779
|
opacity: 1; // The arrow button in disabled mode should have a solid background
|
|
42795
42780
|
color: $timeline-track-arrow-disabled-text;
|
|
@@ -42810,7 +42795,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
42810
42795
|
background-color: $timeline-flag-bg;
|
|
42811
42796
|
}
|
|
42812
42797
|
|
|
42813
|
-
.k-timeline-track-item.k-state-focus .k-timeline-circle
|
|
42798
|
+
.k-timeline-track-item.k-state-focus .k-timeline-circle,
|
|
42814
42799
|
.k-timeline-track-item.k-focus .k-timeline-circle {
|
|
42815
42800
|
@include box-shadow( $timeline-track-item-focus-shadow );
|
|
42816
42801
|
}
|
|
@@ -43516,7 +43501,7 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
43516
43501
|
outline-width: 0;
|
|
43517
43502
|
|
|
43518
43503
|
&:focus,
|
|
43519
|
-
&.k-state-focus
|
|
43504
|
+
&.k-state-focus,
|
|
43520
43505
|
&.k-focus {
|
|
43521
43506
|
color: $scrollview-navigation-color;
|
|
43522
43507
|
opacity: $scrollview-navigation-hover-opacity;
|
|
@@ -43527,7 +43512,7 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
43527
43512
|
}
|
|
43528
43513
|
|
|
43529
43514
|
&:hover,
|
|
43530
|
-
&.k-state-hover
|
|
43515
|
+
&.k-state-hover,
|
|
43531
43516
|
&.k-hover {
|
|
43532
43517
|
color: $scrollview-navigation-color;
|
|
43533
43518
|
opacity: $scrollview-navigation-hover-opacity;
|
|
@@ -43549,14 +43534,14 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
43549
43534
|
|
|
43550
43535
|
|
|
43551
43536
|
&:focus,
|
|
43552
|
-
&.k-state-focused
|
|
43537
|
+
&.k-state-focused,
|
|
43553
43538
|
&.k-focus {
|
|
43554
43539
|
box-shadow: $scrollview-pagebutton-shadow;
|
|
43555
43540
|
}
|
|
43556
43541
|
}
|
|
43557
43542
|
|
|
43558
43543
|
.k-scrollview-nav > .k-link:hover,
|
|
43559
|
-
.k-scrollview-nav > .k-link.k-state-hover
|
|
43544
|
+
.k-scrollview-nav > .k-link.k-state-hover,
|
|
43560
43545
|
.k-scrollview-nav > .k-link.k-hover {
|
|
43561
43546
|
box-shadow: $scrollview-pagebutton-shadow;
|
|
43562
43547
|
}
|
|
@@ -44375,7 +44360,7 @@ $treemap-line-height: $line-height !default;
|
|
|
44375
44360
|
.k-leaf.k-inverse {
|
|
44376
44361
|
color: $component-text;
|
|
44377
44362
|
}
|
|
44378
|
-
.k-leaf.k-state-hover
|
|
44363
|
+
.k-leaf.k-state-hover,
|
|
44379
44364
|
.k-leaf.k-hover {
|
|
44380
44365
|
box-shadow: inset 0 0 0 3px $component-border;
|
|
44381
44366
|
}
|
|
@@ -44874,7 +44859,7 @@ $orgchart-line-v-height: 25px !default;
|
|
|
44874
44859
|
.k-orgchart-node-group-container:focus,
|
|
44875
44860
|
.k-orgchart-node-group-container.k-focus,
|
|
44876
44861
|
.k-orgchart-node-group-container.k-state-focus,
|
|
44877
|
-
.k-orgchart-node-group-container.k-state-focused
|
|
44862
|
+
.k-orgchart-node-group-container.k-state-focused,
|
|
44878
44863
|
.k-orgchart-node-group-container.k-focus {
|
|
44879
44864
|
@include box-shadow( $orgchart-node-group-focus-shadow );
|
|
44880
44865
|
@include fill ( $border: $orgchart-node-group-focus-border );
|
|
@@ -44896,6 +44881,157 @@ $orgchart-line-v-height: 25px !default;
|
|
|
44896
44881
|
|
|
44897
44882
|
// #endregion
|
|
44898
44883
|
|
|
44884
|
+
// #endregion
|
|
44885
|
+
// #region @import "signature/_index.scss"; -> packages/bootstrap/scss/signature/_index.scss
|
|
44886
|
+
// #region @import "../core/_index.scss"; -> packages/bootstrap/scss/core/_index.scss
|
|
44887
|
+
// File already imported_once. Skipping output.
|
|
44888
|
+
// #endregion
|
|
44889
|
+
|
|
44890
|
+
// Dependencies
|
|
44891
|
+
// #region @import "../button/_index.scss"; -> packages/bootstrap/scss/button/_index.scss
|
|
44892
|
+
// File already imported_once. Skipping output.
|
|
44893
|
+
// #endregion
|
|
44894
|
+
// #region @import "../input/_index.scss"; -> packages/bootstrap/scss/input/_index.scss
|
|
44895
|
+
// File already imported_once. Skipping output.
|
|
44896
|
+
// #endregion
|
|
44897
|
+
|
|
44898
|
+
// Component
|
|
44899
|
+
// #region @import "_variables.scss"; -> packages/bootstrap/scss/signature/_variables.scss
|
|
44900
|
+
$kendo-signature-width: 246px !default;
|
|
44901
|
+
$kendo-signature-height: 108px !default;
|
|
44902
|
+
|
|
44903
|
+
$kendo-signature-maximized-width: 750px !default;
|
|
44904
|
+
$kendo-signature-maximized-height: 252px !default;
|
|
44905
|
+
|
|
44906
|
+
$kendo-signature-padding: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
|
|
44907
|
+
$kendo-signature-padding-sm: map-get( $spacing, 1 ) !default;
|
|
44908
|
+
$kendo-signature-padding-md: $kendo-signature-padding !default;
|
|
44909
|
+
$kendo-signature-padding-lg: map-get( $spacing, 2 ) !default;
|
|
44910
|
+
|
|
44911
|
+
$kendo-signature-line-width: 1px !default;
|
|
44912
|
+
$kendo-signature-line-style: dashed !default;
|
|
44913
|
+
$kendo-signature-line-color: rgba( $info, .24 ) !default;
|
|
44914
|
+
|
|
44915
|
+
$kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding} ) !default;
|
|
44916
|
+
$kendo-signature-line-size-sm: calc( 100% - 2 * #{$kendo-signature-padding-sm} ) !default;
|
|
44917
|
+
$kendo-signature-line-size-md: calc( 100% - 2 * #{$kendo-signature-padding-md} ) !default;
|
|
44918
|
+
$kendo-signature-line-size-lg: calc( 100% - 2 * #{$kendo-signature-padding-lg} ) !default;
|
|
44919
|
+
|
|
44920
|
+
$kendo-signature-line-bottom-offset: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding} ) !default;
|
|
44921
|
+
$kendo-signature-line-bottom-offset-sm: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-sm} ) !default;
|
|
44922
|
+
$kendo-signature-line-bottom-offset-md: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-md} ) !default;
|
|
44923
|
+
$kendo-signature-line-bottom-offset-lg: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-lg} ) !default;
|
|
44924
|
+
|
|
44925
|
+
$kendo-signature-sizes: (
|
|
44926
|
+
sm: (
|
|
44927
|
+
padding: $kendo-signature-padding-sm,
|
|
44928
|
+
line-size: $kendo-signature-line-size-sm,
|
|
44929
|
+
line-offset: $kendo-signature-line-bottom-offset-sm
|
|
44930
|
+
),
|
|
44931
|
+
md: (
|
|
44932
|
+
padding: $kendo-signature-padding-md,
|
|
44933
|
+
line-size: $kendo-signature-line-size-md,
|
|
44934
|
+
line-offset: $kendo-signature-line-bottom-offset-md
|
|
44935
|
+
),
|
|
44936
|
+
lg: (
|
|
44937
|
+
padding: $kendo-signature-padding-lg,
|
|
44938
|
+
line-size: $kendo-signature-line-size-lg,
|
|
44939
|
+
line-offset: $kendo-signature-line-bottom-offset-lg
|
|
44940
|
+
)
|
|
44941
|
+
) !default;
|
|
44942
|
+
|
|
44943
|
+
$kendo-signature-actions-gap: map-get( $spacing, 1 ) !default;
|
|
44944
|
+
$kendo-signature-maximized-line-width: map-get( $spacing, 1 ) - map-get( $spacing, hair ) !default;
|
|
44945
|
+
|
|
44946
|
+
// #endregion
|
|
44947
|
+
// #region @import "_layout.scss"; -> packages/bootstrap/scss/signature/_layout.scss
|
|
44948
|
+
// #region @import "~@progress/kendo-theme-default/scss/signature/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/signature/_layout.scss
|
|
44949
|
+
@include exports("signature/layout") {
|
|
44950
|
+
|
|
44951
|
+
.k-signature {
|
|
44952
|
+
width: $kendo-signature-width;
|
|
44953
|
+
height: $kendo-signature-height;
|
|
44954
|
+
position: relative;
|
|
44955
|
+
box-sizing: border-box;
|
|
44956
|
+
display: flex;
|
|
44957
|
+
flex-direction: column;
|
|
44958
|
+
justify-content: space-between;
|
|
44959
|
+
|
|
44960
|
+
&.k-signature-maximized {
|
|
44961
|
+
width: $kendo-signature-maximized-width;
|
|
44962
|
+
height: $kendo-signature-maximized-height;
|
|
44963
|
+
|
|
44964
|
+
> .k-signature-line {
|
|
44965
|
+
border-bottom-width: $kendo-signature-maximized-line-width;
|
|
44966
|
+
}
|
|
44967
|
+
}
|
|
44968
|
+
}
|
|
44969
|
+
|
|
44970
|
+
.k-signature-actions {
|
|
44971
|
+
display: flex;
|
|
44972
|
+
width: min-content;
|
|
44973
|
+
margin-inline-start: auto;
|
|
44974
|
+
gap: $kendo-signature-actions-gap;
|
|
44975
|
+
z-index: 2;
|
|
44976
|
+
}
|
|
44977
|
+
|
|
44978
|
+
.k-signature-canvas {
|
|
44979
|
+
position: absolute;
|
|
44980
|
+
top: 0;
|
|
44981
|
+
left: 0;
|
|
44982
|
+
width: 100%;
|
|
44983
|
+
height: 100%;
|
|
44984
|
+
display: block;
|
|
44985
|
+
z-index: 1;
|
|
44986
|
+
}
|
|
44987
|
+
|
|
44988
|
+
.k-signature-line {
|
|
44989
|
+
position: absolute;
|
|
44990
|
+
z-index: 0;
|
|
44991
|
+
border-bottom-width: $kendo-signature-line-width;
|
|
44992
|
+
border-bottom-style: $kendo-signature-line-style;
|
|
44993
|
+
}
|
|
44994
|
+
|
|
44995
|
+
// Sizes
|
|
44996
|
+
@each $size, $size-props in $kendo-signature-sizes {
|
|
44997
|
+
$_padding: map-get($size-props, padding);
|
|
44998
|
+
$_line-size: map-get($size-props, line-size);
|
|
44999
|
+
$_line-offset: map-get($size-props, line-offset);
|
|
45000
|
+
|
|
45001
|
+
.k-signature-#{$size} {
|
|
45002
|
+
padding: $_padding;
|
|
45003
|
+
|
|
45004
|
+
.k-signature-line {
|
|
45005
|
+
width: $_line-size;
|
|
45006
|
+
bottom: $_line-offset;
|
|
45007
|
+
}
|
|
45008
|
+
}
|
|
45009
|
+
|
|
45010
|
+
}
|
|
45011
|
+
}
|
|
45012
|
+
|
|
45013
|
+
// #endregion
|
|
45014
|
+
|
|
45015
|
+
// #endregion
|
|
45016
|
+
// #region @import "_theme.scss"; -> packages/bootstrap/scss/signature/_theme.scss
|
|
45017
|
+
// #region @import "~@progress/kendo-theme-default/scss/signature/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/signature/_theme.scss
|
|
45018
|
+
@include exports("signature/theme") {
|
|
45019
|
+
|
|
45020
|
+
// Solid signature
|
|
45021
|
+
.k-signature {
|
|
45022
|
+
|
|
45023
|
+
.k-signature-line {
|
|
45024
|
+
border-bottom-color: $kendo-signature-line-color;
|
|
45025
|
+
}
|
|
45026
|
+
}
|
|
45027
|
+
|
|
45028
|
+
|
|
45029
|
+
}
|
|
45030
|
+
|
|
45031
|
+
// #endregion
|
|
45032
|
+
|
|
45033
|
+
// #endregion
|
|
45034
|
+
|
|
44899
45035
|
// #endregion
|
|
44900
45036
|
|
|
44901
45037
|
// #endregion
|