@progress/kendo-theme-classic 5.5.0 → 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 +315 -330
- package/dist/all.scss +341 -208
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/package.json +8 -11
- package/scss/chip/_variables.scss +1 -1
- package/scss/index.scss +1 -0
- package/scss/progressbar/_variables.scss +1 -0
- package/scss/signature/_index.scss +9 -0
- package/scss/signature/_layout.scss +1 -0
- package/scss/signature/_theme.scss +1 -0
- package/scss/signature/_variables.scss +45 -0
package/dist/all.scss
CHANGED
|
@@ -11425,7 +11425,7 @@ $kendo-avatar-theme-colors: $kendo-theme-colors !default;
|
|
|
11425
11425
|
$kendo-chip-border-width: 1px !default;
|
|
11426
11426
|
/// The spacing between the text and the icons of the chip.
|
|
11427
11427
|
/// @group chip
|
|
11428
|
-
$kendo-chip-spacing: map-get( $spacing, 1 );
|
|
11428
|
+
$kendo-chip-spacing: map-get( $spacing, 1 ) !default;
|
|
11429
11429
|
|
|
11430
11430
|
/// Horizontal padding of the chip.
|
|
11431
11431
|
/// @group chip
|
|
@@ -14071,7 +14071,8 @@ $fieldset-legend-border: null !default;
|
|
|
14071
14071
|
|
|
14072
14072
|
.k-multiselect,
|
|
14073
14073
|
.k-floating-label-container,
|
|
14074
|
-
.k-daterangepicker .k-dateinput
|
|
14074
|
+
.k-daterangepicker .k-dateinput,
|
|
14075
|
+
.k-signature {
|
|
14075
14076
|
display: inline-flex;
|
|
14076
14077
|
width: 100%;
|
|
14077
14078
|
}
|
|
@@ -15142,6 +15143,7 @@ $listbox-drop-hint-width: 1px !default;
|
|
|
15142
15143
|
// #region @import "_variables.scss"; -> packages/classic/scss/progressbar/_variables.scss
|
|
15143
15144
|
// Progressbar
|
|
15144
15145
|
$progressbar-height: 22px !default;
|
|
15146
|
+
$progressbar-horizontal-width: 100% !default;
|
|
15145
15147
|
$progressbar-animation-timing: 1s linear infinite !default;
|
|
15146
15148
|
$progressbar-border-width: 0px !default;
|
|
15147
15149
|
$progressbar-font-family: $font-family !default;
|
|
@@ -15196,7 +15198,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
15196
15198
|
|
|
15197
15199
|
|
|
15198
15200
|
// Selection
|
|
15199
|
-
> .k-state-selected
|
|
15201
|
+
> .k-state-selected,
|
|
15200
15202
|
> .k-selected {
|
|
15201
15203
|
border-width: 0;
|
|
15202
15204
|
border-style: solid;
|
|
@@ -15257,7 +15259,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
15257
15259
|
|
|
15258
15260
|
// Horizontal
|
|
15259
15261
|
.k-progressbar-horizontal {
|
|
15260
|
-
width:
|
|
15262
|
+
width: $progressbar-horizontal-width;
|
|
15261
15263
|
height: $progressbar-height;
|
|
15262
15264
|
grid-template-columns: 1fr;
|
|
15263
15265
|
grid-template-rows: 100%;
|
|
@@ -15267,7 +15269,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
15267
15269
|
flex-direction: row;
|
|
15268
15270
|
}
|
|
15269
15271
|
|
|
15270
|
-
> .k-state-selected
|
|
15272
|
+
> .k-state-selected,
|
|
15271
15273
|
> .k-selected {
|
|
15272
15274
|
width: 0;
|
|
15273
15275
|
width: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
|
|
@@ -15294,7 +15296,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
15294
15296
|
// Horizontal reverse
|
|
15295
15297
|
&.k-progressbar-reverse {
|
|
15296
15298
|
|
|
15297
|
-
> .k-state-selected
|
|
15299
|
+
> .k-state-selected,
|
|
15298
15300
|
> .k-selected {
|
|
15299
15301
|
flex-direction: row-reverse;
|
|
15300
15302
|
justify-self: flex-end;
|
|
@@ -15319,7 +15321,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
15319
15321
|
writing-mode: vertical-lr;
|
|
15320
15322
|
}
|
|
15321
15323
|
|
|
15322
|
-
> .k-state-selected
|
|
15324
|
+
> .k-state-selected,
|
|
15323
15325
|
> .k-selected {
|
|
15324
15326
|
height: 0;
|
|
15325
15327
|
height: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
|
|
@@ -15349,7 +15351,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
15349
15351
|
&.k-progressbar-reverse {
|
|
15350
15352
|
flex-direction: column;
|
|
15351
15353
|
|
|
15352
|
-
> .k-state-selected
|
|
15354
|
+
> .k-state-selected,
|
|
15353
15355
|
> .k-selected {
|
|
15354
15356
|
flex-direction: column;
|
|
15355
15357
|
align-self: flex-start;
|
|
@@ -15374,7 +15376,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
15374
15376
|
|
|
15375
15377
|
> .k-state-selected,
|
|
15376
15378
|
> .k-selected,
|
|
15377
|
-
> .k-state-selected > .k-progress-status-wrap
|
|
15379
|
+
> .k-state-selected > .k-progress-status-wrap,
|
|
15378
15380
|
> .k-selected > .k-progress-status-wrap {
|
|
15379
15381
|
transition: width .1s ease-in-out;
|
|
15380
15382
|
}
|
|
@@ -15403,7 +15405,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
15403
15405
|
display: -ms-inline-grid;
|
|
15404
15406
|
|
|
15405
15407
|
> .k-progress-status-wrap,
|
|
15406
|
-
> .k-state-selected
|
|
15408
|
+
> .k-state-selected,
|
|
15407
15409
|
> .k-selected {
|
|
15408
15410
|
-ms-grid-column: 1;
|
|
15409
15411
|
-ms-grid-row: 1;
|
|
@@ -15413,7 +15415,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
15413
15415
|
-ms-grid-columns: 1fr;
|
|
15414
15416
|
-ms-grid-rows: $progressbar-height;
|
|
15415
15417
|
|
|
15416
|
-
&.k-progressbar-reverse > .k-state-selected
|
|
15418
|
+
&.k-progressbar-reverse > .k-state-selected,
|
|
15417
15419
|
&.k-progressbar-reverse > .k-selected {
|
|
15418
15420
|
-ms-grid-column-align: end;
|
|
15419
15421
|
}
|
|
@@ -15422,12 +15424,12 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
15422
15424
|
-ms-grid-columns: $progressbar-height;
|
|
15423
15425
|
-ms-grid-rows: 1fr;
|
|
15424
15426
|
|
|
15425
|
-
> .k-state-selected
|
|
15427
|
+
> .k-state-selected,
|
|
15426
15428
|
> .k-selected {
|
|
15427
15429
|
-ms-grid-row-align: end;
|
|
15428
15430
|
}
|
|
15429
15431
|
|
|
15430
|
-
&.k-progressbar-reverse > .k-state-selected
|
|
15432
|
+
&.k-progressbar-reverse > .k-state-selected,
|
|
15431
15433
|
&.k-progressbar-reverse > .k-selected {
|
|
15432
15434
|
-ms-grid-row-align: start;
|
|
15433
15435
|
}
|
|
@@ -15450,7 +15452,7 @@ $progressbar-chunk-border: $body-bg !default;
|
|
|
15450
15452
|
.k-progressbar {
|
|
15451
15453
|
@include fill( $progressbar-text, $progressbar-bg, $progressbar-border, $progressbar-gradient );
|
|
15452
15454
|
|
|
15453
|
-
.k-state-selected
|
|
15455
|
+
.k-state-selected,
|
|
15454
15456
|
.k-selected {
|
|
15455
15457
|
@include fill( $progressbar-fill-text, $progressbar-fill-bg, $progressbar-fill-border, $progressbar-fill-gradient );
|
|
15456
15458
|
}
|
|
@@ -15820,7 +15822,7 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
15820
15822
|
}
|
|
15821
15823
|
|
|
15822
15824
|
.k-radio:focus,
|
|
15823
|
-
.k-radio.k-state-focus
|
|
15825
|
+
.k-radio.k-state-focus,
|
|
15824
15826
|
.k-radio.k-focus {
|
|
15825
15827
|
box-shadow: none !important; // sass-lint:disable-line no-important
|
|
15826
15828
|
|
|
@@ -15884,7 +15886,7 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
15884
15886
|
|
|
15885
15887
|
// Hover state
|
|
15886
15888
|
.k-radio:hover,
|
|
15887
|
-
.k-radio.k-state-hover
|
|
15889
|
+
.k-radio.k-state-hover,
|
|
15888
15890
|
.k-radio.k-hover {
|
|
15889
15891
|
@include fill(
|
|
15890
15892
|
$kendo-radio-hover-text,
|
|
@@ -15896,7 +15898,7 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
15896
15898
|
|
|
15897
15899
|
// Focus state
|
|
15898
15900
|
.k-radio:focus,
|
|
15899
|
-
.k-radio.k-state-focus
|
|
15901
|
+
.k-radio.k-state-focus,
|
|
15900
15902
|
.k-radio.k-focus {
|
|
15901
15903
|
@include fill( $border: $kendo-radio-focus-border );
|
|
15902
15904
|
@include box-shadow( $kendo-radio-focus-shadow );
|
|
@@ -15928,7 +15930,7 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
15928
15930
|
);
|
|
15929
15931
|
}
|
|
15930
15932
|
.k-radio:checked:focus,
|
|
15931
|
-
.k-radio.k-checked.k-state-focus
|
|
15933
|
+
.k-radio.k-checked.k-state-focus,
|
|
15932
15934
|
.k-radio.k-checked.k-focus {
|
|
15933
15935
|
@include fill( $border: $kendo-radio-focus-checked-border );
|
|
15934
15936
|
@include box-shadow( $kendo-radio-focus-checked-shadow );
|
|
@@ -16099,7 +16101,7 @@ $slider-disabled-opacity: null !default;
|
|
|
16099
16101
|
}
|
|
16100
16102
|
|
|
16101
16103
|
|
|
16102
|
-
&.k-state-disabled
|
|
16104
|
+
&.k-state-disabled,
|
|
16103
16105
|
&.k-disabled {
|
|
16104
16106
|
.k-tick,
|
|
16105
16107
|
.k-slider-track,
|
|
@@ -16556,20 +16558,20 @@ $slider-disabled-opacity: null !default;
|
|
|
16556
16558
|
}
|
|
16557
16559
|
|
|
16558
16560
|
&:focus,
|
|
16559
|
-
&.k-state-focused
|
|
16561
|
+
&.k-state-focused,
|
|
16560
16562
|
&.k-focus {
|
|
16561
16563
|
@include box-shadow( $slider-draghandle-focused-shadow );
|
|
16562
16564
|
}
|
|
16563
16565
|
}
|
|
16564
16566
|
|
|
16565
|
-
&.k-state-focused
|
|
16567
|
+
&.k-state-focused,
|
|
16566
16568
|
&.k-focus {
|
|
16567
16569
|
.k-draghandle {
|
|
16568
16570
|
@include box-shadow( $slider-draghandle-focused-shadow );
|
|
16569
16571
|
}
|
|
16570
16572
|
}
|
|
16571
16573
|
|
|
16572
|
-
&.k-state-disabled
|
|
16574
|
+
&.k-state-disabled,
|
|
16573
16575
|
&.k-disabled {
|
|
16574
16576
|
opacity: $slider-disabled-opacity;
|
|
16575
16577
|
}
|
|
@@ -17119,7 +17121,7 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
17119
17121
|
}
|
|
17120
17122
|
|
|
17121
17123
|
// // styles are applied to the k-link element inside
|
|
17122
|
-
// .k-state-selected
|
|
17124
|
+
// .k-state-selected,
|
|
17123
17125
|
// .k-selected {
|
|
17124
17126
|
// color: inherit;
|
|
17125
17127
|
// background: transparent;
|
|
@@ -17145,6 +17147,10 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
|
|
|
17145
17147
|
&::after {
|
|
17146
17148
|
display: none;
|
|
17147
17149
|
}
|
|
17150
|
+
|
|
17151
|
+
&:focus {
|
|
17152
|
+
outline: 0;
|
|
17153
|
+
}
|
|
17148
17154
|
}
|
|
17149
17155
|
|
|
17150
17156
|
.k-range-start {
|
|
@@ -17640,7 +17646,7 @@ $time-list-focused-bg: rgba(0, 0, 0, .04) !default;
|
|
|
17640
17646
|
display: block;
|
|
17641
17647
|
}
|
|
17642
17648
|
|
|
17643
|
-
&.k-state-focused
|
|
17649
|
+
&.k-state-focused,
|
|
17644
17650
|
&.k-focus {
|
|
17645
17651
|
&::before,
|
|
17646
17652
|
&::after {
|
|
@@ -17785,7 +17791,7 @@ $time-list-focused-bg: rgba(0, 0, 0, .04) !default;
|
|
|
17785
17791
|
color: $time-list-title-text;
|
|
17786
17792
|
}
|
|
17787
17793
|
|
|
17788
|
-
&.k-state-focused
|
|
17794
|
+
&.k-state-focused,
|
|
17789
17795
|
&.k-focus {
|
|
17790
17796
|
.k-title {
|
|
17791
17797
|
color: $time-list-title-focus-text;
|
|
@@ -18114,7 +18120,7 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
18114
18120
|
&.k-focus,
|
|
18115
18121
|
&.k-state-selected,
|
|
18116
18122
|
&.k-selected,
|
|
18117
|
-
&.k-state-selected:hover
|
|
18123
|
+
&.k-state-selected:hover,
|
|
18118
18124
|
&.k-selected:hover {
|
|
18119
18125
|
position: relative;
|
|
18120
18126
|
z-index: 100;
|
|
@@ -20128,7 +20134,7 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
20128
20134
|
color: $component-text;
|
|
20129
20135
|
|
|
20130
20136
|
&:focus,
|
|
20131
|
-
&.k-state-focused
|
|
20137
|
+
&.k-state-focused,
|
|
20132
20138
|
&.k-focus {
|
|
20133
20139
|
|
|
20134
20140
|
.k-rating-item {
|
|
@@ -20136,7 +20142,7 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
20136
20142
|
text-shadow: $rating-icon-focused-shadow;
|
|
20137
20143
|
}
|
|
20138
20144
|
|
|
20139
|
-
&.k-state-selected > .k-icon
|
|
20145
|
+
&.k-state-selected > .k-icon,
|
|
20140
20146
|
&.k-selected > .k-icon {
|
|
20141
20147
|
text-shadow: $rating-icon-focused-selected-shadow;
|
|
20142
20148
|
}
|
|
@@ -20147,19 +20153,19 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
20147
20153
|
.k-rating-item {
|
|
20148
20154
|
color: $rating-icon-text;
|
|
20149
20155
|
|
|
20150
|
-
&.k-state-selected
|
|
20156
|
+
&.k-state-selected,
|
|
20151
20157
|
&.k-selected {
|
|
20152
20158
|
color: $rating-icon-selected-text;
|
|
20153
20159
|
|
|
20154
20160
|
&:focus,
|
|
20155
|
-
&.k-state-focused
|
|
20161
|
+
&.k-state-focused,
|
|
20156
20162
|
&.k-focus {
|
|
20157
20163
|
color: $rating-icon-focused-text;
|
|
20158
20164
|
}
|
|
20159
20165
|
}
|
|
20160
20166
|
|
|
20161
20167
|
&:hover,
|
|
20162
|
-
&.k-state-hover
|
|
20168
|
+
&.k-state-hover,
|
|
20163
20169
|
&.k-hover {
|
|
20164
20170
|
color: $rating-icon-hover-text;
|
|
20165
20171
|
cursor: pointer;
|
|
@@ -21391,7 +21397,7 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
21391
21397
|
z-index: 1;
|
|
21392
21398
|
}
|
|
21393
21399
|
input[disabled],
|
|
21394
|
-
input.k-state-disabled
|
|
21400
|
+
input.k-state-disabled,
|
|
21395
21401
|
input.k-disabled {
|
|
21396
21402
|
visibility: hidden;
|
|
21397
21403
|
}
|
|
@@ -21439,12 +21445,12 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
21439
21445
|
|
|
21440
21446
|
.k-file {
|
|
21441
21447
|
|
|
21442
|
-
&.k-state-focused
|
|
21448
|
+
&.k-state-focused,
|
|
21443
21449
|
&.k-focus {
|
|
21444
21450
|
box-shadow: inset $upload-focused-shadow;
|
|
21445
21451
|
}
|
|
21446
21452
|
|
|
21447
|
-
.k-upload-action.k-state-focused
|
|
21453
|
+
.k-upload-action.k-state-focused,
|
|
21448
21454
|
.k-upload-action.k-focus {
|
|
21449
21455
|
box-shadow: $upload-focused-shadow;
|
|
21450
21456
|
}
|
|
@@ -22507,7 +22513,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22507
22513
|
|
|
22508
22514
|
// Hover state
|
|
22509
22515
|
&:hover,
|
|
22510
|
-
&.k-state-hover
|
|
22516
|
+
&.k-state-hover,
|
|
22511
22517
|
&.k-hover {
|
|
22512
22518
|
@include fill(
|
|
22513
22519
|
$actionsheet-item-hover-text,
|
|
@@ -22521,7 +22527,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22521
22527
|
|
|
22522
22528
|
// Focus state
|
|
22523
22529
|
&:focus,
|
|
22524
|
-
&.k-state-focus
|
|
22530
|
+
&.k-state-focus,
|
|
22525
22531
|
&.k-focus {
|
|
22526
22532
|
@include fill(
|
|
22527
22533
|
$actionsheet-item-focus-text,
|
|
@@ -22535,7 +22541,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22535
22541
|
|
|
22536
22542
|
// Disabed state
|
|
22537
22543
|
&:disabled,
|
|
22538
|
-
&.k-state-disabled
|
|
22544
|
+
&.k-state-disabled,
|
|
22539
22545
|
&.k-disabled {
|
|
22540
22546
|
@include fill(
|
|
22541
22547
|
$actionsheet-item-disabled-text,
|
|
@@ -22780,7 +22786,7 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22780
22786
|
|
|
22781
22787
|
.k-window {
|
|
22782
22788
|
&:focus,
|
|
22783
|
-
&.k-state-focused
|
|
22789
|
+
&.k-state-focused,
|
|
22784
22790
|
&.k-focus {
|
|
22785
22791
|
@include box-shadow( $window-focused-shadow );
|
|
22786
22792
|
}
|
|
@@ -23269,33 +23275,33 @@ $drawer-selected-hover-text: $selected-hover-text !default;
|
|
|
23269
23275
|
.k-drawer-item {
|
|
23270
23276
|
|
|
23271
23277
|
&:hover,
|
|
23272
|
-
&.k-state-hover
|
|
23278
|
+
&.k-state-hover,
|
|
23273
23279
|
&.k-hover {
|
|
23274
23280
|
color: $drawer-hovered-text;
|
|
23275
23281
|
background-color: $drawer-hovered-bg;
|
|
23276
23282
|
}
|
|
23277
23283
|
|
|
23278
23284
|
&:focus,
|
|
23279
|
-
&.k-state-focused
|
|
23285
|
+
&.k-state-focused,
|
|
23280
23286
|
&.k-focus {
|
|
23281
23287
|
background-color: $drawer-focused-bg;
|
|
23282
23288
|
box-shadow: $drawer-focused-shadow;
|
|
23283
23289
|
|
|
23284
23290
|
&:hover,
|
|
23285
|
-
&.k-state-hover
|
|
23291
|
+
&.k-state-hover,
|
|
23286
23292
|
&.k-hover {
|
|
23287
23293
|
color: $drawer-hovered-text;
|
|
23288
23294
|
background-color: $drawer-hovered-bg;
|
|
23289
23295
|
}
|
|
23290
23296
|
}
|
|
23291
23297
|
|
|
23292
|
-
&.k-state-selected
|
|
23298
|
+
&.k-state-selected,
|
|
23293
23299
|
&.k-selected {
|
|
23294
23300
|
color: $drawer-selected-text;
|
|
23295
23301
|
background-color: $drawer-selected-bg;
|
|
23296
23302
|
|
|
23297
23303
|
&:hover,
|
|
23298
|
-
&.k-state-hover
|
|
23304
|
+
&.k-state-hover,
|
|
23299
23305
|
&.k-hover {
|
|
23300
23306
|
color: $drawer-selected-hover-text;
|
|
23301
23307
|
background-color: $drawer-selected-hover-bg;
|
|
@@ -24554,7 +24560,7 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
24554
24560
|
outline: 0;
|
|
24555
24561
|
}
|
|
24556
24562
|
}
|
|
24557
|
-
.k-bottom-nav-item.k-state-disabled
|
|
24563
|
+
.k-bottom-nav-item.k-state-disabled,
|
|
24558
24564
|
.k-bottom-nav-item.k-disabled {
|
|
24559
24565
|
background-color: initial;
|
|
24560
24566
|
}
|
|
@@ -24609,7 +24615,7 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
24609
24615
|
@include fill( $bg: rgba(true-mix( $color, contrast-wcag( $color ), 35%), .2));
|
|
24610
24616
|
}
|
|
24611
24617
|
|
|
24612
|
-
.k-bottom-nav-item.k-state-selected
|
|
24618
|
+
.k-bottom-nav-item.k-state-selected,
|
|
24613
24619
|
.k-bottom-nav-item.k-selected {
|
|
24614
24620
|
@include fill( $color: contrast-wcag( $color ) );
|
|
24615
24621
|
}
|
|
@@ -24633,7 +24639,7 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
24633
24639
|
}
|
|
24634
24640
|
|
|
24635
24641
|
@each $name, $color in $kendo-theme-colors {
|
|
24636
|
-
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected
|
|
24642
|
+
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected,
|
|
24637
24643
|
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-selected {
|
|
24638
24644
|
@if $name == "secondary" or $name == "light" {
|
|
24639
24645
|
@include fill( $color: try-shade($color, 3) );
|
|
@@ -24894,7 +24900,7 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
24894
24900
|
);
|
|
24895
24901
|
|
|
24896
24902
|
&:focus,
|
|
24897
|
-
&.k-state-focused
|
|
24903
|
+
&.k-state-focused,
|
|
24898
24904
|
&.k-focus {
|
|
24899
24905
|
@include box-shadow( $breadcrumb-focused-shadow );
|
|
24900
24906
|
}
|
|
@@ -24911,7 +24917,7 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
24911
24917
|
|
|
24912
24918
|
// Hovered state
|
|
24913
24919
|
&:hover,
|
|
24914
|
-
&.k-state-hover
|
|
24920
|
+
&.k-state-hover,
|
|
24915
24921
|
&.k-hover {
|
|
24916
24922
|
@include fill(
|
|
24917
24923
|
$breadcrumb-link-hovered-text,
|
|
@@ -24922,7 +24928,7 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
24922
24928
|
|
|
24923
24929
|
// Focused state
|
|
24924
24930
|
&:focus,
|
|
24925
|
-
&.k-state-focused
|
|
24931
|
+
&.k-state-focused,
|
|
24926
24932
|
&.k-focus {
|
|
24927
24933
|
@include fill(
|
|
24928
24934
|
$breadcrumb-link-focused-text,
|
|
@@ -24944,7 +24950,7 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
24944
24950
|
|
|
24945
24951
|
// Hovered state
|
|
24946
24952
|
&:hover,
|
|
24947
|
-
&.k-state-hover
|
|
24953
|
+
&.k-state-hover,
|
|
24948
24954
|
&.k-hover {
|
|
24949
24955
|
@include fill(
|
|
24950
24956
|
$breadcrumb-root-link-hovered-text,
|
|
@@ -24955,7 +24961,7 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
24955
24961
|
|
|
24956
24962
|
// Focused state
|
|
24957
24963
|
&:focus,
|
|
24958
|
-
&.k-state-focused
|
|
24964
|
+
&.k-state-focused,
|
|
24959
24965
|
&.k-focus {
|
|
24960
24966
|
@include fill(
|
|
24961
24967
|
$breadcrumb-root-link-focused-text,
|
|
@@ -25104,7 +25110,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
25104
25110
|
|
|
25105
25111
|
// Focused state
|
|
25106
25112
|
&:focus,
|
|
25107
|
-
&.k-state-focus
|
|
25113
|
+
&.k-state-focus,
|
|
25108
25114
|
&.k-focus {
|
|
25109
25115
|
z-index: 3;
|
|
25110
25116
|
}
|
|
@@ -25154,7 +25160,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
25154
25160
|
&:hover {
|
|
25155
25161
|
z-index: 2;
|
|
25156
25162
|
}
|
|
25157
|
-
&.k-state-disabled
|
|
25163
|
+
&.k-state-disabled,
|
|
25158
25164
|
&.k-disabled {
|
|
25159
25165
|
color: inherit;
|
|
25160
25166
|
}
|
|
@@ -25204,7 +25210,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
25204
25210
|
}
|
|
25205
25211
|
|
|
25206
25212
|
// Selected state
|
|
25207
|
-
.k-state-selected
|
|
25213
|
+
.k-state-selected,
|
|
25208
25214
|
.k-selected {
|
|
25209
25215
|
cursor: inherit;
|
|
25210
25216
|
z-index: 2;
|
|
@@ -25353,7 +25359,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
25353
25359
|
&:focus,
|
|
25354
25360
|
&.k-focus,
|
|
25355
25361
|
&.k-state-focus,
|
|
25356
|
-
&.k-state-focused
|
|
25362
|
+
&.k-state-focused,
|
|
25357
25363
|
&.k-focus {
|
|
25358
25364
|
@include fill( $bg: $pager-focus-bg );
|
|
25359
25365
|
@include box-shadow( $pager-focus-shadow );
|
|
@@ -25369,7 +25375,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
25369
25375
|
);
|
|
25370
25376
|
|
|
25371
25377
|
&:hover,
|
|
25372
|
-
&.k-state-hover
|
|
25378
|
+
&.k-state-hover,
|
|
25373
25379
|
&.k-hover {
|
|
25374
25380
|
@include fill(
|
|
25375
25381
|
$pager-item-hover-text,
|
|
@@ -25378,7 +25384,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
25378
25384
|
);
|
|
25379
25385
|
}
|
|
25380
25386
|
|
|
25381
|
-
&.k-state-selected
|
|
25387
|
+
&.k-state-selected,
|
|
25382
25388
|
&.k-selected {
|
|
25383
25389
|
@include fill(
|
|
25384
25390
|
$pager-item-selected-text,
|
|
@@ -25388,7 +25394,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
25388
25394
|
}
|
|
25389
25395
|
|
|
25390
25396
|
&:focus,
|
|
25391
|
-
&.k-state-focus
|
|
25397
|
+
&.k-state-focus,
|
|
25392
25398
|
&.k-focus {
|
|
25393
25399
|
background-color: $pager-item-focus-bg;
|
|
25394
25400
|
@include box-shadow( $pager-item-focus-shadow );
|
|
@@ -25412,7 +25418,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
25412
25418
|
);
|
|
25413
25419
|
|
|
25414
25420
|
&:hover,
|
|
25415
|
-
&.k-state-hover
|
|
25421
|
+
&.k-state-hover,
|
|
25416
25422
|
&.k-hover {
|
|
25417
25423
|
@include fill(
|
|
25418
25424
|
$pager-number-hover-text,
|
|
@@ -25422,13 +25428,13 @@ $pager-dropdown-width: 5em !default;
|
|
|
25422
25428
|
}
|
|
25423
25429
|
|
|
25424
25430
|
&:focus,
|
|
25425
|
-
&.k-state-focus
|
|
25431
|
+
&.k-state-focus,
|
|
25426
25432
|
&.k-focus {
|
|
25427
25433
|
background-color: $pager-number-focus-bg;
|
|
25428
25434
|
@include box-shadow( $pager-number-focus-shadow );
|
|
25429
25435
|
}
|
|
25430
25436
|
|
|
25431
|
-
&.k-state-selected
|
|
25437
|
+
&.k-state-selected,
|
|
25432
25438
|
&.k-selected {
|
|
25433
25439
|
@include fill(
|
|
25434
25440
|
$pager-number-selected-text,
|
|
@@ -25461,7 +25467,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
25461
25467
|
);
|
|
25462
25468
|
|
|
25463
25469
|
&:hover,
|
|
25464
|
-
&.k-state-hover
|
|
25470
|
+
&.k-state-hover,
|
|
25465
25471
|
&.k-hover {
|
|
25466
25472
|
@include fill(
|
|
25467
25473
|
$dropdownlist-hovered-text,
|
|
@@ -25482,7 +25488,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
25482
25488
|
.k-link {
|
|
25483
25489
|
|
|
25484
25490
|
&:hover,
|
|
25485
|
-
&.k-state-hover
|
|
25491
|
+
&.k-state-hover,
|
|
25486
25492
|
&.k-hover {
|
|
25487
25493
|
@include fill(
|
|
25488
25494
|
$kendo-list-item-hover-text,
|
|
@@ -25490,7 +25496,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
25490
25496
|
);
|
|
25491
25497
|
}
|
|
25492
25498
|
|
|
25493
|
-
&.k-state-selected
|
|
25499
|
+
&.k-state-selected,
|
|
25494
25500
|
&.k-selected {
|
|
25495
25501
|
@include fill(
|
|
25496
25502
|
$kendo-list-item-selected-text,
|
|
@@ -25761,7 +25767,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
25761
25767
|
opacity: $stepper-optional-label-opacity;
|
|
25762
25768
|
}
|
|
25763
25769
|
.k-step-disabled .k-step-label-optional,
|
|
25764
|
-
&.k-state-disabled .k-step-label-optional
|
|
25770
|
+
&.k-state-disabled .k-step-label-optional,
|
|
25765
25771
|
&.k-disabled .k-step-label-optional {
|
|
25766
25772
|
color: inherit;
|
|
25767
25773
|
}
|
|
@@ -26079,7 +26085,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
26079
26085
|
$bg: $stepper-progressbar-bg
|
|
26080
26086
|
);
|
|
26081
26087
|
|
|
26082
|
-
.k-state-selected
|
|
26088
|
+
.k-state-selected,
|
|
26083
26089
|
.k-selected {
|
|
26084
26090
|
@include fill(
|
|
26085
26091
|
$color: $stepper-progressbar-fill-text,
|
|
@@ -26330,13 +26336,13 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26330
26336
|
position: relative;
|
|
26331
26337
|
z-index: 1;
|
|
26332
26338
|
|
|
26333
|
-
&.k-state-active
|
|
26339
|
+
&.k-state-active,
|
|
26334
26340
|
&.k-active {
|
|
26335
26341
|
display: block;
|
|
26336
26342
|
}
|
|
26337
26343
|
|
|
26338
26344
|
&:focus,
|
|
26339
|
-
&.k-state-focused
|
|
26345
|
+
&.k-state-focused,
|
|
26340
26346
|
&.k-focus {
|
|
26341
26347
|
outline-width: 1px;
|
|
26342
26348
|
outline-style: dotted;
|
|
@@ -26425,7 +26431,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26425
26431
|
margin-left: $tabstrip-item-gap;
|
|
26426
26432
|
}
|
|
26427
26433
|
|
|
26428
|
-
.k-item.k-state-active
|
|
26434
|
+
.k-item.k-state-active,
|
|
26429
26435
|
.k-item.k-active {
|
|
26430
26436
|
border-bottom-color: transparent;
|
|
26431
26437
|
}
|
|
@@ -26455,7 +26461,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26455
26461
|
margin-left: $tabstrip-item-gap;
|
|
26456
26462
|
}
|
|
26457
26463
|
|
|
26458
|
-
.k-item.k-state-active
|
|
26464
|
+
.k-item.k-state-active,
|
|
26459
26465
|
.k-item.k-active {
|
|
26460
26466
|
border-top-color: transparent;
|
|
26461
26467
|
}
|
|
@@ -26489,7 +26495,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26489
26495
|
margin-top: $tabstrip-item-gap;
|
|
26490
26496
|
}
|
|
26491
26497
|
|
|
26492
|
-
.k-item.k-state-active
|
|
26498
|
+
.k-item.k-state-active,
|
|
26493
26499
|
.k-item.k-active {
|
|
26494
26500
|
border-right-color: transparent;
|
|
26495
26501
|
}
|
|
@@ -26525,7 +26531,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26525
26531
|
margin-top: $tabstrip-item-gap;
|
|
26526
26532
|
}
|
|
26527
26533
|
|
|
26528
|
-
.k-item.k-state-active
|
|
26534
|
+
.k-item.k-state-active,
|
|
26529
26535
|
.k-item.k-active {
|
|
26530
26536
|
border-left-color: transparent;
|
|
26531
26537
|
}
|
|
@@ -26571,7 +26577,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26571
26577
|
border-left-width: $tabstrip-indicator-size;
|
|
26572
26578
|
}
|
|
26573
26579
|
}
|
|
26574
|
-
.k-item.k-state-active::after
|
|
26580
|
+
.k-item.k-state-active::after,
|
|
26575
26581
|
.k-item.k-active::after {
|
|
26576
26582
|
display: block;
|
|
26577
26583
|
}
|
|
@@ -26645,7 +26651,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26645
26651
|
);
|
|
26646
26652
|
|
|
26647
26653
|
&:hover,
|
|
26648
|
-
&.k-state-hover
|
|
26654
|
+
&.k-state-hover,
|
|
26649
26655
|
&.k-hover {
|
|
26650
26656
|
@include fill(
|
|
26651
26657
|
$tabstrip-item-hovered-text,
|
|
@@ -26658,7 +26664,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26658
26664
|
&:active,
|
|
26659
26665
|
&.k-state-active,
|
|
26660
26666
|
&.k-active,
|
|
26661
|
-
&.k-state-selected
|
|
26667
|
+
&.k-state-selected,
|
|
26662
26668
|
&.k-selected {
|
|
26663
26669
|
@include fill(
|
|
26664
26670
|
$tabstrip-item-selected-text,
|
|
@@ -26669,7 +26675,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26669
26675
|
}
|
|
26670
26676
|
|
|
26671
26677
|
&:focus,
|
|
26672
|
-
&.k-state-focused
|
|
26678
|
+
&.k-state-focused,
|
|
26673
26679
|
&.k-focus {
|
|
26674
26680
|
@include box-shadow( $tabstrip-item-focused-shadow );
|
|
26675
26681
|
}
|
|
@@ -26692,7 +26698,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26692
26698
|
);
|
|
26693
26699
|
|
|
26694
26700
|
&:focus,
|
|
26695
|
-
&.k-state-focused
|
|
26701
|
+
&.k-state-focused,
|
|
26696
26702
|
&.k-focus {
|
|
26697
26703
|
outline-color: $tabstrip-content-border-focused;
|
|
26698
26704
|
}
|
|
@@ -26703,7 +26709,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26703
26709
|
@if ($tabstrip-indicator-size) {
|
|
26704
26710
|
|
|
26705
26711
|
.k-tabstrip-items-wrapper {
|
|
26706
|
-
.k-item.k-state-active::after
|
|
26712
|
+
.k-item.k-state-active::after,
|
|
26707
26713
|
.k-item.k-active::after {
|
|
26708
26714
|
border-color: $tabstrip-indicator-color;
|
|
26709
26715
|
}
|
|
@@ -26797,7 +26803,7 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
26797
26803
|
justify-content: space-between;
|
|
26798
26804
|
|
|
26799
26805
|
&:focus,
|
|
26800
|
-
&.k-state-focused
|
|
26806
|
+
&.k-state-focused,
|
|
26801
26807
|
&.k-focus {
|
|
26802
26808
|
outline-width: 1px;
|
|
26803
26809
|
outline-style: dotted;
|
|
@@ -26894,13 +26900,13 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
26894
26900
|
@include exports("wizard/theme") {
|
|
26895
26901
|
.k-wizard-step {
|
|
26896
26902
|
&:focus,
|
|
26897
|
-
&.k-state-focused
|
|
26903
|
+
&.k-state-focused,
|
|
26898
26904
|
&.k-focus {
|
|
26899
26905
|
outline-color: $wizard-step-border-focused;
|
|
26900
26906
|
}
|
|
26901
26907
|
|
|
26902
26908
|
.k-ie &:focus,
|
|
26903
|
-
.k-ie &.k-state-focused
|
|
26909
|
+
.k-ie &.k-state-focused,
|
|
26904
26910
|
.k-ie &.k-focus {
|
|
26905
26911
|
@include box-shadow($wizard-focused-shadow);
|
|
26906
26912
|
outline: none;
|
|
@@ -27071,7 +27077,7 @@ $expander-content-padding-y: $padding-y * 4 !default;
|
|
|
27071
27077
|
$expander-border
|
|
27072
27078
|
);
|
|
27073
27079
|
|
|
27074
|
-
&.k-state-focus
|
|
27080
|
+
&.k-state-focus,
|
|
27075
27081
|
&.k-focus {
|
|
27076
27082
|
box-shadow: $expander-focus-shadow;
|
|
27077
27083
|
}
|
|
@@ -27086,13 +27092,13 @@ $expander-content-padding-y: $padding-y * 4 !default;
|
|
|
27086
27092
|
outline: none;
|
|
27087
27093
|
|
|
27088
27094
|
&:hover,
|
|
27089
|
-
&.k-state-hover
|
|
27095
|
+
&.k-state-hover,
|
|
27090
27096
|
&.k-hover {
|
|
27091
27097
|
background-color: $expander-header-hover-bg;
|
|
27092
27098
|
}
|
|
27093
27099
|
|
|
27094
27100
|
// Should be removed
|
|
27095
|
-
&.k-state-focused
|
|
27101
|
+
&.k-state-focused,
|
|
27096
27102
|
&.k-focus {
|
|
27097
27103
|
background-color: $expander-header-focused-bg;
|
|
27098
27104
|
box-shadow: $expander-header-focused-shadow;
|
|
@@ -27466,7 +27472,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27466
27472
|
|
|
27467
27473
|
// Hover
|
|
27468
27474
|
> .k-link:hover,
|
|
27469
|
-
> .k-link.k-state-hover
|
|
27475
|
+
> .k-link.k-state-hover,
|
|
27470
27476
|
> .k-link.k-hover {
|
|
27471
27477
|
@include fill(
|
|
27472
27478
|
$panelbar-header-hovered-text,
|
|
@@ -27480,7 +27486,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27480
27486
|
> .k-link:focus,
|
|
27481
27487
|
> .k-link.k-state-focus,
|
|
27482
27488
|
> .k-link.k-focus,
|
|
27483
|
-
> .k-link.k-state-focused
|
|
27489
|
+
> .k-link.k-state-focused,
|
|
27484
27490
|
> .k-link.k-focus {
|
|
27485
27491
|
@include fill(
|
|
27486
27492
|
$panelbar-header-focused-text,
|
|
@@ -27493,7 +27499,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27493
27499
|
|
|
27494
27500
|
// Focus & Hover
|
|
27495
27501
|
> .k-link:focus:hover,
|
|
27496
|
-
> .k-link.k-state-focus.k-state-hover
|
|
27502
|
+
> .k-link.k-state-focus.k-state-hover,
|
|
27497
27503
|
> .k-link.k-focus.k-hover {
|
|
27498
27504
|
@include fill(
|
|
27499
27505
|
$panelbar-header-hovered-focused-text,
|
|
@@ -27504,7 +27510,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27504
27510
|
}
|
|
27505
27511
|
|
|
27506
27512
|
// Selected
|
|
27507
|
-
> .k-link.k-state-selected
|
|
27513
|
+
> .k-link.k-state-selected,
|
|
27508
27514
|
> .k-link.k-selected {
|
|
27509
27515
|
@include fill(
|
|
27510
27516
|
$panelbar-header-selected-text,
|
|
@@ -27522,7 +27528,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27522
27528
|
// Selected Hover
|
|
27523
27529
|
> .k-link.k-state-selected:hover,
|
|
27524
27530
|
> .k-link.k-selected:hover,
|
|
27525
|
-
> .k-link.k-state-selected.k-state-hover
|
|
27531
|
+
> .k-link.k-state-selected.k-state-hover,
|
|
27526
27532
|
> .k-link.k-selected.k-hover {
|
|
27527
27533
|
@include fill(
|
|
27528
27534
|
$panelbar-header-selected-hovered-text,
|
|
@@ -27537,7 +27543,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27537
27543
|
> .k-link.k-selected:focus,
|
|
27538
27544
|
> .k-link.k-state-selected.k-state-focus,
|
|
27539
27545
|
> .k-link.k-selected.k-focus,
|
|
27540
|
-
> .k-link.k-state-selected.k-state-focused
|
|
27546
|
+
> .k-link.k-state-selected.k-state-focused,
|
|
27541
27547
|
> .k-link.k-selected.k-focused {
|
|
27542
27548
|
@include fill(
|
|
27543
27549
|
$panelbar-header-selected-focused-text,
|
|
@@ -27552,7 +27558,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27552
27558
|
> .k-link.k-selected:hover:focus,
|
|
27553
27559
|
> .k-link.k-state-selected.k-state-hover.k-state-focus,
|
|
27554
27560
|
> .k-link.k-selected.k-hover.k-state-focus,
|
|
27555
|
-
> .k-link.k-state-selected.k-state-hover.k-state-focused
|
|
27561
|
+
> .k-link.k-state-selected.k-state-hover.k-state-focused,
|
|
27556
27562
|
> .k-link.k-selected.k-hover.k-state-focused {
|
|
27557
27563
|
@include fill(
|
|
27558
27564
|
$panelbar-header-selected-hovered-focused-text,
|
|
@@ -27573,7 +27579,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27573
27579
|
> .k-item > .k-link.k-state-hover,
|
|
27574
27580
|
> .k-item > .k-link.k-hover,
|
|
27575
27581
|
> .k-panelbar-item > .k-link:hover,
|
|
27576
|
-
> .k-panelbar-item > .k-link.k-state-hover
|
|
27582
|
+
> .k-panelbar-item > .k-link.k-state-hover,
|
|
27577
27583
|
> .k-panelbar-item > .k-link.k-hover {
|
|
27578
27584
|
@include fill(
|
|
27579
27585
|
$panelbar-item-hovered-text,
|
|
@@ -27592,7 +27598,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27592
27598
|
> .k-panelbar-item > .k-link:focus,
|
|
27593
27599
|
> .k-panelbar-item > .k-link.k-state-focus,
|
|
27594
27600
|
> .k-panelbar-item > .k-link.k-focus,
|
|
27595
|
-
> .k-panelbar-item > .k-link.k-state-focused
|
|
27601
|
+
> .k-panelbar-item > .k-link.k-state-focused,
|
|
27596
27602
|
> .k-panelbar-item > .k-link.k-focus {
|
|
27597
27603
|
@include fill(
|
|
27598
27604
|
$panelbar-item-focused-text,
|
|
@@ -27608,7 +27614,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27608
27614
|
> .k-item > .k-link.k-state-focus.k-state-hover,
|
|
27609
27615
|
> .k-item > .k-link.k-focus.k-hover,
|
|
27610
27616
|
> .k-panelbar-item > .k-link:focus:hover,
|
|
27611
|
-
> .k-panelbar-item > .k-link.k-state-focus.k-state-hover
|
|
27617
|
+
> .k-panelbar-item > .k-link.k-state-focus.k-state-hover,
|
|
27612
27618
|
> .k-panelbar-item > .k-link.k-focus.k-hover {
|
|
27613
27619
|
@include fill(
|
|
27614
27620
|
$panelbar-item-hovered-focused-text,
|
|
@@ -27621,7 +27627,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27621
27627
|
// Selected
|
|
27622
27628
|
> .k-item > .k-link.k-state-selected,
|
|
27623
27629
|
> .k-item > .k-link.k-selected,
|
|
27624
|
-
> .k-panelbar-item > .k-link.k-state-selected
|
|
27630
|
+
> .k-panelbar-item > .k-link.k-state-selected,
|
|
27625
27631
|
> .k-panelbar-item > .k-link.k-selected {
|
|
27626
27632
|
@include fill(
|
|
27627
27633
|
$panelbar-item-selected-text,
|
|
@@ -27638,7 +27644,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27638
27644
|
> .k-item > .k-link.k-selected.k-hover,
|
|
27639
27645
|
> .k-panelbar-item > .k-link.k-state-selected:hover,
|
|
27640
27646
|
> .k-panelbar-item > .k-link.k-selected:hover,
|
|
27641
|
-
> .k-panelbar-item > .k-link.k-state-selected.k-state-hover
|
|
27647
|
+
> .k-panelbar-item > .k-link.k-state-selected.k-state-hover,
|
|
27642
27648
|
> .k-panelbar-item > .k-link.k-selected.k-hover {
|
|
27643
27649
|
@include fill(
|
|
27644
27650
|
$panelbar-item-selected-hovered-text,
|
|
@@ -27659,7 +27665,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27659
27665
|
> .k-panelbar-item > .k-link.k-selected:focus,
|
|
27660
27666
|
> .k-panelbar-item > .k-link.k-state-selected.k-state-focus,
|
|
27661
27667
|
> .k-panelbar-item > .k-link.k-selected.k-focus,
|
|
27662
|
-
> .k-item > .k-link.k-state-selected.k-state-focused
|
|
27668
|
+
> .k-item > .k-link.k-state-selected.k-state-focused,
|
|
27663
27669
|
> .k-item > .k-link.k-selected.k-focused {
|
|
27664
27670
|
@include fill(
|
|
27665
27671
|
$panelbar-item-selected-focused-text,
|
|
@@ -27680,7 +27686,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27680
27686
|
> .k-panelbar-item > .k-link.k-selected:focus:hover,
|
|
27681
27687
|
> .k-panelbar-item > .k-link.k-state-selected.k-state-focus.k-state-hover,
|
|
27682
27688
|
> .k-panelbar-item > .k-link.k-selected.k-focus.k-state-hover,
|
|
27683
|
-
> .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover
|
|
27689
|
+
> .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover,
|
|
27684
27690
|
> .k-item > .k-link.k-selected.k-focused.k-state-hover {
|
|
27685
27691
|
@include fill(
|
|
27686
27692
|
$panelbar-item-selected-hovered-focused-text,
|
|
@@ -27974,7 +27980,7 @@ $splitbar-selected-text: $selected-text !default;
|
|
|
27974
27980
|
.k-splitbar:focus,
|
|
27975
27981
|
.k-splitbar.k-state-focus,
|
|
27976
27982
|
.k-splitbar.k-focus,
|
|
27977
|
-
.k-splitbar.k-state-focused
|
|
27983
|
+
.k-splitbar.k-state-focused,
|
|
27978
27984
|
.k-splitbar.k-focus {
|
|
27979
27985
|
color: $splitbar-selected-text;
|
|
27980
27986
|
background: $splitbar-selected-bg;
|
|
@@ -28087,7 +28093,7 @@ $tilelayout-hint-border: $component-border !default;
|
|
|
28087
28093
|
.k-tilelayout-item:focus,
|
|
28088
28094
|
.k-tilelayout-item.k-focus,
|
|
28089
28095
|
.k-tilelayout-item.k-state-focus,
|
|
28090
|
-
.k-tilelayout-item.k-state-focused
|
|
28096
|
+
.k-tilelayout-item.k-state-focused,
|
|
28091
28097
|
.k-tilelayout-item.k-focus {
|
|
28092
28098
|
@include box-shadow($tilelayout-card-focus-shadow);
|
|
28093
28099
|
}
|
|
@@ -28765,12 +28771,12 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28765
28771
|
|
|
28766
28772
|
.k-column-menu {
|
|
28767
28773
|
|
|
28768
|
-
.k-listgroup-item.k-state-selected
|
|
28774
|
+
.k-listgroup-item.k-state-selected,
|
|
28769
28775
|
.k-listgroup-item.k-selected {
|
|
28770
28776
|
color: $adaptive-grid-sort-text;
|
|
28771
28777
|
background: none;
|
|
28772
28778
|
}
|
|
28773
|
-
.k-listgroup-item.k-state-selected .k-link
|
|
28779
|
+
.k-listgroup-item.k-state-selected .k-link,
|
|
28774
28780
|
.k-listgroup-item.k-selected .k-link {
|
|
28775
28781
|
color: inherit;
|
|
28776
28782
|
}
|
|
@@ -29515,7 +29521,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
29515
29521
|
&.k-i-sort-desc-sm,
|
|
29516
29522
|
&.k-i-sort-asc-sm {
|
|
29517
29523
|
vertical-align: text-top;
|
|
29518
|
-
margin-
|
|
29524
|
+
margin-inline-start: $grid-sorted-icon-spacing;
|
|
29519
29525
|
}
|
|
29520
29526
|
}
|
|
29521
29527
|
|
|
@@ -29525,7 +29531,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
29525
29531
|
height: $icon-size;
|
|
29526
29532
|
font-size: $grid-sorting-index-font-size;
|
|
29527
29533
|
margin-top: $grid-sorting-index-spacing-y;
|
|
29528
|
-
margin-
|
|
29534
|
+
margin-inline-start: $grid-sorting-index-spacing-x;
|
|
29529
29535
|
}
|
|
29530
29536
|
}
|
|
29531
29537
|
|
|
@@ -29926,15 +29932,15 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
29926
29932
|
}
|
|
29927
29933
|
|
|
29928
29934
|
.k-header > .k-cell-inner {
|
|
29929
|
-
margin: (-1 * $grid-header-padding-y)
|
|
29935
|
+
margin: (-1 * $grid-header-padding-y) (-1 * $grid-header-padding-x);
|
|
29930
29936
|
}
|
|
29931
29937
|
|
|
29932
29938
|
.k-filterable {
|
|
29933
29939
|
> .k-cell-inner {
|
|
29934
|
-
margin
|
|
29940
|
+
margin-inline-end: calc(-1 * #{$grid-filterable-icon-spacing});
|
|
29935
29941
|
|
|
29936
29942
|
.k-link {
|
|
29937
|
-
padding-
|
|
29943
|
+
padding-inline-end: 0;
|
|
29938
29944
|
}
|
|
29939
29945
|
}
|
|
29940
29946
|
}
|
|
@@ -29973,6 +29979,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
29973
29979
|
.k-grid-filter,
|
|
29974
29980
|
.k-header-column-menu {
|
|
29975
29981
|
position: static;
|
|
29982
|
+
margin-inline-end: $grid-header-menu-icon-spacing;
|
|
29976
29983
|
}
|
|
29977
29984
|
|
|
29978
29985
|
.k-grid-filter,
|
|
@@ -30283,28 +30290,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30283
30290
|
margin-left: $icon-spacing;
|
|
30284
30291
|
margin-right: 0;
|
|
30285
30292
|
}
|
|
30286
|
-
|
|
30287
|
-
.k-header > .k-cell-inner {
|
|
30288
|
-
margin-right: (-1 * $grid-cell-padding-x);
|
|
30289
|
-
margin-left: calc(-1 * calc( #{$kendo-button-calc-size} - #{$grid-cell-padding-x}));
|
|
30290
|
-
|
|
30291
|
-
.k-sort-order {
|
|
30292
|
-
margin-right: $grid-sorting-index-spacing-x;
|
|
30293
|
-
margin-left: 0;
|
|
30294
|
-
}
|
|
30295
|
-
}
|
|
30296
|
-
|
|
30297
|
-
.k-filterable {
|
|
30298
|
-
> .k-cell-inner {
|
|
30299
|
-
margin-right: (-1 * $grid-cell-padding-x);
|
|
30300
|
-
margin-left: calc(-1 * #{$kendo-button-calc-size});
|
|
30301
|
-
|
|
30302
|
-
.k-link {
|
|
30303
|
-
padding-right: $grid-header-padding-x;
|
|
30304
|
-
padding-left: 0;
|
|
30305
|
-
}
|
|
30306
|
-
}
|
|
30307
|
-
}
|
|
30308
30293
|
}
|
|
30309
30294
|
}
|
|
30310
30295
|
|
|
@@ -30410,9 +30395,9 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30410
30395
|
}
|
|
30411
30396
|
|
|
30412
30397
|
// Hover state
|
|
30413
|
-
tbody
|
|
30414
|
-
tbody
|
|
30415
|
-
tbody
|
|
30398
|
+
tbody>tr:not(.k-detail-row):hover,
|
|
30399
|
+
tbody>tr:not(.k-detail-row).k-state-hover,
|
|
30400
|
+
tbody>tr:not(.k-detail-row).k-hover {
|
|
30416
30401
|
color: $grid-hovered-text;
|
|
30417
30402
|
background-color: $grid-hovered-bg;
|
|
30418
30403
|
}
|
|
@@ -30420,7 +30405,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30420
30405
|
// Selected state
|
|
30421
30406
|
td.k-state-selected,
|
|
30422
30407
|
td.k-selected,
|
|
30423
|
-
tr.k-state-selected > td
|
|
30408
|
+
tr.k-state-selected > td,
|
|
30424
30409
|
tr.k-selected > td {
|
|
30425
30410
|
color: $grid-selected-text;
|
|
30426
30411
|
background-color: $grid-selected-bg;
|
|
@@ -30436,7 +30421,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30436
30421
|
.k-grouping-row > td:focus,
|
|
30437
30422
|
.k-detail-row > td:focus,
|
|
30438
30423
|
.k-group-footer > td:focus,
|
|
30439
|
-
.k-grid-pager.k-state-focused
|
|
30424
|
+
.k-grid-pager.k-state-focused,
|
|
30440
30425
|
.k-grid-pager.k-focus {
|
|
30441
30426
|
box-shadow: $grid-focused-shadow;
|
|
30442
30427
|
}
|
|
@@ -30479,12 +30464,12 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30479
30464
|
}
|
|
30480
30465
|
|
|
30481
30466
|
// Selected state
|
|
30482
|
-
.k-state-selected td
|
|
30467
|
+
.k-state-selected td,
|
|
30483
30468
|
.k-selected td {
|
|
30484
30469
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
30485
30470
|
}
|
|
30486
30471
|
|
|
30487
|
-
.k-state-selected.k-alt td
|
|
30472
|
+
.k-state-selected.k-alt td,
|
|
30488
30473
|
.k-selected.k-alt td {
|
|
30489
30474
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
30490
30475
|
}
|
|
@@ -30492,7 +30477,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30492
30477
|
// Selected hover
|
|
30493
30478
|
.k-state-selected:hover td,
|
|
30494
30479
|
.k-selected:hover td,
|
|
30495
|
-
.k-state-selected.k-state-hover td
|
|
30480
|
+
.k-state-selected.k-state-hover td,
|
|
30496
30481
|
.k-selected.k-hover td {
|
|
30497
30482
|
@include fill( $bg: $grid-sticky-selected-hovered-bg );
|
|
30498
30483
|
}
|
|
@@ -30538,7 +30523,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30538
30523
|
&.k-state-border-down {
|
|
30539
30524
|
box-shadow: inset 0 0 0 2px rgba( 0, 0, 0, .1 );
|
|
30540
30525
|
}
|
|
30541
|
-
&.k-state-active
|
|
30526
|
+
&.k-state-active,
|
|
30542
30527
|
&.k-active {
|
|
30543
30528
|
color: $selected-text;
|
|
30544
30529
|
background-color: $selected-bg;
|
|
@@ -30598,7 +30583,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30598
30583
|
&.k-selected .k-grid-content-sticky,
|
|
30599
30584
|
&.k-state-selected .k-grid-row-sticky,
|
|
30600
30585
|
&.k-selected .k-grid-row-sticky,
|
|
30601
|
-
td.k-grid-content-sticky.k-state-selected
|
|
30586
|
+
td.k-grid-content-sticky.k-state-selected,
|
|
30602
30587
|
td.k-grid-content-sticky.k-selected {
|
|
30603
30588
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
30604
30589
|
}
|
|
@@ -30607,7 +30592,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30607
30592
|
&.k-selected.k-alt .k-grid-content-sticky,
|
|
30608
30593
|
&.k-state-selected.k-alt .k-grid-row-sticky,
|
|
30609
30594
|
&.k-selected.k-alt .k-grid-row-sticky,
|
|
30610
|
-
&.k-alt td.k-grid-content-sticky.k-state-selected
|
|
30595
|
+
&.k-alt td.k-grid-content-sticky.k-state-selected,
|
|
30611
30596
|
&.k-alt td.k-grid-content-sticky.k-selected {
|
|
30612
30597
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
30613
30598
|
}
|
|
@@ -30618,7 +30603,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30618
30603
|
&:hover .k-grid-row-sticky,
|
|
30619
30604
|
&.k-state-hover .k-grid-content-sticky,
|
|
30620
30605
|
&.k-hover .k-grid-content-sticky,
|
|
30621
|
-
&.k-state-hover .k-grid-row-sticky
|
|
30606
|
+
&.k-state-hover .k-grid-row-sticky,
|
|
30622
30607
|
&.k-hover .k-grid-row-sticky {
|
|
30623
30608
|
background-color: $grid-sticky-hovered-bg;
|
|
30624
30609
|
}
|
|
@@ -30635,7 +30620,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30635
30620
|
&.k-selected.k-hover .k-grid-row-sticky,
|
|
30636
30621
|
&:hover td.k-grid-content-sticky.k-state-selected,
|
|
30637
30622
|
&:hover td.k-grid-content-sticky.k-selected,
|
|
30638
|
-
&.k-state-hover td.k-grid-content-sticky.k-state-selected
|
|
30623
|
+
&.k-state-hover td.k-grid-content-sticky.k-state-selected,
|
|
30639
30624
|
&.k-hover td.k-grid-content-sticky.k-selected {
|
|
30640
30625
|
background-color: $grid-sticky-selected-hovered-bg;
|
|
30641
30626
|
}
|
|
@@ -30649,7 +30634,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30649
30634
|
background-color: $grid-sticky-bg;
|
|
30650
30635
|
|
|
30651
30636
|
&:hover,
|
|
30652
|
-
&.k-state-hover
|
|
30637
|
+
&.k-state-hover,
|
|
30653
30638
|
&.k-hover {
|
|
30654
30639
|
background-color: $grid-sticky-hovered-bg;
|
|
30655
30640
|
}
|
|
@@ -30663,7 +30648,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30663
30648
|
}
|
|
30664
30649
|
|
|
30665
30650
|
&:hover td,
|
|
30666
|
-
&.k-state-hover td
|
|
30651
|
+
&.k-state-hover td,
|
|
30667
30652
|
&.k-hover td {
|
|
30668
30653
|
background-color: $grid-sticky-hovered-bg;
|
|
30669
30654
|
}
|
|
@@ -30681,7 +30666,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30681
30666
|
.k-selected.k-grid-row-sticky td,
|
|
30682
30667
|
.k-grid-row-sticky td.k-state-selected,
|
|
30683
30668
|
.k-grid-row-sticky td.k-selected,
|
|
30684
|
-
.k-state-selected.k-grid-content-sticky
|
|
30669
|
+
.k-state-selected.k-grid-content-sticky,
|
|
30685
30670
|
.k-selected.k-grid-content-sticky {
|
|
30686
30671
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
30687
30672
|
}
|
|
@@ -30690,7 +30675,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30690
30675
|
tr.k-selected.k-alt .k-grid-content-sticky,
|
|
30691
30676
|
.k-state-selected.k-alt.k-grid-row-sticky td,
|
|
30692
30677
|
.k-selected.k-alt.k-grid-row-sticky td,
|
|
30693
|
-
.k-alt .k-state-selected.k-grid-content-sticky
|
|
30678
|
+
.k-alt .k-state-selected.k-grid-content-sticky,
|
|
30694
30679
|
.k-alt .k-selected.k-grid-content-sticky {
|
|
30695
30680
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
30696
30681
|
}
|
|
@@ -30706,7 +30691,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30706
30691
|
.k-grid-row-sticky.k-alt.k-state-hover td,
|
|
30707
30692
|
.k-grid-row-sticky.k-alt.k-hover td,
|
|
30708
30693
|
.k-alt:hover .k-grid-content-sticky,
|
|
30709
|
-
.k-alt.k-state-hover .k-grid-content-sticky
|
|
30694
|
+
.k-alt.k-state-hover .k-grid-content-sticky,
|
|
30710
30695
|
.k-alt.k-hover .k-grid-content-sticky {
|
|
30711
30696
|
background-color: $grid-sticky-hovered-bg;
|
|
30712
30697
|
}
|
|
@@ -30734,7 +30719,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30734
30719
|
.k-grid-row-sticky.k-hover td.k-selected,
|
|
30735
30720
|
tr:hover .k-grid-content-sticky.k-state-selected,
|
|
30736
30721
|
tr:hover .k-grid-content-sticky.k-selected,
|
|
30737
|
-
tr.k-state-hover .k-grid-content-sticky.k-state-selected
|
|
30722
|
+
tr.k-state-hover .k-grid-content-sticky.k-state-selected,
|
|
30738
30723
|
tr.k-hover .k-grid-content-sticky.k-selected {
|
|
30739
30724
|
background-color: $grid-sticky-selected-hovered-bg;
|
|
30740
30725
|
}
|
|
@@ -30746,7 +30731,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30746
30731
|
}
|
|
30747
30732
|
|
|
30748
30733
|
&:hover .k-grid-content-sticky,
|
|
30749
|
-
&.k-state-hover .k-grid-content-sticky
|
|
30734
|
+
&.k-state-hover .k-grid-content-sticky,
|
|
30750
30735
|
&.k-hover .k-grid-content-sticky {
|
|
30751
30736
|
@include fill( $bg: $grid-sticky-hovered-bg );
|
|
30752
30737
|
}
|
|
@@ -30760,13 +30745,13 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30760
30745
|
);
|
|
30761
30746
|
}
|
|
30762
30747
|
.k-columnmenu-item:focus,
|
|
30763
|
-
.k-columnmenu-item.k-state-focus
|
|
30748
|
+
.k-columnmenu-item.k-state-focus,
|
|
30764
30749
|
.k-columnmenu-item.k-focus {
|
|
30765
30750
|
@include box-shadow( $kendo-list-item-focus-shadow );
|
|
30766
30751
|
}
|
|
30767
30752
|
|
|
30768
30753
|
.k-columnmenu-item {
|
|
30769
|
-
&.k-state-selected
|
|
30754
|
+
&.k-state-selected,
|
|
30770
30755
|
&.k-selected {
|
|
30771
30756
|
@include fill(
|
|
30772
30757
|
$kendo-list-item-selected-text,
|
|
@@ -30792,7 +30777,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30792
30777
|
);
|
|
30793
30778
|
|
|
30794
30779
|
&:hover,
|
|
30795
|
-
&.k-state-hover
|
|
30780
|
+
&.k-state-hover,
|
|
30796
30781
|
&.k-hover {
|
|
30797
30782
|
@include fill(
|
|
30798
30783
|
$kendo-list-item-hover-text,
|
|
@@ -30800,7 +30785,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30800
30785
|
);
|
|
30801
30786
|
}
|
|
30802
30787
|
|
|
30803
|
-
&.k-state-selected
|
|
30788
|
+
&.k-state-selected,
|
|
30804
30789
|
&.k-selected {
|
|
30805
30790
|
@include fill(
|
|
30806
30791
|
$kendo-list-item-selected-text,
|
|
@@ -30809,7 +30794,7 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30809
30794
|
}
|
|
30810
30795
|
|
|
30811
30796
|
&:focus,
|
|
30812
|
-
&.k-state-focused
|
|
30797
|
+
&.k-state-focused,
|
|
30813
30798
|
&.k-focus {
|
|
30814
30799
|
@include box-shadow( $kendo-list-item-focus-shadow );
|
|
30815
30800
|
}
|
|
@@ -31051,7 +31036,7 @@ $listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
31051
31036
|
// Listview content
|
|
31052
31037
|
.k-listview-content {
|
|
31053
31038
|
|
|
31054
|
-
> .k-state-focused
|
|
31039
|
+
> .k-state-focused,
|
|
31055
31040
|
> .k-focus {
|
|
31056
31041
|
@include fill(
|
|
31057
31042
|
$listview-item-focus-text,
|
|
@@ -31061,7 +31046,7 @@ $listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
31061
31046
|
@include box-shadow( $listview-item-focus-shadow );
|
|
31062
31047
|
}
|
|
31063
31048
|
|
|
31064
|
-
> .k-state-selected
|
|
31049
|
+
> .k-state-selected,
|
|
31065
31050
|
> .k-selected {
|
|
31066
31051
|
@include fill(
|
|
31067
31052
|
$listview-item-selected-text,
|
|
@@ -31442,7 +31427,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
31442
31427
|
overflow: hidden;
|
|
31443
31428
|
|
|
31444
31429
|
// disabled cells in the Spreadsheet should allow navigation if link is used
|
|
31445
|
-
.k-state-disabled
|
|
31430
|
+
.k-state-disabled,
|
|
31446
31431
|
.k-disabled {
|
|
31447
31432
|
pointer-events: auto;
|
|
31448
31433
|
}
|
|
@@ -32004,7 +31989,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32004
31989
|
background-position: 50% 50%;
|
|
32005
31990
|
|
|
32006
31991
|
&:hover div,
|
|
32007
|
-
&.k-state-hovered div
|
|
31992
|
+
&.k-state-hovered div,
|
|
32008
31993
|
&.k-hover div {
|
|
32009
31994
|
margin: 0;
|
|
32010
31995
|
align-self: center;
|
|
@@ -32070,7 +32055,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32070
32055
|
.k-spreadsheet-insert-image-dialog {
|
|
32071
32056
|
.k-spreadsheet-has-image {
|
|
32072
32057
|
&:hover,
|
|
32073
|
-
&.k-state-hovered
|
|
32058
|
+
&.k-state-hovered,
|
|
32074
32059
|
&.k-hover {
|
|
32075
32060
|
border-radius: $spreadsheet-insert-image-dialog-preview-overlay-border-radius;
|
|
32076
32061
|
}
|
|
@@ -32250,7 +32235,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32250
32235
|
);
|
|
32251
32236
|
}
|
|
32252
32237
|
|
|
32253
|
-
&.k-state-active
|
|
32238
|
+
&.k-state-active,
|
|
32254
32239
|
&.k-active {
|
|
32255
32240
|
@include fill(
|
|
32256
32241
|
$kendo-button-active-text,
|
|
@@ -32268,7 +32253,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32268
32253
|
> .k-menu,
|
|
32269
32254
|
> .k-menu:not(.k-context-menu) {
|
|
32270
32255
|
|
|
32271
|
-
.k-item.k-state-hover
|
|
32256
|
+
.k-item.k-state-hover,
|
|
32272
32257
|
.k-item.k-hover {
|
|
32273
32258
|
@include fill(
|
|
32274
32259
|
$kendo-list-item-hover-text,
|
|
@@ -32299,7 +32284,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32299
32284
|
.k-button {}
|
|
32300
32285
|
|
|
32301
32286
|
.k-button:hover,
|
|
32302
|
-
.k-button.k-state-hover
|
|
32287
|
+
.k-button.k-state-hover,
|
|
32303
32288
|
.k-button.k-hover {
|
|
32304
32289
|
@include fill(
|
|
32305
32290
|
$kendo-list-item-hover-text,
|
|
@@ -32309,7 +32294,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32309
32294
|
.k-button:active,
|
|
32310
32295
|
.k-button.k-state-active,
|
|
32311
32296
|
.k-button.k-active,
|
|
32312
|
-
.k-button.k-state-selected
|
|
32297
|
+
.k-button.k-state-selected,
|
|
32313
32298
|
.k-button.k-selected {
|
|
32314
32299
|
@include fill(
|
|
32315
32300
|
$kendo-list-item-selected-text,
|
|
@@ -32331,13 +32316,13 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32331
32316
|
|
|
32332
32317
|
.k-spreadsheet-has-image {
|
|
32333
32318
|
&:hover,
|
|
32334
|
-
&.k-state-hovered
|
|
32319
|
+
&.k-state-hovered,
|
|
32335
32320
|
&.k-hover {
|
|
32336
32321
|
box-shadow: $spreadsheet-insert-image-dialog-preview-overlay-shadow;
|
|
32337
32322
|
}
|
|
32338
32323
|
|
|
32339
32324
|
&:hover div,
|
|
32340
|
-
&.k-state-hovered div
|
|
32325
|
+
&.k-state-hovered div,
|
|
32341
32326
|
&.k-hover div {
|
|
32342
32327
|
color: $spreadsheet-insert-image-dialog-overlay-hovered-text;
|
|
32343
32328
|
}
|
|
@@ -33328,7 +33313,7 @@ $pivotgrid-remove-text: null !default;
|
|
|
33328
33313
|
// Selected state
|
|
33329
33314
|
.k-pivotgrid-cell.k-state-selected,
|
|
33330
33315
|
.k-pivotgrid-cell.k-selected,
|
|
33331
|
-
.k-pivotgrid-row.k-state-selected > .k-pivotgrid-cell
|
|
33316
|
+
.k-pivotgrid-row.k-state-selected > .k-pivotgrid-cell,
|
|
33332
33317
|
.k-pivotgrid-row.k-selected > .k-pivotgrid-cell {
|
|
33333
33318
|
@include fill (
|
|
33334
33319
|
$pivotgrid-selected-text,
|
|
@@ -33560,7 +33545,7 @@ $treelist-footer-row-border-width: 1px !default;
|
|
|
33560
33545
|
}
|
|
33561
33546
|
|
|
33562
33547
|
.k-treelist-dragging,
|
|
33563
|
-
.k-treelist-dragging .k-state-hover
|
|
33548
|
+
.k-treelist-dragging .k-state-hover,
|
|
33564
33549
|
.k-treelist-dragging .k-hover {
|
|
33565
33550
|
cursor: default;
|
|
33566
33551
|
}
|
|
@@ -34291,7 +34276,7 @@ $filemanager-preview-icon-border: null !default;
|
|
|
34291
34276
|
);
|
|
34292
34277
|
}
|
|
34293
34278
|
|
|
34294
|
-
&.k-state-selected .k-file-icon
|
|
34279
|
+
&.k-state-selected .k-file-icon,
|
|
34295
34280
|
&.k-selected .k-file-icon {
|
|
34296
34281
|
@include fill(
|
|
34297
34282
|
inherit,
|
|
@@ -34755,7 +34740,7 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
34755
34740
|
);
|
|
34756
34741
|
}
|
|
34757
34742
|
.k-taskboard-column:focus,
|
|
34758
|
-
.k-taskboard-column.k-state-focus
|
|
34743
|
+
.k-taskboard-column.k-state-focus,
|
|
34759
34744
|
.k-taskboard-column.k-focus {
|
|
34760
34745
|
@include fill(
|
|
34761
34746
|
$taskboard-column-focus-text,
|
|
@@ -34958,7 +34943,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
34958
34943
|
pointer-events: auto;
|
|
34959
34944
|
}
|
|
34960
34945
|
|
|
34961
|
-
.k-editor-content.k-state-focused
|
|
34946
|
+
.k-editor-content.k-state-focused,
|
|
34962
34947
|
.k-editor-content.k-focus {
|
|
34963
34948
|
outline-width: 1px;
|
|
34964
34949
|
outline-style: dashed;
|
|
@@ -35412,7 +35397,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
35412
35397
|
display: block;
|
|
35413
35398
|
margin: auto;
|
|
35414
35399
|
|
|
35415
|
-
&.k-state-selected
|
|
35400
|
+
&.k-state-selected,
|
|
35416
35401
|
&.k-selected {
|
|
35417
35402
|
color: inherit;
|
|
35418
35403
|
border-width: 0;
|
|
@@ -35635,7 +35620,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
35635
35620
|
|
|
35636
35621
|
kendo-editor {
|
|
35637
35622
|
&.k-readonly {
|
|
35638
|
-
.k-editor-content.k-state-focused
|
|
35623
|
+
.k-editor-content.k-state-focused,
|
|
35639
35624
|
.k-editor-content.k-focus {
|
|
35640
35625
|
outline-color: $body-text;
|
|
35641
35626
|
}
|
|
@@ -35673,7 +35658,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
35673
35658
|
|
|
35674
35659
|
// Hover & Actve state
|
|
35675
35660
|
&:hover,
|
|
35676
|
-
&.k-state-active
|
|
35661
|
+
&.k-state-active,
|
|
35677
35662
|
&.k-active {
|
|
35678
35663
|
border-color: $panel-border;
|
|
35679
35664
|
}
|
|
@@ -35691,7 +35676,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
35691
35676
|
|
|
35692
35677
|
// Insert table
|
|
35693
35678
|
.k-ct-popup {
|
|
35694
|
-
.k-state-selected
|
|
35679
|
+
.k-state-selected,
|
|
35695
35680
|
.k-selected {
|
|
35696
35681
|
@include fill( $selected-text, $selected-bg, $selected-border, none );
|
|
35697
35682
|
}
|
|
@@ -36249,7 +36234,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
36249
36234
|
}
|
|
36250
36235
|
}
|
|
36251
36236
|
|
|
36252
|
-
tr.k-state-selected > td:last-child
|
|
36237
|
+
tr.k-state-selected > td:last-child,
|
|
36253
36238
|
tr.k-selected > td:last-child {
|
|
36254
36239
|
background: transparent;
|
|
36255
36240
|
}
|
|
@@ -36519,7 +36504,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
36519
36504
|
border-color: currentColor;
|
|
36520
36505
|
position: absolute;
|
|
36521
36506
|
}
|
|
36522
|
-
.k-gantt-line.k-state-selected
|
|
36507
|
+
.k-gantt-line.k-state-selected,
|
|
36523
36508
|
.k-gantt-line.k-selected {
|
|
36524
36509
|
z-index: 3;
|
|
36525
36510
|
}
|
|
@@ -36593,7 +36578,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
36593
36578
|
transform: translate(-50%, -50%);
|
|
36594
36579
|
}
|
|
36595
36580
|
.k-task-dot:hover::before,
|
|
36596
|
-
.k-task-dot.k-state-hover::before
|
|
36581
|
+
.k-task-dot.k-state-hover::before,
|
|
36597
36582
|
.k-task-dot.k-hover::before {
|
|
36598
36583
|
border-width: 1px;
|
|
36599
36584
|
}
|
|
@@ -37067,7 +37052,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
37067
37052
|
$border: $gantt-milestone-border
|
|
37068
37053
|
);
|
|
37069
37054
|
}
|
|
37070
|
-
.k-task-milestone.k-state-selected .k-task-milestone-content
|
|
37055
|
+
.k-task-milestone.k-state-selected .k-task-milestone-content,
|
|
37071
37056
|
.k-task-milestone.k-selected .k-task-milestone-content {
|
|
37072
37057
|
@include fill(
|
|
37073
37058
|
$bg: $gantt-milestone-selected-bg,
|
|
@@ -37082,7 +37067,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
37082
37067
|
stroke: $gantt-line-fill;
|
|
37083
37068
|
}
|
|
37084
37069
|
|
|
37085
|
-
polyline.k-state-selected
|
|
37070
|
+
polyline.k-state-selected,
|
|
37086
37071
|
polyline.k-selected {
|
|
37087
37072
|
stroke: $gantt-line-selected-fill;
|
|
37088
37073
|
}
|
|
@@ -37136,7 +37121,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
37136
37121
|
);
|
|
37137
37122
|
}
|
|
37138
37123
|
.k-task-dot:hover::before,
|
|
37139
|
-
.k-task-dot.k-state-hover::before
|
|
37124
|
+
.k-task-dot.k-state-hover::before,
|
|
37140
37125
|
.k-task-dot.k-hover::before {
|
|
37141
37126
|
@include fill(
|
|
37142
37127
|
$bg: $gantt-dot-hover-bg,
|
|
@@ -37162,7 +37147,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
37162
37147
|
);
|
|
37163
37148
|
}
|
|
37164
37149
|
}
|
|
37165
|
-
.k-task-milestone.k-state-selected
|
|
37150
|
+
.k-task-milestone.k-state-selected,
|
|
37166
37151
|
.k-task-milestone.k-selected {
|
|
37167
37152
|
background-image: none;
|
|
37168
37153
|
@include fill(
|
|
@@ -37193,7 +37178,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
37193
37178
|
.k-task-advanced .k-task-summary-complete {
|
|
37194
37179
|
color: $gantt-advanced-bg;
|
|
37195
37180
|
}
|
|
37196
|
-
.k-task-summary.k-state-selected
|
|
37181
|
+
.k-task-summary.k-state-selected,
|
|
37197
37182
|
.k-task-summary.k-selected {
|
|
37198
37183
|
color: $gantt-summary-selected-bg;
|
|
37199
37184
|
|
|
@@ -37237,7 +37222,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
37237
37222
|
$bg: $gantt-advanced-bg
|
|
37238
37223
|
);
|
|
37239
37224
|
}
|
|
37240
|
-
.k-task-single.k-state-selected
|
|
37225
|
+
.k-task-single.k-state-selected,
|
|
37241
37226
|
.k-task-single.k-selected {
|
|
37242
37227
|
@include fill(
|
|
37243
37228
|
$gantt-task-selected-text,
|
|
@@ -37254,7 +37239,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
37254
37239
|
.k-gantt-line {
|
|
37255
37240
|
color: $gantt-line-fill;
|
|
37256
37241
|
}
|
|
37257
|
-
.k-gantt-line.k-state-selected
|
|
37242
|
+
.k-gantt-line.k-state-selected,
|
|
37258
37243
|
.k-gantt-line.k-selected {
|
|
37259
37244
|
color: $gantt-line-selected-fill;
|
|
37260
37245
|
}
|
|
@@ -37913,7 +37898,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
37913
37898
|
}
|
|
37914
37899
|
|
|
37915
37900
|
&:hover,
|
|
37916
|
-
&.k-state-hover
|
|
37901
|
+
&.k-state-hover,
|
|
37917
37902
|
&.k-hover {
|
|
37918
37903
|
.k-event-delete {
|
|
37919
37904
|
opacity: 1;
|
|
@@ -37979,7 +37964,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
37979
37964
|
|
|
37980
37965
|
// Hover
|
|
37981
37966
|
&:hover,
|
|
37982
|
-
&.k-state-hover
|
|
37967
|
+
&.k-state-hover,
|
|
37983
37968
|
&.k-hover {
|
|
37984
37969
|
.k-event-actions .k-event-delete,
|
|
37985
37970
|
.k-resize-handle {
|
|
@@ -38241,7 +38226,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38241
38226
|
.k-hover .k-task > .k-event-delete,
|
|
38242
38227
|
.k-scheduler-content tr:hover .k-event-delete,
|
|
38243
38228
|
.k-scheduler-content .k-scheduler-row:hover .k-event-delete,
|
|
38244
|
-
.k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete
|
|
38229
|
+
.k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete,
|
|
38245
38230
|
.k-scheduler-content .k-scheduler-row.k-hover .k-event-delete {
|
|
38246
38231
|
visibility: visible;
|
|
38247
38232
|
}
|
|
@@ -38315,7 +38300,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38315
38300
|
position: relative;
|
|
38316
38301
|
}
|
|
38317
38302
|
|
|
38318
|
-
td.k-state-selected
|
|
38303
|
+
td.k-state-selected,
|
|
38319
38304
|
td.k-selected {
|
|
38320
38305
|
background-color: inherit;
|
|
38321
38306
|
}
|
|
@@ -38665,7 +38650,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38665
38650
|
|
|
38666
38651
|
.k-scheduler-layout td.k-state-selected,
|
|
38667
38652
|
.k-scheduler-layout td.k-selected,
|
|
38668
|
-
.k-scheduler-layout .k-scheduler-cell.k-state-selected
|
|
38653
|
+
.k-scheduler-layout .k-scheduler-cell.k-state-selected,
|
|
38669
38654
|
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
38670
38655
|
background-color: rgba($selected-bg, .25);
|
|
38671
38656
|
}
|
|
@@ -38688,7 +38673,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38688
38673
|
);
|
|
38689
38674
|
@include box-shadow( $scheduler-event-shadow );
|
|
38690
38675
|
|
|
38691
|
-
&.k-state-hover
|
|
38676
|
+
&.k-state-hover,
|
|
38692
38677
|
&.k-hover {
|
|
38693
38678
|
@include fill(
|
|
38694
38679
|
$scheduler-event-hover-text,
|
|
@@ -38699,7 +38684,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38699
38684
|
@include box-shadow( $scheduler-event-hover-shadow );
|
|
38700
38685
|
}
|
|
38701
38686
|
|
|
38702
|
-
&.k-state-selected
|
|
38687
|
+
&.k-state-selected,
|
|
38703
38688
|
&.k-selected {
|
|
38704
38689
|
@include fill(
|
|
38705
38690
|
$scheduler-event-selected-text,
|
|
@@ -38769,7 +38754,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38769
38754
|
.k-scheduler-content tr.k-state-hover,
|
|
38770
38755
|
.k-scheduler-content tr.k-hover,
|
|
38771
38756
|
.k-scheduler-content .k-scheduler-row:hover,
|
|
38772
|
-
.k-scheduler-content .k-scheduler-row.k-state-hover
|
|
38757
|
+
.k-scheduler-content .k-scheduler-row.k-state-hover,
|
|
38773
38758
|
.k-scheduler-content .k-scheduler-row.k-hover {
|
|
38774
38759
|
@include fill(
|
|
38775
38760
|
$hovered-text,
|
|
@@ -38783,7 +38768,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38783
38768
|
.k-scheduler-content tr:hover .k-scheduler-groupcolumn,
|
|
38784
38769
|
.k-scheduler-content tr.k-state-hover .k-scheduler-datecolumn,
|
|
38785
38770
|
.k-scheduler-content tr.k-hover .k-scheduler-datecolumn,
|
|
38786
|
-
.k-scheduler-content tr.k-state-hover .k-scheduler-groupcolumn
|
|
38771
|
+
.k-scheduler-content tr.k-state-hover .k-scheduler-groupcolumn,
|
|
38787
38772
|
.k-scheduler-content tr.k-hover .k-scheduler-groupcolumn {
|
|
38788
38773
|
@include fill(
|
|
38789
38774
|
$scheduler-text,
|
|
@@ -38793,13 +38778,13 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38793
38778
|
}
|
|
38794
38779
|
|
|
38795
38780
|
// Selected
|
|
38796
|
-
.k-scheduler-content tr.k-state-selected
|
|
38781
|
+
.k-scheduler-content tr.k-state-selected,
|
|
38797
38782
|
.k-scheduler-content tr.k-selected {
|
|
38798
38783
|
background-color: rgba($selected-bg, .25);
|
|
38799
38784
|
}
|
|
38800
38785
|
.k-scheduler-content tr.k-state-selected .k-scheduler-datecolumn,
|
|
38801
38786
|
.k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
|
|
38802
|
-
.k-scheduler-content tr.k-state-selected .k-scheduler-groupcolumn
|
|
38787
|
+
.k-scheduler-content tr.k-state-selected .k-scheduler-groupcolumn,
|
|
38803
38788
|
.k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
|
|
38804
38789
|
background-color: $scheduler-bg;
|
|
38805
38790
|
}
|
|
@@ -38817,7 +38802,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38817
38802
|
@include fill( $bg: $scheduler-yearview-indicator-bg );
|
|
38818
38803
|
}
|
|
38819
38804
|
|
|
38820
|
-
.k-state-selected .k-day-indicator
|
|
38805
|
+
.k-state-selected .k-day-indicator,
|
|
38821
38806
|
.k-selected .k-day-indicator {
|
|
38822
38807
|
@include fill( $bg: $scheduler-yearview-indicator-selected-bg );
|
|
38823
38808
|
}
|
|
@@ -39121,7 +39106,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
39121
39106
|
|
|
39122
39107
|
|
|
39123
39108
|
// Message states
|
|
39124
|
-
.k-message.k-state-selected
|
|
39109
|
+
.k-message.k-state-selected,
|
|
39125
39110
|
.k-message.k-selected {
|
|
39126
39111
|
margin-bottom: $chat-item-spacing-y;
|
|
39127
39112
|
border: 0;
|
|
@@ -39331,7 +39316,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
39331
39316
|
flex: 0 0 auto;
|
|
39332
39317
|
}
|
|
39333
39318
|
|
|
39334
|
-
&.k-state-selected
|
|
39319
|
+
&.k-state-selected,
|
|
39335
39320
|
&.k-selected {
|
|
39336
39321
|
background: none;
|
|
39337
39322
|
}
|
|
@@ -39568,7 +39553,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
39568
39553
|
.k-bubble:hover {
|
|
39569
39554
|
@include box-shadow( $chat-bubble-hover-shadow );
|
|
39570
39555
|
}
|
|
39571
|
-
.k-state-selected .k-bubble
|
|
39556
|
+
.k-state-selected .k-bubble,
|
|
39572
39557
|
.k-selected .k-bubble {
|
|
39573
39558
|
@include box-shadow( $chat-bubble-selected-shadow );
|
|
39574
39559
|
}
|
|
@@ -39584,7 +39569,7 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
39584
39569
|
.k-alt .k-bubble:hover {
|
|
39585
39570
|
@include box-shadow( $chat-alt-bubble-hover-shadow );
|
|
39586
39571
|
}
|
|
39587
|
-
.k-alt .k-state-selected .k-bubble
|
|
39572
|
+
.k-alt .k-state-selected .k-bubble,
|
|
39588
39573
|
.k-alt .k-selected .k-bubble {
|
|
39589
39574
|
@include box-shadow( $chat-alt-bubble-selected-shadow );
|
|
39590
39575
|
}
|
|
@@ -40383,7 +40368,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
40383
40368
|
color: $body-text;
|
|
40384
40369
|
}
|
|
40385
40370
|
|
|
40386
|
-
.k-timeline-arrow.k-state-disabled
|
|
40371
|
+
.k-timeline-arrow.k-state-disabled,
|
|
40387
40372
|
.k-timeline-arrow.k-disabled {
|
|
40388
40373
|
opacity: 1; // The arrow button in disabled mode should have a solid background
|
|
40389
40374
|
color: $timeline-track-arrow-disabled-text;
|
|
@@ -40404,7 +40389,7 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
40404
40389
|
background-color: $timeline-flag-bg;
|
|
40405
40390
|
}
|
|
40406
40391
|
|
|
40407
|
-
.k-timeline-track-item.k-state-focus .k-timeline-circle
|
|
40392
|
+
.k-timeline-track-item.k-state-focus .k-timeline-circle,
|
|
40408
40393
|
.k-timeline-track-item.k-focus .k-timeline-circle {
|
|
40409
40394
|
@include box-shadow( $timeline-track-item-focus-shadow );
|
|
40410
40395
|
}
|
|
@@ -41115,7 +41100,7 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
41115
41100
|
-webkit-tap-highlight-color: $scrollview-arrow-tap-highlight-color;
|
|
41116
41101
|
|
|
41117
41102
|
&:focus,
|
|
41118
|
-
&.k-state-focus
|
|
41103
|
+
&.k-state-focus,
|
|
41119
41104
|
&.k-focus {
|
|
41120
41105
|
color: $scrollview-navigation-color;
|
|
41121
41106
|
opacity: $scrollview-navigation-hover-opacity;
|
|
@@ -41126,7 +41111,7 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
41126
41111
|
}
|
|
41127
41112
|
|
|
41128
41113
|
&:hover,
|
|
41129
|
-
&.k-state-hover
|
|
41114
|
+
&.k-state-hover,
|
|
41130
41115
|
&.k-hover {
|
|
41131
41116
|
color: $scrollview-navigation-color;
|
|
41132
41117
|
opacity: $scrollview-navigation-hover-opacity;
|
|
@@ -41146,14 +41131,14 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
41146
41131
|
}
|
|
41147
41132
|
|
|
41148
41133
|
&:focus,
|
|
41149
|
-
&.k-state-focused
|
|
41134
|
+
&.k-state-focused,
|
|
41150
41135
|
&.k-focus {
|
|
41151
41136
|
box-shadow: $scrollview-pagebutton-shadow;
|
|
41152
41137
|
}
|
|
41153
41138
|
}
|
|
41154
41139
|
|
|
41155
41140
|
.k-scrollview-nav > .k-link:hover,
|
|
41156
|
-
.k-scrollview-nav > .k-link.k-state-hover
|
|
41141
|
+
.k-scrollview-nav > .k-link.k-state-hover,
|
|
41157
41142
|
.k-scrollview-nav > .k-link.k-hover {
|
|
41158
41143
|
box-shadow: $scrollview-pagebutton-shadow;
|
|
41159
41144
|
}
|
|
@@ -41974,7 +41959,7 @@ $treemap-line-height: $line-height !default;
|
|
|
41974
41959
|
.k-leaf.k-inverse {
|
|
41975
41960
|
color: $component-text;
|
|
41976
41961
|
}
|
|
41977
|
-
.k-leaf.k-state-hover
|
|
41962
|
+
.k-leaf.k-state-hover,
|
|
41978
41963
|
.k-leaf.k-hover {
|
|
41979
41964
|
box-shadow: inset 0 0 0 3px $component-border;
|
|
41980
41965
|
}
|
|
@@ -42473,7 +42458,7 @@ $orgchart-line-v-height: 25px !default;
|
|
|
42473
42458
|
.k-orgchart-node-group-container:focus,
|
|
42474
42459
|
.k-orgchart-node-group-container.k-focus,
|
|
42475
42460
|
.k-orgchart-node-group-container.k-state-focus,
|
|
42476
|
-
.k-orgchart-node-group-container.k-state-focused
|
|
42461
|
+
.k-orgchart-node-group-container.k-state-focused,
|
|
42477
42462
|
.k-orgchart-node-group-container.k-focus {
|
|
42478
42463
|
@include box-shadow( $orgchart-node-group-focus-shadow );
|
|
42479
42464
|
@include fill ( $border: $orgchart-node-group-focus-border );
|
|
@@ -42495,6 +42480,154 @@ $orgchart-line-v-height: 25px !default;
|
|
|
42495
42480
|
|
|
42496
42481
|
// #endregion
|
|
42497
42482
|
|
|
42483
|
+
// #endregion
|
|
42484
|
+
// #region @import "signature/_index.scss"; -> packages/classic/scss/signature/_index.scss
|
|
42485
|
+
// #region @import "../core/_index.scss"; -> packages/classic/scss/core/_index.scss
|
|
42486
|
+
// File already imported_once. Skipping output.
|
|
42487
|
+
// #endregion
|
|
42488
|
+
|
|
42489
|
+
// Dependencies
|
|
42490
|
+
// #region @import "../button/_index.scss"; -> packages/classic/scss/button/_index.scss
|
|
42491
|
+
// File already imported_once. Skipping output.
|
|
42492
|
+
// #endregion
|
|
42493
|
+
|
|
42494
|
+
// Component
|
|
42495
|
+
// #region @import "_variables.scss"; -> packages/classic/scss/signature/_variables.scss
|
|
42496
|
+
$kendo-signature-width: 250px !default;
|
|
42497
|
+
$kendo-signature-height: 84px !default;
|
|
42498
|
+
|
|
42499
|
+
$kendo-signature-maximized-width: 750px !default;
|
|
42500
|
+
$kendo-signature-maximized-height: 252px !default;
|
|
42501
|
+
|
|
42502
|
+
$kendo-signature-padding: map-get( $spacing, 1 ) !default;
|
|
42503
|
+
$kendo-signature-padding-sm: map-get( $spacing, 1 ) - map-get( $spacing, thin ) !default;
|
|
42504
|
+
$kendo-signature-padding-md: $kendo-signature-padding !default;
|
|
42505
|
+
$kendo-signature-padding-lg: map-get( $spacing, 1 ) + map-get( $spacing, thin ) !default;
|
|
42506
|
+
|
|
42507
|
+
$kendo-signature-line-width: 1px !default;
|
|
42508
|
+
$kendo-signature-line-style: dashed !default;
|
|
42509
|
+
$kendo-signature-line-color: rgba( $info, .24 ) !default;
|
|
42510
|
+
|
|
42511
|
+
$kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding} ) !default;
|
|
42512
|
+
$kendo-signature-line-size-sm: calc( 100% - 2 * #{$kendo-signature-padding-sm} ) !default;
|
|
42513
|
+
$kendo-signature-line-size-md: calc( 100% - 2 * #{$kendo-signature-padding-md} ) !default;
|
|
42514
|
+
$kendo-signature-line-size-lg: calc( 100% - 2 * #{$kendo-signature-padding-lg} ) !default;
|
|
42515
|
+
|
|
42516
|
+
$kendo-signature-line-bottom-offset: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding} ) !default;
|
|
42517
|
+
$kendo-signature-line-bottom-offset-sm: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-sm} ) !default;
|
|
42518
|
+
$kendo-signature-line-bottom-offset-md: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-md} ) !default;
|
|
42519
|
+
$kendo-signature-line-bottom-offset-lg: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-lg} ) !default;
|
|
42520
|
+
|
|
42521
|
+
$kendo-signature-sizes: (
|
|
42522
|
+
sm: (
|
|
42523
|
+
padding: $kendo-signature-padding-sm,
|
|
42524
|
+
line-size: $kendo-signature-line-size-sm,
|
|
42525
|
+
line-offset: $kendo-signature-line-bottom-offset-sm
|
|
42526
|
+
),
|
|
42527
|
+
md: (
|
|
42528
|
+
padding: $kendo-signature-padding-md,
|
|
42529
|
+
line-size: $kendo-signature-line-size-md,
|
|
42530
|
+
line-offset: $kendo-signature-line-bottom-offset-md
|
|
42531
|
+
),
|
|
42532
|
+
lg: (
|
|
42533
|
+
padding: $kendo-signature-padding-lg,
|
|
42534
|
+
line-size: $kendo-signature-line-size-lg,
|
|
42535
|
+
line-offset: $kendo-signature-line-bottom-offset-lg
|
|
42536
|
+
)
|
|
42537
|
+
) !default;
|
|
42538
|
+
|
|
42539
|
+
$kendo-signature-actions-gap: map-get( $spacing, 1 ) !default;
|
|
42540
|
+
$kendo-signature-maximized-line-width: map-get( $spacing, 1 ) - map-get( $spacing, hair ) !default;
|
|
42541
|
+
|
|
42542
|
+
// #endregion
|
|
42543
|
+
// #region @import "_layout.scss"; -> packages/classic/scss/signature/_layout.scss
|
|
42544
|
+
// #region @import "~@progress/kendo-theme-default/scss/signature/_layout.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/signature/_layout.scss
|
|
42545
|
+
@include exports("signature/layout") {
|
|
42546
|
+
|
|
42547
|
+
.k-signature {
|
|
42548
|
+
width: $kendo-signature-width;
|
|
42549
|
+
height: $kendo-signature-height;
|
|
42550
|
+
position: relative;
|
|
42551
|
+
box-sizing: border-box;
|
|
42552
|
+
display: flex;
|
|
42553
|
+
flex-direction: column;
|
|
42554
|
+
justify-content: space-between;
|
|
42555
|
+
|
|
42556
|
+
&.k-signature-maximized {
|
|
42557
|
+
width: $kendo-signature-maximized-width;
|
|
42558
|
+
height: $kendo-signature-maximized-height;
|
|
42559
|
+
|
|
42560
|
+
> .k-signature-line {
|
|
42561
|
+
border-bottom-width: $kendo-signature-maximized-line-width;
|
|
42562
|
+
}
|
|
42563
|
+
}
|
|
42564
|
+
}
|
|
42565
|
+
|
|
42566
|
+
.k-signature-actions {
|
|
42567
|
+
display: flex;
|
|
42568
|
+
width: min-content;
|
|
42569
|
+
margin-inline-start: auto;
|
|
42570
|
+
gap: $kendo-signature-actions-gap;
|
|
42571
|
+
z-index: 2;
|
|
42572
|
+
}
|
|
42573
|
+
|
|
42574
|
+
.k-signature-canvas {
|
|
42575
|
+
position: absolute;
|
|
42576
|
+
top: 0;
|
|
42577
|
+
left: 0;
|
|
42578
|
+
width: 100%;
|
|
42579
|
+
height: 100%;
|
|
42580
|
+
display: block;
|
|
42581
|
+
z-index: 1;
|
|
42582
|
+
}
|
|
42583
|
+
|
|
42584
|
+
.k-signature-line {
|
|
42585
|
+
position: absolute;
|
|
42586
|
+
z-index: 0;
|
|
42587
|
+
border-bottom-width: $kendo-signature-line-width;
|
|
42588
|
+
border-bottom-style: $kendo-signature-line-style;
|
|
42589
|
+
}
|
|
42590
|
+
|
|
42591
|
+
// Sizes
|
|
42592
|
+
@each $size, $size-props in $kendo-signature-sizes {
|
|
42593
|
+
$_padding: map-get($size-props, padding);
|
|
42594
|
+
$_line-size: map-get($size-props, line-size);
|
|
42595
|
+
$_line-offset: map-get($size-props, line-offset);
|
|
42596
|
+
|
|
42597
|
+
.k-signature-#{$size} {
|
|
42598
|
+
padding: $_padding;
|
|
42599
|
+
|
|
42600
|
+
.k-signature-line {
|
|
42601
|
+
width: $_line-size;
|
|
42602
|
+
bottom: $_line-offset;
|
|
42603
|
+
}
|
|
42604
|
+
}
|
|
42605
|
+
|
|
42606
|
+
}
|
|
42607
|
+
}
|
|
42608
|
+
|
|
42609
|
+
// #endregion
|
|
42610
|
+
|
|
42611
|
+
// #endregion
|
|
42612
|
+
// #region @import "_theme.scss"; -> packages/classic/scss/signature/_theme.scss
|
|
42613
|
+
// #region @import "~@progress/kendo-theme-default/scss/signature/_theme.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/signature/_theme.scss
|
|
42614
|
+
@include exports("signature/theme") {
|
|
42615
|
+
|
|
42616
|
+
// Solid signature
|
|
42617
|
+
.k-signature {
|
|
42618
|
+
|
|
42619
|
+
.k-signature-line {
|
|
42620
|
+
border-bottom-color: $kendo-signature-line-color;
|
|
42621
|
+
}
|
|
42622
|
+
}
|
|
42623
|
+
|
|
42624
|
+
|
|
42625
|
+
}
|
|
42626
|
+
|
|
42627
|
+
// #endregion
|
|
42628
|
+
|
|
42629
|
+
// #endregion
|
|
42630
|
+
|
|
42498
42631
|
// #endregion
|
|
42499
42632
|
|
|
42500
42633
|
// #endregion
|