@progress/kendo-theme-bootstrap 5.6.1-dev.6 → 5.8.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 +795 -908
- package/dist/all.scss +299 -522
- 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 +4 -4
- package/scss/breadcrumb/_layout.scss +0 -1
- package/scss/breadcrumb/_theme.scss +0 -1
- package/scss/fab/_theme.scss +16 -16
- package/scss/forms/_variables.scss +1 -1
- package/scss/grid/_theme.scss +5 -63
- package/scss/pager/_theme.scss +0 -1
- package/scss/pdf-viewer/_index.scss +3 -0
- package/scss/pdf-viewer/_variables.scss +14 -1
- package/scss/scrollview/_theme.scss +0 -4
- package/scss/signature/_variables.scss +23 -21
- package/scss/spreadsheet/_theme.scss +0 -7
- package/scss/switch/_layout.scss +1 -2
- package/scss/tabstrip/_theme.scss +4 -8
- package/scss/typography/_variables.scss +1 -1
package/dist/all.scss
CHANGED
|
@@ -3488,7 +3488,7 @@ $line-height-xs: 1 !default;
|
|
|
3488
3488
|
$line-height-sm: $line-height-sm !default;
|
|
3489
3489
|
$line-height-md: $line-height !default;
|
|
3490
3490
|
$line-height-lg: $line-height-lg !default;
|
|
3491
|
-
$line-height-em: ($line-height * 1em) !default;
|
|
3491
|
+
$line-height-em: calc( #{$line-height} * 1em ) !default;
|
|
3492
3492
|
|
|
3493
3493
|
|
|
3494
3494
|
// Font weight
|
|
@@ -3722,7 +3722,6 @@ $display4-letter-spacing: null !default;
|
|
|
3722
3722
|
@include exports( "common/disabled" ) {
|
|
3723
3723
|
|
|
3724
3724
|
// Disabled state
|
|
3725
|
-
.k-state-disabled,
|
|
3726
3725
|
.k-disabled,
|
|
3727
3726
|
.k-widget[disabled],
|
|
3728
3727
|
.k-disabled {
|
|
@@ -3737,8 +3736,7 @@ $display4-letter-spacing: null !default;
|
|
|
3737
3736
|
|
|
3738
3737
|
// Nested disabled
|
|
3739
3738
|
[disabled],
|
|
3740
|
-
.k-disabled
|
|
3741
|
-
.k-state-disabled {
|
|
3739
|
+
.k-disabled {
|
|
3742
3740
|
opacity: 1;
|
|
3743
3741
|
filter: grayscale(0);
|
|
3744
3742
|
}
|
|
@@ -6537,18 +6535,28 @@ $utils-border-radius: (
|
|
|
6537
6535
|
@include exports( "common/decoration/color" ) {
|
|
6538
6536
|
|
|
6539
6537
|
// sass-lint:disable-block no-important
|
|
6538
|
+
// sass-lint:disable-block class-name-format
|
|
6540
6539
|
// stylelint-disable block-opening-brace-space-before
|
|
6541
6540
|
|
|
6542
6541
|
.k-text-base,
|
|
6543
6542
|
.k-color-base {
|
|
6544
6543
|
color: $base-text;
|
|
6545
6544
|
}
|
|
6545
|
+
.\!k-text-base,
|
|
6546
|
+
.\!k-color-base {
|
|
6547
|
+
color: $base-text !important;
|
|
6548
|
+
}
|
|
6546
6549
|
|
|
6547
6550
|
.k-color-inherit { color: inherit; }
|
|
6551
|
+
.\!k-color-inherit { color: inherit !important; }
|
|
6548
6552
|
|
|
6549
6553
|
@each $name, $color in $kendo-theme-colors {
|
|
6550
6554
|
.k-text-#{$name},
|
|
6551
6555
|
.k-color-#{$name} {
|
|
6556
|
+
color: $color;
|
|
6557
|
+
}
|
|
6558
|
+
.\!k-text-#{$name},
|
|
6559
|
+
.\!k-color-#{$name} {
|
|
6552
6560
|
color: $color !important;
|
|
6553
6561
|
}
|
|
6554
6562
|
}
|
|
@@ -6559,60 +6567,16 @@ $utils-border-radius: (
|
|
|
6559
6567
|
@include exports( "common/decoration/background" ) {
|
|
6560
6568
|
|
|
6561
6569
|
// sass-lint:disable-block no-important
|
|
6570
|
+
// sass-lint:disable-block class-name-format
|
|
6562
6571
|
|
|
6563
6572
|
@each $name, $bg-color in $kendo-theme-colors {
|
|
6564
6573
|
.k-bg-#{$name} {
|
|
6565
|
-
background-color: $bg-color
|
|
6574
|
+
background-color: $bg-color;
|
|
6566
6575
|
}
|
|
6567
|
-
|
|
6568
|
-
|
|
6569
|
-
}
|
|
6570
|
-
|
|
6571
|
-
|
|
6572
|
-
@mixin variant( $base ) {
|
|
6573
|
-
background-color: tint($base, 10);
|
|
6574
|
-
color: shade($base, 6);
|
|
6575
|
-
border-color: tint($base, 9);
|
|
6576
|
-
}
|
|
6577
|
-
|
|
6578
|
-
@include exports( "common/decoration/variant" ) {
|
|
6579
|
-
|
|
6580
|
-
@each $name, $variant in $kendo-theme-colors {
|
|
6581
|
-
.k-state-#{$name} {
|
|
6582
|
-
@include variant( $variant );
|
|
6576
|
+
.\!k-bg-#{$name} {
|
|
6577
|
+
background-color: $bg-color !important;
|
|
6583
6578
|
}
|
|
6584
6579
|
}
|
|
6585
|
-
}
|
|
6586
|
-
|
|
6587
|
-
|
|
6588
|
-
@include exports( "common/decoration/legacy" ) {
|
|
6589
|
-
|
|
6590
|
-
.k-info-colored {
|
|
6591
|
-
color: #50607f;
|
|
6592
|
-
border-color: #d0d9df;
|
|
6593
|
-
background-color: #f0f9ff;
|
|
6594
|
-
}
|
|
6595
|
-
|
|
6596
|
-
.k-success-colored {
|
|
6597
|
-
color: #507f50;
|
|
6598
|
-
border-color: #d0dfd0;
|
|
6599
|
-
background-color: #f0fff0;
|
|
6600
|
-
}
|
|
6601
|
-
|
|
6602
|
-
.k-error-colored {
|
|
6603
|
-
color: #7f5050;
|
|
6604
|
-
border-color: #dfd0d0;
|
|
6605
|
-
background-color: #fff0f0;
|
|
6606
|
-
}
|
|
6607
|
-
|
|
6608
|
-
.k-shadow {
|
|
6609
|
-
// Shadow moved to popup/_layout.scss due to variable flow
|
|
6610
|
-
// box-shadow: $popup-shadow;
|
|
6611
|
-
}
|
|
6612
|
-
|
|
6613
|
-
.k-inset {
|
|
6614
|
-
box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .03), inset 0 4px 5px 0 rgba(0, 0, 0, .04);
|
|
6615
|
-
}
|
|
6616
6580
|
|
|
6617
6581
|
}
|
|
6618
6582
|
|
|
@@ -11217,8 +11181,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
11217
11181
|
@include disabled( $disabled-styling );
|
|
11218
11182
|
|
|
11219
11183
|
[disabled] &,
|
|
11220
|
-
.k-disabled
|
|
11221
|
-
.k-state-disabled & {
|
|
11184
|
+
.k-disabled & {
|
|
11222
11185
|
opacity: 1;
|
|
11223
11186
|
filter: grayscale(0);
|
|
11224
11187
|
}
|
|
@@ -11239,8 +11202,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
11239
11202
|
@include disabled( $disabled-styling );
|
|
11240
11203
|
|
|
11241
11204
|
[disabled] &,
|
|
11242
|
-
.k-disabled
|
|
11243
|
-
.k-state-disabled & {
|
|
11205
|
+
.k-disabled & {
|
|
11244
11206
|
opacity: 1;
|
|
11245
11207
|
filter: grayscale(0);
|
|
11246
11208
|
}
|
|
@@ -12170,7 +12132,6 @@ $floating-label-focus-text: null !default;
|
|
|
12170
12132
|
width: auto;
|
|
12171
12133
|
}
|
|
12172
12134
|
|
|
12173
|
-
&.k-state-empty,
|
|
12174
12135
|
&.k-empty {
|
|
12175
12136
|
> .k-label {
|
|
12176
12137
|
top: $floating-label-offset-y;
|
|
@@ -12181,8 +12142,6 @@ $floating-label-focus-text: null !default;
|
|
|
12181
12142
|
}
|
|
12182
12143
|
|
|
12183
12144
|
> .k-label,
|
|
12184
|
-
// &:focus-within > .k-label,
|
|
12185
|
-
&.k-state-focused > .k-label,
|
|
12186
12145
|
&.k-focus > .k-label {
|
|
12187
12146
|
top: $floating-label-focus-offset-y;
|
|
12188
12147
|
left: $floating-label-focus-offset-x;
|
|
@@ -12194,7 +12153,6 @@ $floating-label-focus-text: null !default;
|
|
|
12194
12153
|
transform: scale( $floating-label-focus-scale );
|
|
12195
12154
|
}
|
|
12196
12155
|
|
|
12197
|
-
&.k-state-empty:not(.k-state-focused) ::placeholder,
|
|
12198
12156
|
&.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
|
|
12199
12157
|
color: transparent;
|
|
12200
12158
|
}
|
|
@@ -12208,7 +12166,6 @@ $floating-label-focus-text: null !default;
|
|
|
12208
12166
|
transition: transform $floating-label-transition, color $floating-label-transition, top $floating-label-transition, right $floating-label-transition;
|
|
12209
12167
|
}
|
|
12210
12168
|
|
|
12211
|
-
&.k-state-empty,
|
|
12212
12169
|
&.k-empty {
|
|
12213
12170
|
> .k-label {
|
|
12214
12171
|
left: auto;
|
|
@@ -12217,8 +12174,6 @@ $floating-label-focus-text: null !default;
|
|
|
12217
12174
|
}
|
|
12218
12175
|
|
|
12219
12176
|
> .k-label,
|
|
12220
|
-
// &:focus-within > .k-label,
|
|
12221
|
-
&.k-state-focused > .k-label,
|
|
12222
12177
|
&.k-focus > .k-label {
|
|
12223
12178
|
left: auto;
|
|
12224
12179
|
right: $floating-label-focus-offset-x;
|
|
@@ -12249,8 +12204,7 @@ $floating-label-focus-text: null !default;
|
|
|
12249
12204
|
);
|
|
12250
12205
|
}
|
|
12251
12206
|
|
|
12252
|
-
&.k-focus > .k-label
|
|
12253
|
-
&.k-state-focused > .k-label {
|
|
12207
|
+
&.k-focus > .k-label {
|
|
12254
12208
|
@include fill(
|
|
12255
12209
|
$color: $floating-label-focus-text,
|
|
12256
12210
|
$bg: $floating-label-focus-bg
|
|
@@ -14601,8 +14555,11 @@ $loader-container-font-size-lg: $font-size-lg !default;
|
|
|
14601
14555
|
}
|
|
14602
14556
|
|
|
14603
14557
|
.k-loader-container-inner {
|
|
14604
|
-
|
|
14605
|
-
|
|
14558
|
+
// sass-lint:disable-block no-important
|
|
14559
|
+
// sass-lint:disable-block class-name-format
|
|
14560
|
+
.k-text-secondary,
|
|
14561
|
+
.\!k-text-secondary {
|
|
14562
|
+
color: $loader-secondary-bg !important;
|
|
14606
14563
|
}
|
|
14607
14564
|
}
|
|
14608
14565
|
|
|
@@ -15522,6 +15479,12 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
15522
15479
|
align-items: center;
|
|
15523
15480
|
}
|
|
15524
15481
|
|
|
15482
|
+
// Template item
|
|
15483
|
+
.k-toolbar-item:focus {
|
|
15484
|
+
text-decoration: none;
|
|
15485
|
+
outline: 0;
|
|
15486
|
+
}
|
|
15487
|
+
|
|
15525
15488
|
}
|
|
15526
15489
|
|
|
15527
15490
|
|
|
@@ -15686,6 +15649,13 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
15686
15649
|
}
|
|
15687
15650
|
|
|
15688
15651
|
|
|
15652
|
+
// Template item
|
|
15653
|
+
.k-toolbar-item:focus,
|
|
15654
|
+
.k-toolbar-item.k-focus {
|
|
15655
|
+
@include box-shadow( $kendo-button-focus-shadow );
|
|
15656
|
+
}
|
|
15657
|
+
|
|
15658
|
+
|
|
15689
15659
|
// Button group
|
|
15690
15660
|
.k-button-group {}
|
|
15691
15661
|
|
|
@@ -15946,7 +15916,7 @@ $form-spacer: $padding-x * 2 !default;
|
|
|
15946
15916
|
|
|
15947
15917
|
$form-font-size: $font-size !default;
|
|
15948
15918
|
$form-line-height: $input-btn-line-height !default;
|
|
15949
|
-
$form-line-height-em: ($form-line-height * 1em) !default;
|
|
15919
|
+
$form-line-height-em: calc( #{$form-line-height} * 1em ) !default;
|
|
15950
15920
|
$form-line-height-sm: $line-height-sm !default;
|
|
15951
15921
|
$form-line-height-lg: $line-height-lg !default;
|
|
15952
15922
|
|
|
@@ -17334,7 +17304,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
17334
17304
|
|
|
17335
17305
|
|
|
17336
17306
|
// Selection
|
|
17337
|
-
> .k-state-selected,
|
|
17338
17307
|
> .k-selected {
|
|
17339
17308
|
border-width: 0;
|
|
17340
17309
|
border-style: solid;
|
|
@@ -17405,7 +17374,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
17405
17374
|
flex-direction: row;
|
|
17406
17375
|
}
|
|
17407
17376
|
|
|
17408
|
-
> .k-state-selected,
|
|
17409
17377
|
> .k-selected {
|
|
17410
17378
|
width: 0;
|
|
17411
17379
|
width: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
|
|
@@ -17432,7 +17400,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
17432
17400
|
// Horizontal reverse
|
|
17433
17401
|
&.k-progressbar-reverse {
|
|
17434
17402
|
|
|
17435
|
-
> .k-state-selected,
|
|
17436
17403
|
> .k-selected {
|
|
17437
17404
|
flex-direction: row-reverse;
|
|
17438
17405
|
justify-self: flex-end;
|
|
@@ -17457,7 +17424,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
17457
17424
|
writing-mode: vertical-lr;
|
|
17458
17425
|
}
|
|
17459
17426
|
|
|
17460
|
-
> .k-state-selected,
|
|
17461
17427
|
> .k-selected {
|
|
17462
17428
|
height: 0;
|
|
17463
17429
|
height: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
|
|
@@ -17487,7 +17453,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
17487
17453
|
&.k-progressbar-reverse {
|
|
17488
17454
|
flex-direction: column;
|
|
17489
17455
|
|
|
17490
|
-
> .k-state-selected,
|
|
17491
17456
|
> .k-selected {
|
|
17492
17457
|
flex-direction: column;
|
|
17493
17458
|
align-self: flex-start;
|
|
@@ -17499,7 +17464,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
17499
17464
|
// Indeterminate
|
|
17500
17465
|
.k-progressbar-indeterminate {
|
|
17501
17466
|
.k-progress-status-wrap,
|
|
17502
|
-
.k-state-selected,
|
|
17503
17467
|
.k-selected,
|
|
17504
17468
|
.k-item {
|
|
17505
17469
|
display: none;
|
|
@@ -17510,9 +17474,7 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
17510
17474
|
// Blazor specific
|
|
17511
17475
|
.telerik-blazor.k-progressbar-horizontal {
|
|
17512
17476
|
|
|
17513
|
-
> .k-state-selected,
|
|
17514
17477
|
> .k-selected,
|
|
17515
|
-
> .k-state-selected > .k-progress-status-wrap,
|
|
17516
17478
|
> .k-selected > .k-progress-status-wrap {
|
|
17517
17479
|
transition: width .1s ease-in-out;
|
|
17518
17480
|
}
|
|
@@ -17541,7 +17503,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
17541
17503
|
display: -ms-inline-grid;
|
|
17542
17504
|
|
|
17543
17505
|
> .k-progress-status-wrap,
|
|
17544
|
-
> .k-state-selected,
|
|
17545
17506
|
> .k-selected {
|
|
17546
17507
|
-ms-grid-column: 1;
|
|
17547
17508
|
-ms-grid-row: 1;
|
|
@@ -17551,7 +17512,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
17551
17512
|
-ms-grid-columns: 1fr;
|
|
17552
17513
|
-ms-grid-rows: $progressbar-height;
|
|
17553
17514
|
|
|
17554
|
-
&.k-progressbar-reverse > .k-state-selected,
|
|
17555
17515
|
&.k-progressbar-reverse > .k-selected {
|
|
17556
17516
|
-ms-grid-column-align: end;
|
|
17557
17517
|
}
|
|
@@ -17560,12 +17520,10 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
17560
17520
|
-ms-grid-columns: $progressbar-height;
|
|
17561
17521
|
-ms-grid-rows: 1fr;
|
|
17562
17522
|
|
|
17563
|
-
> .k-state-selected,
|
|
17564
17523
|
> .k-selected {
|
|
17565
17524
|
-ms-grid-row-align: end;
|
|
17566
17525
|
}
|
|
17567
17526
|
|
|
17568
|
-
&.k-progressbar-reverse > .k-state-selected,
|
|
17569
17527
|
&.k-progressbar-reverse > .k-selected {
|
|
17570
17528
|
-ms-grid-row-align: start;
|
|
17571
17529
|
}
|
|
@@ -17631,7 +17589,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
17631
17589
|
.k-progressbar {
|
|
17632
17590
|
@include fill( $progressbar-text, $progressbar-bg, $progressbar-border, $progressbar-gradient );
|
|
17633
17591
|
|
|
17634
|
-
.k-state-selected,
|
|
17635
17592
|
.k-selected {
|
|
17636
17593
|
@include fill( $progressbar-fill-text, $progressbar-fill-bg, $progressbar-fill-border, $progressbar-fill-gradient );
|
|
17637
17594
|
}
|
|
@@ -18014,7 +17971,6 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
18014
17971
|
}
|
|
18015
17972
|
|
|
18016
17973
|
.k-radio:focus,
|
|
18017
|
-
.k-radio.k-state-focus,
|
|
18018
17974
|
.k-radio.k-focus {
|
|
18019
17975
|
box-shadow: none !important; // sass-lint:disable-line no-important
|
|
18020
17976
|
|
|
@@ -18078,7 +18034,6 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
18078
18034
|
|
|
18079
18035
|
// Hover state
|
|
18080
18036
|
.k-radio:hover,
|
|
18081
|
-
.k-radio.k-state-hover,
|
|
18082
18037
|
.k-radio.k-hover {
|
|
18083
18038
|
@include fill(
|
|
18084
18039
|
$kendo-radio-hover-text,
|
|
@@ -18090,7 +18045,6 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
18090
18045
|
|
|
18091
18046
|
// Focus state
|
|
18092
18047
|
.k-radio:focus,
|
|
18093
|
-
.k-radio.k-state-focus,
|
|
18094
18048
|
.k-radio.k-focus {
|
|
18095
18049
|
@include fill( $border: $kendo-radio-focus-border );
|
|
18096
18050
|
@include box-shadow( $kendo-radio-focus-shadow );
|
|
@@ -18099,13 +18053,11 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
18099
18053
|
|
|
18100
18054
|
// Invalid state
|
|
18101
18055
|
.k-radio.k-invalid,
|
|
18102
|
-
.k-radio.k-state-invalid,
|
|
18103
18056
|
.k-radio.ng-invalid.ng-touched,
|
|
18104
18057
|
.k-radio.ng-invalid.ng-dirty {
|
|
18105
18058
|
@include fill( $border: $kendo-radio-invalid-border );
|
|
18106
18059
|
}
|
|
18107
18060
|
.k-radio.k-invalid + .k-radio-label,
|
|
18108
|
-
.k-radio.k-state-invalid + .k-radio-label,
|
|
18109
18061
|
.k-radio.ng-invalid.ng-touched + .k-radio-label,
|
|
18110
18062
|
.k-radio.ng-invalid.ng-dirty + .k-radio-label {
|
|
18111
18063
|
@include fill( $color: $kendo-radio-invalid-text );
|
|
@@ -18122,7 +18074,6 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
18122
18074
|
);
|
|
18123
18075
|
}
|
|
18124
18076
|
.k-radio:checked:focus,
|
|
18125
|
-
.k-radio.k-checked.k-state-focus,
|
|
18126
18077
|
.k-radio.k-checked.k-focus {
|
|
18127
18078
|
@include fill( $border: $kendo-radio-focus-checked-border );
|
|
18128
18079
|
@include box-shadow( $kendo-radio-focus-checked-shadow );
|
|
@@ -18299,7 +18250,6 @@ $slider-disabled-opacity: null !default;
|
|
|
18299
18250
|
}
|
|
18300
18251
|
|
|
18301
18252
|
|
|
18302
|
-
&.k-state-disabled,
|
|
18303
18253
|
&.k-disabled {
|
|
18304
18254
|
.k-tick,
|
|
18305
18255
|
.k-slider-track,
|
|
@@ -18593,8 +18543,8 @@ $slider-disabled-opacity: null !default;
|
|
|
18593
18543
|
left: auto;
|
|
18594
18544
|
}
|
|
18595
18545
|
|
|
18596
|
-
.k-button .k-
|
|
18597
|
-
.k-button .k-
|
|
18546
|
+
.k-button-increase .k-icon,
|
|
18547
|
+
.k-button-decrease .k-icon {
|
|
18598
18548
|
transform: scaleX(-1);
|
|
18599
18549
|
}
|
|
18600
18550
|
}
|
|
@@ -18756,20 +18706,17 @@ $slider-disabled-opacity: null !default;
|
|
|
18756
18706
|
}
|
|
18757
18707
|
|
|
18758
18708
|
&:focus,
|
|
18759
|
-
&.k-state-focused,
|
|
18760
18709
|
&.k-focus {
|
|
18761
18710
|
@include box-shadow( $slider-draghandle-focused-shadow );
|
|
18762
18711
|
}
|
|
18763
18712
|
}
|
|
18764
18713
|
|
|
18765
|
-
&.k-state-focused,
|
|
18766
18714
|
&.k-focus {
|
|
18767
18715
|
.k-draghandle {
|
|
18768
18716
|
@include box-shadow( $slider-draghandle-focused-shadow );
|
|
18769
18717
|
}
|
|
18770
18718
|
}
|
|
18771
18719
|
|
|
18772
|
-
&.k-state-disabled,
|
|
18773
18720
|
&.k-disabled {
|
|
18774
18721
|
opacity: $slider-disabled-opacity;
|
|
18775
18722
|
}
|
|
@@ -19421,7 +19368,6 @@ $kendo-calendar-sizes: (
|
|
|
19421
19368
|
}
|
|
19422
19369
|
|
|
19423
19370
|
// // styles are applied to the k-link element inside
|
|
19424
|
-
// .k-state-selected,
|
|
19425
19371
|
// .k-selected {
|
|
19426
19372
|
// color: inherit;
|
|
19427
19373
|
// background: transparent;
|
|
@@ -19549,10 +19495,8 @@ $kendo-calendar-sizes: (
|
|
|
19549
19495
|
|
|
19550
19496
|
&:hover,
|
|
19551
19497
|
&.k-hover,
|
|
19552
|
-
&.k-state-hover,
|
|
19553
19498
|
&:focus,
|
|
19554
|
-
&.k-focus
|
|
19555
|
-
&.k-state-focus {
|
|
19499
|
+
&.k-focus {
|
|
19556
19500
|
color: $calendar-today-nav-hover-text;
|
|
19557
19501
|
}
|
|
19558
19502
|
}
|
|
@@ -19573,8 +19517,7 @@ $kendo-calendar-sizes: (
|
|
|
19573
19517
|
.k-calendar-cell-inner {
|
|
19574
19518
|
box-shadow: inset 0 0 0 1px $calendar-today-color;
|
|
19575
19519
|
}
|
|
19576
|
-
&.k-focus .k-calendar-cell-inner
|
|
19577
|
-
&.k-state-focused .k-calendar-cell-inner {
|
|
19520
|
+
&.k-focus .k-calendar-cell-inner {
|
|
19578
19521
|
box-shadow: inset 0 0 0 1px $calendar-today-color, $calendar-cell-focused-shadow;
|
|
19579
19522
|
}
|
|
19580
19523
|
} @else if $calendar-today-style == color {
|
|
@@ -19608,8 +19551,7 @@ $kendo-calendar-sizes: (
|
|
|
19608
19551
|
|
|
19609
19552
|
// Interactive states
|
|
19610
19553
|
.k-calendar-td:hover .k-calendar-cell-inner,
|
|
19611
|
-
.k-calendar-td.k-hover .k-calendar-cell-inner
|
|
19612
|
-
.k-calendar-td.k-state-hover .k-calendar-cell-inner {
|
|
19554
|
+
.k-calendar-td.k-hover .k-calendar-cell-inner {
|
|
19613
19555
|
@include fill(
|
|
19614
19556
|
$calendar-cell-hover-text,
|
|
19615
19557
|
$calendar-cell-hover-bg,
|
|
@@ -19617,8 +19559,7 @@ $kendo-calendar-sizes: (
|
|
|
19617
19559
|
$calendar-cell-hover-gradient
|
|
19618
19560
|
);
|
|
19619
19561
|
}
|
|
19620
|
-
.k-calendar-td.k-selected .k-calendar-cell-inner
|
|
19621
|
-
.k-calendar-td.k-state-selected .k-calendar-cell-inner {
|
|
19562
|
+
.k-calendar-td.k-selected .k-calendar-cell-inner {
|
|
19622
19563
|
@include fill(
|
|
19623
19564
|
$calendar-cell-selected-text,
|
|
19624
19565
|
$calendar-cell-selected-bg,
|
|
@@ -19627,8 +19568,7 @@ $kendo-calendar-sizes: (
|
|
|
19627
19568
|
);
|
|
19628
19569
|
}
|
|
19629
19570
|
.k-calendar-td.k-selected:hover .k-calendar-cell-inner,
|
|
19630
|
-
.k-calendar-td.k-selected.k-hover .k-calendar-cell-inner
|
|
19631
|
-
.k-calendar-td.k-state-selected:hover .k-calendar-cell-inner {
|
|
19571
|
+
.k-calendar-td.k-selected.k-hover .k-calendar-cell-inner {
|
|
19632
19572
|
@include fill(
|
|
19633
19573
|
$calendar-cell-selected-hover-text,
|
|
19634
19574
|
$calendar-cell-selected-hover-bg,
|
|
@@ -19637,14 +19577,11 @@ $kendo-calendar-sizes: (
|
|
|
19637
19577
|
);
|
|
19638
19578
|
}
|
|
19639
19579
|
.k-calendar-td:focus .k-calendar-cell-inner,
|
|
19640
|
-
.k-calendar-td.k-focus .k-calendar-cell-inner
|
|
19641
|
-
.k-calendar-td.k-state-focus .k-calendar-cell-inner,
|
|
19642
|
-
.k-calendar-td.k-state-focused .k-calendar-cell-inner {
|
|
19580
|
+
.k-calendar-td.k-focus .k-calendar-cell-inner {
|
|
19643
19581
|
box-shadow: $calendar-cell-focused-shadow;
|
|
19644
19582
|
}
|
|
19645
19583
|
.k-calendar-td.k-selected:focus .k-calendar-cell-inner,
|
|
19646
|
-
.k-calendar-td.k-selected.k-focus .k-calendar-cell-inner
|
|
19647
|
-
.k-calendar-td.k-state-selected.k-state-focus .k-calendar-cell-inner {
|
|
19584
|
+
.k-calendar-td.k-selected.k-focus .k-calendar-cell-inner {
|
|
19648
19585
|
box-shadow: $calendar-cell-selected-focus-shadow;
|
|
19649
19586
|
}
|
|
19650
19587
|
|
|
@@ -19658,8 +19595,7 @@ $kendo-calendar-sizes: (
|
|
|
19658
19595
|
box-shadow: inset -1px 0 $calendar-navigation-border;
|
|
19659
19596
|
|
|
19660
19597
|
li:hover,
|
|
19661
|
-
li.k-hover
|
|
19662
|
-
li.k-state-hover {
|
|
19598
|
+
li.k-hover {
|
|
19663
19599
|
color: $calendar-today-nav-hover-text;
|
|
19664
19600
|
}
|
|
19665
19601
|
}
|
|
@@ -19682,7 +19618,6 @@ $kendo-calendar-sizes: (
|
|
|
19682
19618
|
// Invalid
|
|
19683
19619
|
&.k-invalid,
|
|
19684
19620
|
&.k-invalid:hover,
|
|
19685
|
-
&.k-state-invalid,
|
|
19686
19621
|
&.ng-invalid.ng-touched,
|
|
19687
19622
|
&.ng-invalid.ng-dirty {
|
|
19688
19623
|
border-color: $invalid-border;
|
|
@@ -19730,9 +19665,7 @@ $kendo-calendar-sizes: (
|
|
|
19730
19665
|
}
|
|
19731
19666
|
|
|
19732
19667
|
.k-range-start.k-active,
|
|
19733
|
-
.k-range-
|
|
19734
|
-
.k-range-end.k-active,
|
|
19735
|
-
.k-range-end.k-state-active {
|
|
19668
|
+
.k-range-end.k-active {
|
|
19736
19669
|
.k-calendar-cell-inner {
|
|
19737
19670
|
box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, .2);
|
|
19738
19671
|
}
|
|
@@ -19968,7 +19901,6 @@ $kendo-time-selector-sizes: (
|
|
|
19968
19901
|
display: block;
|
|
19969
19902
|
}
|
|
19970
19903
|
|
|
19971
|
-
&.k-state-focused,
|
|
19972
19904
|
&.k-focus {
|
|
19973
19905
|
&::before,
|
|
19974
19906
|
&::after {
|
|
@@ -20143,7 +20075,6 @@ $kendo-time-selector-sizes: (
|
|
|
20143
20075
|
color: $time-list-title-text;
|
|
20144
20076
|
}
|
|
20145
20077
|
|
|
20146
|
-
&.k-state-focused,
|
|
20147
20078
|
&.k-focus {
|
|
20148
20079
|
.k-title {
|
|
20149
20080
|
color: $time-list-title-focus-text;
|
|
@@ -20460,18 +20391,14 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
20460
20391
|
-ms-high-contrast-adjust: none;
|
|
20461
20392
|
|
|
20462
20393
|
&:hover,
|
|
20463
|
-
&.k-state-hover,
|
|
20464
20394
|
&.k-hover {
|
|
20465
20395
|
position: relative;
|
|
20466
20396
|
z-index: 101;
|
|
20467
20397
|
}
|
|
20468
20398
|
|
|
20469
20399
|
&:focus,
|
|
20470
|
-
&.k-state-focus,
|
|
20471
20400
|
&.k-focus,
|
|
20472
|
-
&.k-state-selected,
|
|
20473
20401
|
&.k-selected,
|
|
20474
|
-
&.k-state-selected:hover,
|
|
20475
20402
|
&.k-selected:hover {
|
|
20476
20403
|
position: relative;
|
|
20477
20404
|
z-index: 100;
|
|
@@ -20491,20 +20418,15 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
20491
20418
|
.k-colorpalette-tile {
|
|
20492
20419
|
|
|
20493
20420
|
&:focus,
|
|
20494
|
-
&.k-state-focus,
|
|
20495
20421
|
&.k-focus {
|
|
20496
20422
|
@include box-shadow( $colorpalette-tile-focus-shadow );
|
|
20497
20423
|
}
|
|
20498
20424
|
|
|
20499
20425
|
&:hover,
|
|
20500
|
-
&.k-state-hover,
|
|
20501
20426
|
&.k-hover {
|
|
20502
20427
|
@include box-shadow( $colorpalette-tile-hover-shadow );
|
|
20503
20428
|
}
|
|
20504
20429
|
|
|
20505
|
-
&.k-state-selected,
|
|
20506
|
-
&.k-selected,
|
|
20507
|
-
&.k-state-selected:hover,
|
|
20508
20430
|
&.k-selected,
|
|
20509
20431
|
&.k-selected:hover {
|
|
20510
20432
|
@include box-shadow( $colorpalette-tile-selected-shadow );
|
|
@@ -20837,7 +20759,7 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 2 ) !default;
|
|
|
20837
20759
|
}
|
|
20838
20760
|
|
|
20839
20761
|
// Needed for the double check icons
|
|
20840
|
-
.k-
|
|
20762
|
+
.k-icon + .k-icon {
|
|
20841
20763
|
margin-left: -13px;
|
|
20842
20764
|
}
|
|
20843
20765
|
}
|
|
@@ -20883,7 +20805,6 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 2 ) !default;
|
|
|
20883
20805
|
}
|
|
20884
20806
|
|
|
20885
20807
|
.k-colorgradient:focus,
|
|
20886
|
-
.k-colorgradient.k-state-focus,
|
|
20887
20808
|
.k-colorgradient.k-focus {
|
|
20888
20809
|
@include fill( $border: $colorgradient-focus-border );
|
|
20889
20810
|
@include box-shadow( $colorgradient-focus-shadow );
|
|
@@ -20904,16 +20825,15 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 2 ) !default;
|
|
|
20904
20825
|
@include box-shadow( $colorgradient-draghandle-shadow );
|
|
20905
20826
|
|
|
20906
20827
|
&:focus,
|
|
20907
|
-
&.k-state-focus,
|
|
20908
20828
|
&.k-focus {
|
|
20909
20829
|
@include fill( $bg: transparent, $border: $white );
|
|
20910
20830
|
@include box-shadow( $colorgradient-draghandle-focus-shadow );
|
|
20911
20831
|
}
|
|
20912
20832
|
|
|
20913
|
-
&:active,
|
|
20914
20833
|
&:hover,
|
|
20915
|
-
&.k-
|
|
20916
|
-
&.k-
|
|
20834
|
+
&.k-hover,
|
|
20835
|
+
&.k-active,
|
|
20836
|
+
&:active {
|
|
20917
20837
|
@include fill( $bg: transparent, $border: $white );
|
|
20918
20838
|
@include box-shadow( $colorgradient-draghandle-hover-shadow );
|
|
20919
20839
|
}
|
|
@@ -21109,7 +21029,6 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
|
|
|
21109
21029
|
}
|
|
21110
21030
|
|
|
21111
21031
|
.k-coloreditor:focus,
|
|
21112
|
-
.k-coloreditor.k-state-focus,
|
|
21113
21032
|
.k-coloreditor.k-focus {
|
|
21114
21033
|
@include fill( $border: $coloreditor-focus-border );
|
|
21115
21034
|
@include box-shadow( $coloreditor-focus-shadow );
|
|
@@ -22419,7 +22338,7 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
22419
22338
|
box-sizing: border-box;
|
|
22420
22339
|
}
|
|
22421
22340
|
|
|
22422
|
-
&.k-
|
|
22341
|
+
&.k-readonly {
|
|
22423
22342
|
pointer-events: none;
|
|
22424
22343
|
}
|
|
22425
22344
|
}
|
|
@@ -22499,7 +22418,6 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
22499
22418
|
color: $component-text;
|
|
22500
22419
|
|
|
22501
22420
|
&:focus,
|
|
22502
|
-
&.k-state-focused,
|
|
22503
22421
|
&.k-focus {
|
|
22504
22422
|
|
|
22505
22423
|
.k-rating-item {
|
|
@@ -22507,7 +22425,6 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
22507
22425
|
text-shadow: $rating-icon-focused-shadow;
|
|
22508
22426
|
}
|
|
22509
22427
|
|
|
22510
|
-
&.k-state-selected > .k-icon,
|
|
22511
22428
|
&.k-selected > .k-icon {
|
|
22512
22429
|
text-shadow: $rating-icon-focused-selected-shadow;
|
|
22513
22430
|
}
|
|
@@ -22518,19 +22435,16 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
22518
22435
|
.k-rating-item {
|
|
22519
22436
|
color: $rating-icon-text;
|
|
22520
22437
|
|
|
22521
|
-
&.k-state-selected,
|
|
22522
22438
|
&.k-selected {
|
|
22523
22439
|
color: $rating-icon-selected-text;
|
|
22524
22440
|
|
|
22525
22441
|
&:focus,
|
|
22526
|
-
&.k-state-focused,
|
|
22527
22442
|
&.k-focus {
|
|
22528
22443
|
color: $rating-icon-focused-text;
|
|
22529
22444
|
}
|
|
22530
22445
|
}
|
|
22531
22446
|
|
|
22532
22447
|
&:hover,
|
|
22533
|
-
&.k-state-hover,
|
|
22534
22448
|
&.k-hover {
|
|
22535
22449
|
color: $rating-icon-hover-text;
|
|
22536
22450
|
cursor: pointer;
|
|
@@ -22538,7 +22452,6 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
22538
22452
|
}
|
|
22539
22453
|
}
|
|
22540
22454
|
|
|
22541
|
-
|
|
22542
22455
|
// #endregion
|
|
22543
22456
|
|
|
22544
22457
|
// #endregion
|
|
@@ -22963,8 +22876,7 @@ $kendo-switch-on-thumb-hover-gradient: null !default;
|
|
|
22963
22876
|
@include exports( "switch/layout/bootstrap" ) {
|
|
22964
22877
|
|
|
22965
22878
|
// Switch
|
|
22966
|
-
.k-switch.k-disabled
|
|
22967
|
-
.k-switch.k-state-disabled {
|
|
22879
|
+
.k-switch.k-disabled {
|
|
22968
22880
|
opacity: 1;
|
|
22969
22881
|
filter: none;
|
|
22970
22882
|
}
|
|
@@ -23773,7 +23685,6 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
23773
23685
|
z-index: 1;
|
|
23774
23686
|
}
|
|
23775
23687
|
input[disabled],
|
|
23776
|
-
input.k-state-disabled,
|
|
23777
23688
|
input.k-disabled {
|
|
23778
23689
|
visibility: hidden;
|
|
23779
23690
|
}
|
|
@@ -23821,12 +23732,10 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
23821
23732
|
|
|
23822
23733
|
.k-file {
|
|
23823
23734
|
|
|
23824
|
-
&.k-state-focused,
|
|
23825
23735
|
&.k-focus {
|
|
23826
23736
|
box-shadow: inset $upload-focused-shadow;
|
|
23827
23737
|
}
|
|
23828
23738
|
|
|
23829
|
-
.k-upload-action.k-state-focused,
|
|
23830
23739
|
.k-upload-action.k-focus {
|
|
23831
23740
|
box-shadow: $upload-focused-shadow;
|
|
23832
23741
|
}
|
|
@@ -23918,7 +23827,6 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
23918
23827
|
}
|
|
23919
23828
|
|
|
23920
23829
|
// Invalid,
|
|
23921
|
-
&.k-state-invalid,
|
|
23922
23830
|
&.k-invalid,
|
|
23923
23831
|
&.ng-invalid.ng-touched,
|
|
23924
23832
|
&.ng-invalid.ng-dirty {
|
|
@@ -24474,8 +24382,8 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
24474
24382
|
|
|
24475
24383
|
// Hover state
|
|
24476
24384
|
@each $name, $color in $kendo-fab-theme-colors {
|
|
24477
|
-
.k-
|
|
24478
|
-
.k-fab-solid-#{$name}
|
|
24385
|
+
.k-fab-solid-#{$name}:hover,
|
|
24386
|
+
.k-fab-solid-#{$name}.k-hover {
|
|
24479
24387
|
border-color: try-darken( $color, 10% );
|
|
24480
24388
|
color: contrast-wcag( try-darken( $color, 7.5% ) );
|
|
24481
24389
|
background-color: try-darken( $color, 7.5% );
|
|
@@ -24484,8 +24392,8 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
24484
24392
|
|
|
24485
24393
|
// Focus state
|
|
24486
24394
|
@each $name, $color in $kendo-fab-theme-colors {
|
|
24487
|
-
.k-fab-solid-#{$name}
|
|
24488
|
-
.k-fab-solid-#{$name}
|
|
24395
|
+
.k-fab-solid-#{$name}:focus,
|
|
24396
|
+
.k-fab-solid-#{$name}.k-focus {
|
|
24489
24397
|
outline-style: solid;
|
|
24490
24398
|
outline-width: 3px;
|
|
24491
24399
|
outline-color: rgba( $color, .5 );
|
|
@@ -24494,9 +24402,9 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
24494
24402
|
|
|
24495
24403
|
// Active state
|
|
24496
24404
|
@each $name, $color in $kendo-fab-theme-colors {
|
|
24497
|
-
.k-
|
|
24498
|
-
.k-
|
|
24499
|
-
.k-fab-solid-#{$name}
|
|
24405
|
+
.k-fab-solid-#{$name}:active,
|
|
24406
|
+
.k-fab-solid-#{$name}.k-active,
|
|
24407
|
+
.k-fab-solid-#{$name}.k-selected {
|
|
24500
24408
|
@include box-shadow($kendo-fab-active-shadow);
|
|
24501
24409
|
border-color: try-darken( $color, 12.5% );
|
|
24502
24410
|
color: contrast-wcag( try-darken( $color, 10% ) );
|
|
@@ -24506,8 +24414,8 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
24506
24414
|
|
|
24507
24415
|
// Disabled state
|
|
24508
24416
|
@each $name, $color in $kendo-fab-theme-colors {
|
|
24509
|
-
.k-
|
|
24510
|
-
.k-fab-solid-#{$name}
|
|
24417
|
+
.k-fab-solid-#{$name}:disabled,
|
|
24418
|
+
.k-fab-solid-#{$name}.k-disabled {
|
|
24511
24419
|
@include box-shadow($kendo-fab-disabled-shadow);
|
|
24512
24420
|
background-color: try-tint( $color, 4.5 );
|
|
24513
24421
|
color: try-tint( contrast-wcag( $color ), 5 );
|
|
@@ -24536,8 +24444,8 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
24536
24444
|
}
|
|
24537
24445
|
|
|
24538
24446
|
// Hover state
|
|
24539
|
-
.k-fab-item
|
|
24540
|
-
.k-fab-item
|
|
24447
|
+
.k-fab-item:hover .k-fab-item-icon,
|
|
24448
|
+
.k-fab-item.k-hover .k-fab-item-icon {
|
|
24541
24449
|
@include box-shadow($kendo-fab-item-shadow);
|
|
24542
24450
|
outline: $kendo-fab-border-width solid try-darken( $kendo-fab-item-icon-border, 10% );
|
|
24543
24451
|
outline-offset: -$kendo-fab-border-width;
|
|
@@ -24548,8 +24456,8 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
24548
24456
|
|
|
24549
24457
|
// Focus state
|
|
24550
24458
|
.k-fab-item:focus .k-fab-item-text,
|
|
24551
|
-
.k-fab-item:focus .k-fab-item-icon,
|
|
24552
24459
|
.k-fab-item.k-focus .k-fab-item-text,
|
|
24460
|
+
.k-fab-item:focus .k-fab-item-icon,
|
|
24553
24461
|
.k-fab-item.k-focus .k-fab-item-icon {
|
|
24554
24462
|
outline-style: solid;
|
|
24555
24463
|
outline-width: 3px;
|
|
@@ -24557,8 +24465,8 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
24557
24465
|
}
|
|
24558
24466
|
|
|
24559
24467
|
// Active state
|
|
24560
|
-
.k-fab-item
|
|
24561
|
-
.k-fab-item
|
|
24468
|
+
.k-fab-item:active .k-fab-item-icon,
|
|
24469
|
+
.k-fab-item.k-active .k-fab-item-icon {
|
|
24562
24470
|
@include box-shadow($kendo-fab-item-active-shadow);
|
|
24563
24471
|
outline: $kendo-fab-border-width solid try-darken( $kendo-fab-item-icon-border, 12.5% );
|
|
24564
24472
|
outline-offset: -$kendo-fab-border-width;
|
|
@@ -24568,8 +24476,8 @@ $kendo-fab-item-active-shadow: $kendo-fab-active-shadow !default;
|
|
|
24568
24476
|
}
|
|
24569
24477
|
|
|
24570
24478
|
// Disabled state
|
|
24571
|
-
.k-fab-item
|
|
24572
|
-
.k-fab-item
|
|
24479
|
+
.k-fab-item:disabled,
|
|
24480
|
+
.k-fab-item.k-disabled {
|
|
24573
24481
|
opacity: 1;
|
|
24574
24482
|
|
|
24575
24483
|
.k-fab-item-text,
|
|
@@ -24952,7 +24860,6 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
24952
24860
|
|
|
24953
24861
|
// Hover state
|
|
24954
24862
|
&:hover,
|
|
24955
|
-
&.k-state-hover,
|
|
24956
24863
|
&.k-hover {
|
|
24957
24864
|
@include fill(
|
|
24958
24865
|
$actionsheet-item-hover-text,
|
|
@@ -24966,7 +24873,6 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
24966
24873
|
|
|
24967
24874
|
// Focus state
|
|
24968
24875
|
&:focus,
|
|
24969
|
-
&.k-state-focus,
|
|
24970
24876
|
&.k-focus {
|
|
24971
24877
|
@include fill(
|
|
24972
24878
|
$actionsheet-item-focus-text,
|
|
@@ -24980,7 +24886,6 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
24980
24886
|
|
|
24981
24887
|
// Disabed state
|
|
24982
24888
|
&:disabled,
|
|
24983
|
-
&.k-state-disabled,
|
|
24984
24889
|
&.k-disabled {
|
|
24985
24890
|
@include fill(
|
|
24986
24891
|
$actionsheet-item-disabled-text,
|
|
@@ -25225,7 +25130,6 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
25225
25130
|
|
|
25226
25131
|
.k-window {
|
|
25227
25132
|
&:focus,
|
|
25228
|
-
&.k-state-focused,
|
|
25229
25133
|
&.k-focus {
|
|
25230
25134
|
@include box-shadow( $window-focused-shadow );
|
|
25231
25135
|
}
|
|
@@ -25743,33 +25647,28 @@ $drawer-selected-hover-text: $selected-text !default;
|
|
|
25743
25647
|
.k-drawer-item {
|
|
25744
25648
|
|
|
25745
25649
|
&:hover,
|
|
25746
|
-
&.k-state-hover,
|
|
25747
25650
|
&.k-hover {
|
|
25748
25651
|
color: $drawer-hovered-text;
|
|
25749
25652
|
background-color: $drawer-hovered-bg;
|
|
25750
25653
|
}
|
|
25751
25654
|
|
|
25752
25655
|
&:focus,
|
|
25753
|
-
&.k-state-focused,
|
|
25754
25656
|
&.k-focus {
|
|
25755
25657
|
background-color: $drawer-focused-bg;
|
|
25756
25658
|
box-shadow: $drawer-focused-shadow;
|
|
25757
25659
|
|
|
25758
25660
|
&:hover,
|
|
25759
|
-
&.k-state-hover,
|
|
25760
25661
|
&.k-hover {
|
|
25761
25662
|
color: $drawer-hovered-text;
|
|
25762
25663
|
background-color: $drawer-hovered-bg;
|
|
25763
25664
|
}
|
|
25764
25665
|
}
|
|
25765
25666
|
|
|
25766
|
-
&.k-state-selected,
|
|
25767
25667
|
&.k-selected {
|
|
25768
25668
|
color: $drawer-selected-text;
|
|
25769
25669
|
background-color: $drawer-selected-bg;
|
|
25770
25670
|
|
|
25771
25671
|
&:hover,
|
|
25772
|
-
&.k-state-hover,
|
|
25773
25672
|
&.k-hover {
|
|
25774
25673
|
color: $drawer-selected-hover-text;
|
|
25775
25674
|
background-color: $drawer-selected-hover-bg;
|
|
@@ -25900,7 +25799,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
25900
25799
|
flex: none;
|
|
25901
25800
|
}
|
|
25902
25801
|
|
|
25903
|
-
> .k-i-close
|
|
25802
|
+
> .k-i-close,
|
|
25803
|
+
> .k-i-x {
|
|
25904
25804
|
margin-right: 0;
|
|
25905
25805
|
margin-left: $notification-icon-spacing;
|
|
25906
25806
|
flex: none;
|
|
@@ -25923,7 +25823,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
25923
25823
|
margin-left: $notification-icon-spacing;
|
|
25924
25824
|
}
|
|
25925
25825
|
|
|
25926
|
-
> .k-i-close
|
|
25826
|
+
> .k-i-close,
|
|
25827
|
+
> .k-i-x {
|
|
25927
25828
|
margin-left: 0;
|
|
25928
25829
|
margin-right: $notification-icon-spacing;
|
|
25929
25830
|
}
|
|
@@ -25948,7 +25849,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
25948
25849
|
);
|
|
25949
25850
|
}
|
|
25950
25851
|
.k-notification-wrap {
|
|
25951
|
-
> .k-i-close
|
|
25852
|
+
> .k-i-close,
|
|
25853
|
+
> .k-i-x {
|
|
25952
25854
|
color: inherit;
|
|
25953
25855
|
}
|
|
25954
25856
|
}
|
|
@@ -26509,8 +26411,7 @@ $card-callout-height: 1.3em !default;
|
|
|
26509
26411
|
}
|
|
26510
26412
|
|
|
26511
26413
|
&:focus,
|
|
26512
|
-
&.k-focus
|
|
26513
|
-
&.k-state-focus {
|
|
26414
|
+
&.k-focus {
|
|
26514
26415
|
@include fill(
|
|
26515
26416
|
$card-focus-text,
|
|
26516
26417
|
$card-focus-bg,
|
|
@@ -26519,8 +26420,7 @@ $card-callout-height: 1.3em !default;
|
|
|
26519
26420
|
@include box-shadow( $card-focus-shadow );
|
|
26520
26421
|
}
|
|
26521
26422
|
|
|
26522
|
-
&.k-selected
|
|
26523
|
-
&.k-state-selected {
|
|
26423
|
+
&.k-selected {
|
|
26524
26424
|
@include box-shadow( $card-focus-shadow );
|
|
26525
26425
|
}
|
|
26526
26426
|
}
|
|
@@ -26572,10 +26472,8 @@ $card-callout-height: 1.3em !default;
|
|
|
26572
26472
|
|
|
26573
26473
|
|
|
26574
26474
|
.k-card-wrap {
|
|
26575
|
-
&.k-state-focused,
|
|
26576
|
-
&.k-focus,
|
|
26577
26475
|
&:focus,
|
|
26578
|
-
&.k-
|
|
26476
|
+
&.k-focus,
|
|
26579
26477
|
&.k-selected {
|
|
26580
26478
|
> .k-card {
|
|
26581
26479
|
@include box-shadow( $card-focus-shadow );
|
|
@@ -27008,7 +26906,6 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
27008
26906
|
outline: 0;
|
|
27009
26907
|
}
|
|
27010
26908
|
}
|
|
27011
|
-
.k-bottom-nav-item.k-state-disabled,
|
|
27012
26909
|
.k-bottom-nav-item.k-disabled {
|
|
27013
26910
|
background-color: initial;
|
|
27014
26911
|
}
|
|
@@ -27055,15 +26952,11 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
27055
26952
|
$bg: $color
|
|
27056
26953
|
);
|
|
27057
26954
|
|
|
27058
|
-
.k-bottom-nav-item.k-state-focus,
|
|
27059
|
-
.k-bottom-nav-item.k-focus,
|
|
27060
|
-
.k-bottom-nav-item.k-state-focused,
|
|
27061
26955
|
.k-bottom-nav-item.k-focus,
|
|
27062
26956
|
.k-bottom-nav-item:focus {
|
|
27063
26957
|
@include fill( $bg: rgba(true-mix( $color, contrast-wcag( $color ), 35%), .2));
|
|
27064
26958
|
}
|
|
27065
26959
|
|
|
27066
|
-
.k-bottom-nav-item.k-state-selected,
|
|
27067
26960
|
.k-bottom-nav-item.k-selected {
|
|
27068
26961
|
@include fill( $color: contrast-wcag( $color ) );
|
|
27069
26962
|
}
|
|
@@ -27078,16 +26971,12 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
27078
26971
|
$bottom-nav-flat-border
|
|
27079
26972
|
);
|
|
27080
26973
|
|
|
27081
|
-
.k-bottom-nav-item.k-state-focus,
|
|
27082
|
-
.k-bottom-nav-item.k-focus,
|
|
27083
|
-
.k-bottom-nav-item.k-state-focused,
|
|
27084
26974
|
.k-bottom-nav-item.k-focus,
|
|
27085
26975
|
.k-bottom-nav-item:focus {
|
|
27086
26976
|
@include fill( $bg: rgba($bottom-nav-flat-text, .05) );
|
|
27087
26977
|
}
|
|
27088
26978
|
|
|
27089
26979
|
@each $name, $color in $kendo-theme-colors {
|
|
27090
|
-
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected,
|
|
27091
26980
|
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-selected {
|
|
27092
26981
|
@if $name == "secondary" or $name == "light" {
|
|
27093
26982
|
@include fill( $color: try-shade($color, 3) );
|
|
@@ -27343,7 +27232,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
27343
27232
|
text-decoration: $link-decoration;
|
|
27344
27233
|
|
|
27345
27234
|
&:hover,
|
|
27346
|
-
&.k-state-hover,
|
|
27347
27235
|
&.k-hover {
|
|
27348
27236
|
text-decoration: $link-hover-decoration;
|
|
27349
27237
|
}
|
|
@@ -27364,7 +27252,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
27364
27252
|
);
|
|
27365
27253
|
|
|
27366
27254
|
&:focus,
|
|
27367
|
-
&.k-state-focused,
|
|
27368
27255
|
&.k-focus {
|
|
27369
27256
|
@include box-shadow( $breadcrumb-focused-shadow );
|
|
27370
27257
|
}
|
|
@@ -27381,7 +27268,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
27381
27268
|
|
|
27382
27269
|
// Hovered state
|
|
27383
27270
|
&:hover,
|
|
27384
|
-
&.k-state-hover,
|
|
27385
27271
|
&.k-hover {
|
|
27386
27272
|
@include fill(
|
|
27387
27273
|
$breadcrumb-link-hovered-text,
|
|
@@ -27392,7 +27278,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
27392
27278
|
|
|
27393
27279
|
// Focused state
|
|
27394
27280
|
&:focus,
|
|
27395
|
-
&.k-state-focused,
|
|
27396
27281
|
&.k-focus {
|
|
27397
27282
|
@include fill(
|
|
27398
27283
|
$breadcrumb-link-focused-text,
|
|
@@ -27414,7 +27299,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
27414
27299
|
|
|
27415
27300
|
// Hovered state
|
|
27416
27301
|
&:hover,
|
|
27417
|
-
&.k-state-hover,
|
|
27418
27302
|
&.k-hover {
|
|
27419
27303
|
@include fill(
|
|
27420
27304
|
$breadcrumb-root-link-hovered-text,
|
|
@@ -27425,7 +27309,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
27425
27309
|
|
|
27426
27310
|
// Focused state
|
|
27427
27311
|
&:focus,
|
|
27428
|
-
&.k-state-focused,
|
|
27429
27312
|
&.k-focus {
|
|
27430
27313
|
@include fill(
|
|
27431
27314
|
$breadcrumb-root-link-focused-text,
|
|
@@ -27449,7 +27332,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
27449
27332
|
color: $breadcrumb-active-color;
|
|
27450
27333
|
}
|
|
27451
27334
|
|
|
27452
|
-
.k-state-disabled,
|
|
27453
27335
|
.k-disabled {
|
|
27454
27336
|
opacity: 1;
|
|
27455
27337
|
filter: none;
|
|
@@ -27593,7 +27475,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
27593
27475
|
|
|
27594
27476
|
// Focused state
|
|
27595
27477
|
&:focus,
|
|
27596
|
-
&.k-state-focus,
|
|
27597
27478
|
&.k-focus {
|
|
27598
27479
|
z-index: 3;
|
|
27599
27480
|
}
|
|
@@ -27602,6 +27483,10 @@ $pager-dropdown-width: 5em !default;
|
|
|
27602
27483
|
.k-rtl &,
|
|
27603
27484
|
&[dir="rtl"],
|
|
27604
27485
|
[dir="rtl"] & {
|
|
27486
|
+
.k-i-caret-alt-to-left,
|
|
27487
|
+
.k-i-caret-alt-to-right,
|
|
27488
|
+
.k-i-caret-alt-left,
|
|
27489
|
+
.k-i-caret-alt-right,
|
|
27605
27490
|
.k-i-arrow-end-left,
|
|
27606
27491
|
.k-i-arrow-60-left,
|
|
27607
27492
|
.k-i-arrow-60-right,
|
|
@@ -27643,7 +27528,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
27643
27528
|
&:hover {
|
|
27644
27529
|
z-index: 2;
|
|
27645
27530
|
}
|
|
27646
|
-
&.k-state-disabled,
|
|
27647
27531
|
&.k-disabled {
|
|
27648
27532
|
color: inherit;
|
|
27649
27533
|
}
|
|
@@ -27693,7 +27577,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
27693
27577
|
}
|
|
27694
27578
|
|
|
27695
27579
|
// Selected state
|
|
27696
|
-
.k-state-selected,
|
|
27697
27580
|
.k-selected {
|
|
27698
27581
|
cursor: inherit;
|
|
27699
27582
|
z-index: 2;
|
|
@@ -27865,9 +27748,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
27865
27748
|
);
|
|
27866
27749
|
|
|
27867
27750
|
&:focus,
|
|
27868
|
-
&.k-focus,
|
|
27869
|
-
&.k-state-focus,
|
|
27870
|
-
&.k-state-focused,
|
|
27871
27751
|
&.k-focus {
|
|
27872
27752
|
@include fill( $bg: $pager-focus-bg );
|
|
27873
27753
|
@include box-shadow( $pager-focus-shadow );
|
|
@@ -27883,7 +27763,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
27883
27763
|
);
|
|
27884
27764
|
|
|
27885
27765
|
&:hover,
|
|
27886
|
-
&.k-state-hover,
|
|
27887
27766
|
&.k-hover {
|
|
27888
27767
|
@include fill(
|
|
27889
27768
|
$pager-item-hover-text,
|
|
@@ -27892,7 +27771,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
27892
27771
|
);
|
|
27893
27772
|
}
|
|
27894
27773
|
|
|
27895
|
-
&.k-state-selected,
|
|
27896
27774
|
&.k-selected {
|
|
27897
27775
|
@include fill(
|
|
27898
27776
|
$pager-item-selected-text,
|
|
@@ -27902,7 +27780,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
27902
27780
|
}
|
|
27903
27781
|
|
|
27904
27782
|
&:focus,
|
|
27905
|
-
&.k-state-focus,
|
|
27906
27783
|
&.k-focus {
|
|
27907
27784
|
background-color: $pager-item-focus-bg;
|
|
27908
27785
|
@include box-shadow( $pager-item-focus-shadow );
|
|
@@ -27926,7 +27803,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
27926
27803
|
);
|
|
27927
27804
|
|
|
27928
27805
|
&:hover,
|
|
27929
|
-
&.k-state-hover,
|
|
27930
27806
|
&.k-hover {
|
|
27931
27807
|
@include fill(
|
|
27932
27808
|
$pager-number-hover-text,
|
|
@@ -27936,13 +27812,11 @@ $pager-dropdown-width: 5em !default;
|
|
|
27936
27812
|
}
|
|
27937
27813
|
|
|
27938
27814
|
&:focus,
|
|
27939
|
-
&.k-state-focus,
|
|
27940
27815
|
&.k-focus {
|
|
27941
27816
|
background-color: $pager-number-focus-bg;
|
|
27942
27817
|
@include box-shadow( $pager-number-focus-shadow );
|
|
27943
27818
|
}
|
|
27944
27819
|
|
|
27945
|
-
&.k-state-selected,
|
|
27946
27820
|
&.k-selected {
|
|
27947
27821
|
@include fill(
|
|
27948
27822
|
$pager-number-selected-text,
|
|
@@ -27975,7 +27849,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
27975
27849
|
);
|
|
27976
27850
|
|
|
27977
27851
|
&:hover,
|
|
27978
|
-
&.k-state-hover,
|
|
27979
27852
|
&.k-hover {
|
|
27980
27853
|
@include fill(
|
|
27981
27854
|
$dropdownlist-hovered-text,
|
|
@@ -27985,7 +27858,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
27985
27858
|
}
|
|
27986
27859
|
}
|
|
27987
27860
|
|
|
27988
|
-
&.k-
|
|
27861
|
+
&.k-expanded {
|
|
27989
27862
|
@include fill(
|
|
27990
27863
|
$popup-text,
|
|
27991
27864
|
$popup-bg,
|
|
@@ -27996,7 +27869,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
27996
27869
|
.k-link {
|
|
27997
27870
|
|
|
27998
27871
|
&:hover,
|
|
27999
|
-
&.k-state-hover,
|
|
28000
27872
|
&.k-hover {
|
|
28001
27873
|
@include fill(
|
|
28002
27874
|
$kendo-list-item-hover-text,
|
|
@@ -28004,7 +27876,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
28004
27876
|
);
|
|
28005
27877
|
}
|
|
28006
27878
|
|
|
28007
|
-
&.k-state-selected,
|
|
28008
27879
|
&.k-selected {
|
|
28009
27880
|
@include fill(
|
|
28010
27881
|
$kendo-list-item-selected-text,
|
|
@@ -28044,7 +27915,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
28044
27915
|
);
|
|
28045
27916
|
|
|
28046
27917
|
&:hover,
|
|
28047
|
-
&.k-state-hover,
|
|
28048
27918
|
&.k-hover {
|
|
28049
27919
|
@include fill(
|
|
28050
27920
|
$pager-text,
|
|
@@ -28643,7 +28513,6 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
28643
28513
|
$bg: $stepper-progressbar-bg
|
|
28644
28514
|
);
|
|
28645
28515
|
|
|
28646
|
-
.k-state-selected,
|
|
28647
28516
|
.k-selected {
|
|
28648
28517
|
@include fill(
|
|
28649
28518
|
$color: $stepper-progressbar-fill-text,
|
|
@@ -28894,13 +28763,11 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28894
28763
|
position: relative;
|
|
28895
28764
|
z-index: 1;
|
|
28896
28765
|
|
|
28897
|
-
&.k-state-active,
|
|
28898
28766
|
&.k-active {
|
|
28899
28767
|
display: block;
|
|
28900
28768
|
}
|
|
28901
28769
|
|
|
28902
28770
|
&:focus,
|
|
28903
|
-
&.k-state-focused,
|
|
28904
28771
|
&.k-focus {
|
|
28905
28772
|
outline-width: 1px;
|
|
28906
28773
|
outline-style: dotted;
|
|
@@ -28989,7 +28856,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
28989
28856
|
margin-left: $tabstrip-item-gap;
|
|
28990
28857
|
}
|
|
28991
28858
|
|
|
28992
|
-
.k-item.k-state-active,
|
|
28993
28859
|
.k-item.k-active {
|
|
28994
28860
|
border-bottom-color: transparent;
|
|
28995
28861
|
}
|
|
@@ -29019,7 +28885,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29019
28885
|
margin-left: $tabstrip-item-gap;
|
|
29020
28886
|
}
|
|
29021
28887
|
|
|
29022
|
-
.k-item.k-state-active,
|
|
29023
28888
|
.k-item.k-active {
|
|
29024
28889
|
border-top-color: transparent;
|
|
29025
28890
|
}
|
|
@@ -29053,7 +28918,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29053
28918
|
margin-top: $tabstrip-item-gap;
|
|
29054
28919
|
}
|
|
29055
28920
|
|
|
29056
|
-
.k-item.k-state-active,
|
|
29057
28921
|
.k-item.k-active {
|
|
29058
28922
|
border-right-color: transparent;
|
|
29059
28923
|
}
|
|
@@ -29089,7 +28953,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29089
28953
|
margin-top: $tabstrip-item-gap;
|
|
29090
28954
|
}
|
|
29091
28955
|
|
|
29092
|
-
.k-item.k-state-active,
|
|
29093
28956
|
.k-item.k-active {
|
|
29094
28957
|
border-left-color: transparent;
|
|
29095
28958
|
}
|
|
@@ -29135,7 +28998,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29135
28998
|
border-left-width: $tabstrip-indicator-size;
|
|
29136
28999
|
}
|
|
29137
29000
|
}
|
|
29138
|
-
.k-item.k-state-active::after,
|
|
29139
29001
|
.k-item.k-active::after {
|
|
29140
29002
|
display: block;
|
|
29141
29003
|
}
|
|
@@ -29209,7 +29071,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29209
29071
|
);
|
|
29210
29072
|
|
|
29211
29073
|
&:hover,
|
|
29212
|
-
&.k-state-hover,
|
|
29213
29074
|
&.k-hover {
|
|
29214
29075
|
@include fill(
|
|
29215
29076
|
$tabstrip-item-hovered-text,
|
|
@@ -29220,9 +29081,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29220
29081
|
}
|
|
29221
29082
|
|
|
29222
29083
|
&:active,
|
|
29223
|
-
&.k-state-active,
|
|
29224
29084
|
&.k-active,
|
|
29225
|
-
&.k-state-selected,
|
|
29226
29085
|
&.k-selected {
|
|
29227
29086
|
@include fill(
|
|
29228
29087
|
$tabstrip-item-selected-text,
|
|
@@ -29233,7 +29092,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29233
29092
|
}
|
|
29234
29093
|
|
|
29235
29094
|
&:focus,
|
|
29236
|
-
&.k-state-focused,
|
|
29237
29095
|
&.k-focus {
|
|
29238
29096
|
@include box-shadow( $tabstrip-item-focused-shadow );
|
|
29239
29097
|
}
|
|
@@ -29256,7 +29114,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29256
29114
|
);
|
|
29257
29115
|
|
|
29258
29116
|
&:focus,
|
|
29259
|
-
&.k-state-focused,
|
|
29260
29117
|
&.k-focus {
|
|
29261
29118
|
outline-color: $tabstrip-content-border-focused;
|
|
29262
29119
|
}
|
|
@@ -29267,7 +29124,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29267
29124
|
@if ($tabstrip-indicator-size) {
|
|
29268
29125
|
|
|
29269
29126
|
.k-tabstrip-items-wrapper {
|
|
29270
|
-
.k-item.k-state-active::after,
|
|
29271
29127
|
.k-item.k-active::after {
|
|
29272
29128
|
border-color: $tabstrip-indicator-color;
|
|
29273
29129
|
}
|
|
@@ -29284,36 +29140,32 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29284
29140
|
// Tabstrip variants
|
|
29285
29141
|
.k-tabstrip-top {
|
|
29286
29142
|
|
|
29287
|
-
> .k-tabstrip-items .k-item
|
|
29143
|
+
> .k-tabstrip-items .k-item:hover,
|
|
29288
29144
|
> .k-tabstrip-items .k-item.k-hover,
|
|
29289
|
-
> .k-tabstrip-items .k-item.k-state-active,
|
|
29290
29145
|
> .k-tabstrip-items .k-item.k-active {
|
|
29291
29146
|
border-bottom-color: transparent;
|
|
29292
29147
|
}
|
|
29293
29148
|
}
|
|
29294
29149
|
.k-tabstrip-bottom {
|
|
29295
29150
|
|
|
29296
|
-
> .k-tabstrip-items .k-item
|
|
29151
|
+
> .k-tabstrip-items .k-item:hover,
|
|
29297
29152
|
> .k-tabstrip-items .k-item.k-hover,
|
|
29298
|
-
> .k-tabstrip-items .k-item.k-state-active,
|
|
29299
29153
|
> .k-tabstrip-items .k-item.k-active {
|
|
29300
29154
|
border-top-color: transparent;
|
|
29301
29155
|
}
|
|
29302
29156
|
}
|
|
29303
29157
|
.k-tabstrip-left {
|
|
29304
29158
|
|
|
29305
|
-
> .k-tabstrip-items .k-item
|
|
29159
|
+
> .k-tabstrip-items .k-item:hover,
|
|
29306
29160
|
> .k-tabstrip-items .k-item.k-hover,
|
|
29307
|
-
> .k-tabstrip-items .k-item.k-state-active,
|
|
29308
29161
|
> .k-tabstrip-items .k-item.k-active {
|
|
29309
29162
|
border-right-color: transparent;
|
|
29310
29163
|
}
|
|
29311
29164
|
}
|
|
29312
29165
|
.k-tabstrip-right {
|
|
29313
29166
|
|
|
29314
|
-
> .k-tabstrip-items .k-item
|
|
29167
|
+
> .k-tabstrip-items .k-item:hover,
|
|
29315
29168
|
> .k-tabstrip-items .k-item.k-hover,
|
|
29316
|
-
> .k-tabstrip-items .k-item.k-state-active,
|
|
29317
29169
|
> .k-tabstrip-items .k-item.k-active {
|
|
29318
29170
|
border-left-color: transparent;
|
|
29319
29171
|
}
|
|
@@ -29404,7 +29256,6 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
29404
29256
|
justify-content: space-between;
|
|
29405
29257
|
|
|
29406
29258
|
&:focus,
|
|
29407
|
-
&.k-state-focused,
|
|
29408
29259
|
&.k-focus {
|
|
29409
29260
|
outline-width: 1px;
|
|
29410
29261
|
outline-style: dotted;
|
|
@@ -29499,20 +29350,20 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
29499
29350
|
// #region @import "_theme.scss"; -> packages/bootstrap/scss/wizard/_theme.scss
|
|
29500
29351
|
// #region @import "~@progress/kendo-theme-default/scss/wizard/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/wizard/_theme.scss
|
|
29501
29352
|
@include exports("wizard/theme") {
|
|
29353
|
+
|
|
29502
29354
|
.k-wizard-step {
|
|
29503
29355
|
&:focus,
|
|
29504
|
-
&.k-state-focused,
|
|
29505
29356
|
&.k-focus {
|
|
29506
29357
|
outline-color: $wizard-step-border-focused;
|
|
29507
29358
|
}
|
|
29508
29359
|
|
|
29509
29360
|
.k-ie &:focus,
|
|
29510
|
-
.k-ie &.k-state-focused,
|
|
29511
29361
|
.k-ie &.k-focus {
|
|
29512
29362
|
@include box-shadow($wizard-focused-shadow);
|
|
29513
29363
|
outline: none;
|
|
29514
29364
|
}
|
|
29515
29365
|
}
|
|
29366
|
+
|
|
29516
29367
|
}
|
|
29517
29368
|
|
|
29518
29369
|
// #endregion
|
|
@@ -29678,7 +29529,6 @@ $expander-content-padding-y: $expander-content-padding-x !default;
|
|
|
29678
29529
|
$expander-border
|
|
29679
29530
|
);
|
|
29680
29531
|
|
|
29681
|
-
&.k-state-focus,
|
|
29682
29532
|
&.k-focus {
|
|
29683
29533
|
box-shadow: $expander-focus-shadow;
|
|
29684
29534
|
}
|
|
@@ -29693,13 +29543,10 @@ $expander-content-padding-y: $expander-content-padding-x !default;
|
|
|
29693
29543
|
outline: none;
|
|
29694
29544
|
|
|
29695
29545
|
&:hover,
|
|
29696
|
-
&.k-state-hover,
|
|
29697
29546
|
&.k-hover {
|
|
29698
29547
|
background-color: $expander-header-hover-bg;
|
|
29699
29548
|
}
|
|
29700
29549
|
|
|
29701
|
-
// Should be removed
|
|
29702
|
-
&.k-state-focused,
|
|
29703
29550
|
&.k-focus {
|
|
29704
29551
|
background-color: $expander-header-focused-bg;
|
|
29705
29552
|
box-shadow: $expander-header-focused-shadow;
|
|
@@ -29945,6 +29792,10 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
29945
29792
|
}
|
|
29946
29793
|
}
|
|
29947
29794
|
|
|
29795
|
+
// Panelbar item
|
|
29796
|
+
.k-panelbar-item {
|
|
29797
|
+
outline-style: none;
|
|
29798
|
+
}
|
|
29948
29799
|
|
|
29949
29800
|
// Panelbar content
|
|
29950
29801
|
.k-panelbar-content {
|
|
@@ -30046,7 +29897,6 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
30046
29897
|
> .k-item,
|
|
30047
29898
|
> .k-panelbar-header {
|
|
30048
29899
|
|
|
30049
|
-
&.k-state-expanded.k-level-0 > .k-link,
|
|
30050
29900
|
&.k-expanded.k-level-0 > .k-link {
|
|
30051
29901
|
@include fill(
|
|
30052
29902
|
$panelbar-header-expanded-text,
|
|
@@ -30073,7 +29923,6 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
30073
29923
|
|
|
30074
29924
|
// Hover
|
|
30075
29925
|
> .k-link:hover,
|
|
30076
|
-
> .k-link.k-state-hover,
|
|
30077
29926
|
> .k-link.k-hover {
|
|
30078
29927
|
@include fill(
|
|
30079
29928
|
$panelbar-header-hovered-text,
|
|
@@ -30085,9 +29934,6 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
30085
29934
|
|
|
30086
29935
|
// Focus
|
|
30087
29936
|
> .k-link:focus,
|
|
30088
|
-
> .k-link.k-state-focus,
|
|
30089
|
-
> .k-link.k-focus,
|
|
30090
|
-
> .k-link.k-state-focused,
|
|
30091
29937
|
> .k-link.k-focus {
|
|
30092
29938
|
@include fill(
|
|
30093
29939
|
$panelbar-header-focused-text,
|
|
@@ -30100,7 +29946,6 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
30100
29946
|
|
|
30101
29947
|
// Focus & Hover
|
|
30102
29948
|
> .k-link:focus:hover,
|
|
30103
|
-
> .k-link.k-state-focus.k-state-hover,
|
|
30104
29949
|
> .k-link.k-focus.k-hover {
|
|
30105
29950
|
@include fill(
|
|
30106
29951
|
$panelbar-header-hovered-focused-text,
|
|
@@ -30111,7 +29956,6 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
30111
29956
|
}
|
|
30112
29957
|
|
|
30113
29958
|
// Selected
|
|
30114
|
-
> .k-link.k-state-selected,
|
|
30115
29959
|
> .k-link.k-selected {
|
|
30116
29960
|
@include fill(
|
|
30117
29961
|
$panelbar-header-selected-text,
|
|
@@ -30127,9 +29971,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
30127
29971
|
}
|
|
30128
29972
|
|
|
30129
29973
|
// Selected Hover
|
|
30130
|
-
> .k-link.k-state-selected:hover,
|
|
30131
29974
|
> .k-link.k-selected:hover,
|
|
30132
|
-
> .k-link.k-state-selected.k-state-hover,
|
|
30133
29975
|
> .k-link.k-selected.k-hover {
|
|
30134
29976
|
@include fill(
|
|
30135
29977
|
$panelbar-header-selected-hovered-text,
|
|
@@ -30140,12 +29982,8 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
30140
29982
|
}
|
|
30141
29983
|
|
|
30142
29984
|
// Selected Focus
|
|
30143
|
-
> .k-link.k-state-selected:focus,
|
|
30144
29985
|
> .k-link.k-selected:focus,
|
|
30145
|
-
> .k-link.k-
|
|
30146
|
-
> .k-link.k-selected.k-focus,
|
|
30147
|
-
> .k-link.k-state-selected.k-state-focused,
|
|
30148
|
-
> .k-link.k-selected.k-focused {
|
|
29986
|
+
> .k-link.k-selected.k-focus {
|
|
30149
29987
|
@include fill(
|
|
30150
29988
|
$panelbar-header-selected-focused-text,
|
|
30151
29989
|
$panelbar-header-selected-focused-bg,
|
|
@@ -30155,12 +29993,8 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
30155
29993
|
}
|
|
30156
29994
|
|
|
30157
29995
|
// Selected Focus & Hover
|
|
30158
|
-
> .k-link.k-state-selected:hover:focus,
|
|
30159
29996
|
> .k-link.k-selected:hover:focus,
|
|
30160
|
-
> .k-link.k-
|
|
30161
|
-
> .k-link.k-selected.k-hover.k-state-focus,
|
|
30162
|
-
> .k-link.k-state-selected.k-state-hover.k-state-focused,
|
|
30163
|
-
> .k-link.k-selected.k-hover.k-state-focused {
|
|
29997
|
+
> .k-link.k-selected.k-hover.k-focus {
|
|
30164
29998
|
@include fill(
|
|
30165
29999
|
$panelbar-header-selected-hovered-focused-text,
|
|
30166
30000
|
$panelbar-header-selected-hovered-focused-bg,
|
|
@@ -30177,10 +30011,8 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
30177
30011
|
|
|
30178
30012
|
// Hover
|
|
30179
30013
|
> .k-item > .k-link:hover,
|
|
30180
|
-
> .k-item > .k-link.k-state-hover,
|
|
30181
30014
|
> .k-item > .k-link.k-hover,
|
|
30182
30015
|
> .k-panelbar-item > .k-link:hover,
|
|
30183
|
-
> .k-panelbar-item > .k-link.k-state-hover,
|
|
30184
30016
|
> .k-panelbar-item > .k-link.k-hover {
|
|
30185
30017
|
@include fill(
|
|
30186
30018
|
$panelbar-item-hovered-text,
|
|
@@ -30192,14 +30024,8 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
30192
30024
|
|
|
30193
30025
|
// Focus
|
|
30194
30026
|
> .k-item > .k-link:focus,
|
|
30195
|
-
> .k-item > .k-link.k-state-focus,
|
|
30196
|
-
> .k-item > .k-link.k-focus,
|
|
30197
|
-
> .k-item > .k-link.k-state-focused,
|
|
30198
30027
|
> .k-item > .k-link.k-focus,
|
|
30199
30028
|
> .k-panelbar-item > .k-link:focus,
|
|
30200
|
-
> .k-panelbar-item > .k-link.k-state-focus,
|
|
30201
|
-
> .k-panelbar-item > .k-link.k-focus,
|
|
30202
|
-
> .k-panelbar-item > .k-link.k-state-focused,
|
|
30203
30029
|
> .k-panelbar-item > .k-link.k-focus {
|
|
30204
30030
|
@include fill(
|
|
30205
30031
|
$panelbar-item-focused-text,
|
|
@@ -30212,10 +30038,8 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
30212
30038
|
|
|
30213
30039
|
// Focus & Hover
|
|
30214
30040
|
> .k-item > .k-link:focus:hover,
|
|
30215
|
-
> .k-item > .k-link.k-state-focus.k-state-hover,
|
|
30216
30041
|
> .k-item > .k-link.k-focus.k-hover,
|
|
30217
30042
|
> .k-panelbar-item > .k-link:focus:hover,
|
|
30218
|
-
> .k-panelbar-item > .k-link.k-state-focus.k-state-hover,
|
|
30219
30043
|
> .k-panelbar-item > .k-link.k-focus.k-hover {
|
|
30220
30044
|
@include fill(
|
|
30221
30045
|
$panelbar-item-hovered-focused-text,
|
|
@@ -30226,9 +30050,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
30226
30050
|
}
|
|
30227
30051
|
|
|
30228
30052
|
// Selected
|
|
30229
|
-
> .k-item > .k-link.k-state-selected,
|
|
30230
30053
|
> .k-item > .k-link.k-selected,
|
|
30231
|
-
> .k-panelbar-item > .k-link.k-state-selected,
|
|
30232
30054
|
> .k-panelbar-item > .k-link.k-selected {
|
|
30233
30055
|
@include fill(
|
|
30234
30056
|
$panelbar-item-selected-text,
|
|
@@ -30239,13 +30061,9 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
30239
30061
|
}
|
|
30240
30062
|
|
|
30241
30063
|
// Selected Hover
|
|
30242
|
-
> .k-item > .k-link.k-state-selected:hover,
|
|
30243
30064
|
> .k-item > .k-link.k-selected:hover,
|
|
30244
|
-
> .k-item > .k-link.k-state-selected.k-state-hover,
|
|
30245
30065
|
> .k-item > .k-link.k-selected.k-hover,
|
|
30246
|
-
> .k-panelbar-item > .k-link.k-state-selected:hover,
|
|
30247
30066
|
> .k-panelbar-item > .k-link.k-selected:hover,
|
|
30248
|
-
> .k-panelbar-item > .k-link.k-state-selected.k-state-hover,
|
|
30249
30067
|
> .k-panelbar-item > .k-link.k-selected.k-hover {
|
|
30250
30068
|
@include fill(
|
|
30251
30069
|
$panelbar-item-selected-hovered-text,
|
|
@@ -30256,18 +30074,10 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
30256
30074
|
}
|
|
30257
30075
|
|
|
30258
30076
|
// Selected Focus
|
|
30259
|
-
> .k-item > .k-link.k-state-selected:focus,
|
|
30260
30077
|
> .k-item > .k-link.k-selected:focus,
|
|
30261
|
-
> .k-item > .k-link.k-state-selected.k-state-focus,
|
|
30262
30078
|
> .k-item > .k-link.k-selected.k-focus,
|
|
30263
|
-
> .k-item > .k-link.k-state-selected.k-state-focused,
|
|
30264
|
-
> .k-item > .k-link.k-selected.k-focused,
|
|
30265
|
-
> .k-panelbar-item > .k-link.k-state-selected:focus,
|
|
30266
30079
|
> .k-panelbar-item > .k-link.k-selected:focus,
|
|
30267
|
-
> .k-panelbar-item > .k-link.k-
|
|
30268
|
-
> .k-panelbar-item > .k-link.k-selected.k-focus,
|
|
30269
|
-
> .k-item > .k-link.k-state-selected.k-state-focused,
|
|
30270
|
-
> .k-item > .k-link.k-selected.k-focused {
|
|
30080
|
+
> .k-panelbar-item > .k-link.k-selected.k-focus {
|
|
30271
30081
|
@include fill(
|
|
30272
30082
|
$panelbar-item-selected-focused-text,
|
|
30273
30083
|
$panelbar-item-selected-focused-bg,
|
|
@@ -30277,18 +30087,10 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
30277
30087
|
}
|
|
30278
30088
|
|
|
30279
30089
|
// Selected Focus & Hover
|
|
30280
|
-
> .k-item > .k-link.k-state-selected:focus:hover,
|
|
30281
30090
|
> .k-item > .k-link.k-selected:focus:hover,
|
|
30282
|
-
> .k-item > .k-link.k-
|
|
30283
|
-
> .k-item > .k-link.k-selected.k-focus.k-state-hover,
|
|
30284
|
-
> .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover,
|
|
30285
|
-
> .k-item > .k-link.k-selected.k-focused.k-state-hover,
|
|
30286
|
-
> .k-panelbar-item > .k-link.k-state-selected:focus:hover,
|
|
30091
|
+
> .k-item > .k-link.k-selected.k-focus.k-hover,
|
|
30287
30092
|
> .k-panelbar-item > .k-link.k-selected:focus:hover,
|
|
30288
|
-
> .k-panelbar-item > .k-link.k-
|
|
30289
|
-
> .k-panelbar-item > .k-link.k-selected.k-focus.k-state-hover,
|
|
30290
|
-
> .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover,
|
|
30291
|
-
> .k-item > .k-link.k-selected.k-focused.k-state-hover {
|
|
30093
|
+
> .k-panelbar-item > .k-link.k-selected.k-focus.k-hover {
|
|
30292
30094
|
@include fill(
|
|
30293
30095
|
$panelbar-item-selected-hovered-focused-text,
|
|
30294
30096
|
$panelbar-item-selected-hovered-focused-bg,
|
|
@@ -30526,7 +30328,7 @@ $splitbar-selected-text: $selected-text !default;
|
|
|
30526
30328
|
|
|
30527
30329
|
.k-pane,
|
|
30528
30330
|
.k-pane-flex {
|
|
30529
|
-
&.k-
|
|
30331
|
+
&.k-hidden,
|
|
30530
30332
|
&[hidden] {
|
|
30531
30333
|
// sass-lint:disable-block no-important
|
|
30532
30334
|
// hidden panes need to be zero-width to allow pane animation
|
|
@@ -30575,7 +30377,6 @@ $splitbar-selected-text: $selected-text !default;
|
|
|
30575
30377
|
background-color: $splitbar-bg;
|
|
30576
30378
|
}
|
|
30577
30379
|
.k-splitbar:hover,
|
|
30578
|
-
.k-splitbar.k-state-hover,
|
|
30579
30380
|
.k-splitbar.k-hover,
|
|
30580
30381
|
.k-splitbar-horizontal-hover,
|
|
30581
30382
|
.k-splitbar-vertical-hover {
|
|
@@ -30583,9 +30384,6 @@ $splitbar-selected-text: $selected-text !default;
|
|
|
30583
30384
|
background-color: $splitbar-hover-bg;
|
|
30584
30385
|
}
|
|
30585
30386
|
.k-splitbar:focus,
|
|
30586
|
-
.k-splitbar.k-state-focus,
|
|
30587
|
-
.k-splitbar.k-focus,
|
|
30588
|
-
.k-splitbar.k-state-focused,
|
|
30589
30387
|
.k-splitbar.k-focus {
|
|
30590
30388
|
color: $splitbar-selected-text;
|
|
30591
30389
|
background: $splitbar-selected-bg;
|
|
@@ -30696,9 +30494,6 @@ $tilelayout-hint-border: $component-border !default;
|
|
|
30696
30494
|
}
|
|
30697
30495
|
|
|
30698
30496
|
.k-tilelayout-item:focus,
|
|
30699
|
-
.k-tilelayout-item.k-focus,
|
|
30700
|
-
.k-tilelayout-item.k-state-focus,
|
|
30701
|
-
.k-tilelayout-item.k-state-focused,
|
|
30702
30497
|
.k-tilelayout-item.k-focus {
|
|
30703
30498
|
@include box-shadow($tilelayout-card-focus-shadow);
|
|
30704
30499
|
}
|
|
@@ -31112,7 +30907,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31112
30907
|
border-radius: 50%;
|
|
31113
30908
|
}
|
|
31114
30909
|
|
|
31115
|
-
.k-i-reload
|
|
30910
|
+
.k-i-reload,
|
|
30911
|
+
.k-i-arrow-rotate-cw {
|
|
31116
30912
|
font-size: 1em;
|
|
31117
30913
|
margin-right: .5em;
|
|
31118
30914
|
}
|
|
@@ -31375,12 +31171,10 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31375
31171
|
|
|
31376
31172
|
.k-column-menu {
|
|
31377
31173
|
|
|
31378
|
-
.k-listgroup-item.k-state-selected,
|
|
31379
31174
|
.k-listgroup-item.k-selected {
|
|
31380
31175
|
color: $adaptive-grid-sort-text;
|
|
31381
31176
|
background: none;
|
|
31382
31177
|
}
|
|
31383
|
-
.k-listgroup-item.k-state-selected .k-link,
|
|
31384
31178
|
.k-listgroup-item.k-selected .k-link {
|
|
31385
31179
|
color: inherit;
|
|
31386
31180
|
}
|
|
@@ -32126,7 +31920,9 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32126
31920
|
|
|
32127
31921
|
.k-cell-inner > .k-link > .k-icon {
|
|
32128
31922
|
&.k-i-sort-desc-sm,
|
|
32129
|
-
&.k-i-sort-asc-sm
|
|
31923
|
+
&.k-i-sort-asc-sm,
|
|
31924
|
+
&.k-i-sort-asc-small,
|
|
31925
|
+
&.k-i-sort-desc-small {
|
|
32130
31926
|
vertical-align: text-top;
|
|
32131
31927
|
margin-inline-start: $grid-sorted-icon-spacing;
|
|
32132
31928
|
}
|
|
@@ -32958,34 +32754,27 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
32958
32754
|
|
|
32959
32755
|
// Hover state
|
|
32960
32756
|
tbody>tr:not(.k-detail-row):hover,
|
|
32961
|
-
tbody>tr:not(.k-detail-row).k-state-hover,
|
|
32962
32757
|
tbody>tr:not(.k-detail-row).k-hover {
|
|
32963
32758
|
color: $grid-hovered-text;
|
|
32964
32759
|
background-color: $grid-hovered-bg;
|
|
32965
32760
|
}
|
|
32966
32761
|
|
|
32967
32762
|
// Selected state
|
|
32968
|
-
th.k-state-selected,
|
|
32969
32763
|
th.k-selected,
|
|
32970
|
-
td.k-state-selected,
|
|
32971
32764
|
td.k-selected,
|
|
32972
|
-
tr.k-state-selected > td,
|
|
32973
32765
|
tr.k-selected > td {
|
|
32974
32766
|
color: $grid-selected-text;
|
|
32975
32767
|
background-color: $grid-selected-bg;
|
|
32976
32768
|
}
|
|
32977
32769
|
|
|
32978
32770
|
// Focused state
|
|
32979
|
-
td.k-state-focused,
|
|
32980
32771
|
td.k-focus,
|
|
32981
|
-
th.k-state-focused,
|
|
32982
32772
|
th.k-focus,
|
|
32983
32773
|
th:focus,
|
|
32984
32774
|
.k-master-row > td:focus,
|
|
32985
32775
|
.k-grouping-row > td:focus,
|
|
32986
32776
|
.k-detail-row > td:focus,
|
|
32987
32777
|
.k-group-footer > td:focus,
|
|
32988
|
-
.k-grid-pager.k-state-focused,
|
|
32989
32778
|
.k-grid-pager.k-focus,
|
|
32990
32779
|
.k-grid-pager:focus {
|
|
32991
32780
|
box-shadow: $grid-focused-shadow;
|
|
@@ -33020,20 +32809,16 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33020
32809
|
}
|
|
33021
32810
|
|
|
33022
32811
|
// Selected state
|
|
33023
|
-
.k-state-selected td,
|
|
33024
32812
|
.k-selected td {
|
|
33025
32813
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
33026
32814
|
}
|
|
33027
32815
|
|
|
33028
|
-
.k-state-selected.k-alt td,
|
|
33029
32816
|
.k-selected.k-alt td {
|
|
33030
32817
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
33031
32818
|
}
|
|
33032
32819
|
|
|
33033
32820
|
// Selected hover
|
|
33034
|
-
.k-state-selected:hover td,
|
|
33035
32821
|
.k-selected:hover td,
|
|
33036
|
-
.k-state-selected.k-state-hover td,
|
|
33037
32822
|
.k-selected.k-hover td {
|
|
33038
32823
|
@include fill( $bg: $grid-sticky-selected-hovered-bg );
|
|
33039
32824
|
}
|
|
@@ -33080,6 +32865,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33080
32865
|
|
|
33081
32866
|
.k-i-sort-asc-sm,
|
|
33082
32867
|
.k-i-sort-desc-sm,
|
|
32868
|
+
.k-i-sort-asc-small,
|
|
32869
|
+
.k-i-sort-desc-small,
|
|
33083
32870
|
.k-sort-order {
|
|
33084
32871
|
color: $grid-sorting-indicator-text;
|
|
33085
32872
|
}
|
|
@@ -33089,12 +32876,9 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33089
32876
|
.k-grid-header-menu,
|
|
33090
32877
|
.k-hierarchy-cell .k-icon {
|
|
33091
32878
|
&:focus,
|
|
33092
|
-
&.k-
|
|
33093
|
-
&.k-focus,
|
|
33094
|
-
&.k-state-border-down {
|
|
32879
|
+
&.k-focus {
|
|
33095
32880
|
box-shadow: inset 0 0 0 2px rgba( 0, 0, 0, .1 );
|
|
33096
32881
|
}
|
|
33097
|
-
&.k-state-active,
|
|
33098
32882
|
&.k-active {
|
|
33099
32883
|
color: $selected-text;
|
|
33100
32884
|
background-color: $selected-bg;
|
|
@@ -33148,20 +32932,14 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33148
32932
|
}
|
|
33149
32933
|
|
|
33150
32934
|
// Selected state
|
|
33151
|
-
&.k-state-selected .k-grid-content-sticky,
|
|
33152
32935
|
&.k-selected .k-grid-content-sticky,
|
|
33153
|
-
&.k-state-selected .k-grid-row-sticky,
|
|
33154
32936
|
&.k-selected .k-grid-row-sticky,
|
|
33155
|
-
td.k-grid-content-sticky.k-state-selected,
|
|
33156
32937
|
td.k-grid-content-sticky.k-selected {
|
|
33157
32938
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
33158
32939
|
}
|
|
33159
32940
|
|
|
33160
|
-
&.k-state-selected.k-alt .k-grid-content-sticky,
|
|
33161
32941
|
&.k-selected.k-alt .k-grid-content-sticky,
|
|
33162
|
-
&.k-state-selected.k-alt .k-grid-row-sticky,
|
|
33163
32942
|
&.k-selected.k-alt .k-grid-row-sticky,
|
|
33164
|
-
&.k-alt td.k-grid-content-sticky.k-state-selected,
|
|
33165
32943
|
&.k-alt td.k-grid-content-sticky.k-selected {
|
|
33166
32944
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
33167
32945
|
}
|
|
@@ -33169,27 +32947,19 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33169
32947
|
|
|
33170
32948
|
// Hovered state
|
|
33171
32949
|
&:hover .k-grid-content-sticky,
|
|
33172
|
-
&:hover .k-grid-row-sticky,
|
|
33173
|
-
&.k-state-hover .k-grid-content-sticky,
|
|
33174
32950
|
&.k-hover .k-grid-content-sticky,
|
|
33175
|
-
|
|
32951
|
+
&:hover .k-grid-row-sticky,
|
|
33176
32952
|
&.k-hover .k-grid-row-sticky {
|
|
33177
32953
|
background-color: $grid-sticky-hovered-bg;
|
|
33178
32954
|
}
|
|
33179
32955
|
|
|
33180
32956
|
|
|
33181
32957
|
// Selected hover
|
|
33182
|
-
&.k-state-selected:hover .k-grid-content-sticky,
|
|
33183
32958
|
&.k-selected:hover .k-grid-content-sticky,
|
|
33184
|
-
&.k-state-selected:hover .k-grid-row-sticky,
|
|
33185
|
-
&.k-selected:hover .k-grid-row-sticky,
|
|
33186
|
-
&.k-state-selected.k-state-hover .k-grid-content-sticky,
|
|
33187
32959
|
&.k-selected.k-hover .k-grid-content-sticky,
|
|
33188
|
-
&.k-
|
|
32960
|
+
&.k-selected:hover .k-grid-row-sticky,
|
|
33189
32961
|
&.k-selected.k-hover .k-grid-row-sticky,
|
|
33190
|
-
&:hover td.k-grid-content-sticky.k-state-selected,
|
|
33191
32962
|
&:hover td.k-grid-content-sticky.k-selected,
|
|
33192
|
-
&.k-state-hover td.k-grid-content-sticky.k-state-selected,
|
|
33193
32963
|
&.k-hover td.k-grid-content-sticky.k-selected {
|
|
33194
32964
|
background-color: $grid-sticky-selected-hovered-bg;
|
|
33195
32965
|
}
|
|
@@ -33203,7 +32973,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33203
32973
|
background-color: $grid-sticky-bg;
|
|
33204
32974
|
|
|
33205
32975
|
&:hover,
|
|
33206
|
-
&.k-state-hover,
|
|
33207
32976
|
&.k-hover {
|
|
33208
32977
|
background-color: $grid-sticky-hovered-bg;
|
|
33209
32978
|
}
|
|
@@ -33215,7 +32984,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33215
32984
|
background-color: $grid-sticky-bg;
|
|
33216
32985
|
|
|
33217
32986
|
&:hover td,
|
|
33218
|
-
&.k-state-hover td,
|
|
33219
32987
|
&.k-hover td {
|
|
33220
32988
|
background-color: $grid-sticky-hovered-bg;
|
|
33221
32989
|
}
|
|
@@ -33227,66 +32995,43 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33227
32995
|
}
|
|
33228
32996
|
|
|
33229
32997
|
// Selected state
|
|
33230
|
-
tr.k-state-selected .k-grid-content-sticky,
|
|
33231
32998
|
tr.k-selected .k-grid-content-sticky,
|
|
33232
|
-
.k-state-selected.k-grid-row-sticky td,
|
|
33233
32999
|
.k-selected.k-grid-row-sticky td,
|
|
33234
|
-
.k-grid-row-sticky td.k-state-selected,
|
|
33235
33000
|
.k-grid-row-sticky td.k-selected,
|
|
33236
|
-
.k-state-selected.k-grid-content-sticky,
|
|
33237
33001
|
.k-selected.k-grid-content-sticky {
|
|
33238
33002
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
33239
33003
|
}
|
|
33240
33004
|
|
|
33241
|
-
tr.k-state-selected.k-alt .k-grid-content-sticky,
|
|
33242
33005
|
tr.k-selected.k-alt .k-grid-content-sticky,
|
|
33243
|
-
.k-state-selected.k-alt.k-grid-row-sticky td,
|
|
33244
33006
|
.k-selected.k-alt.k-grid-row-sticky td,
|
|
33245
|
-
.k-alt .k-state-selected.k-grid-content-sticky,
|
|
33246
33007
|
.k-alt .k-selected.k-grid-content-sticky {
|
|
33247
33008
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
33248
33009
|
}
|
|
33249
33010
|
|
|
33250
33011
|
// Hover state
|
|
33251
33012
|
tr:hover .k-grid-content-sticky,
|
|
33252
|
-
tr.k-state-hover .k-grid-content-sticky,
|
|
33253
33013
|
tr.k-hover .k-grid-content-sticky,
|
|
33254
33014
|
.k-grid-row-sticky:hover td,
|
|
33255
|
-
.k-grid-row-sticky.k-state-hover td,
|
|
33256
33015
|
.k-grid-row-sticky.k-hover td,
|
|
33257
33016
|
.k-grid-row-sticky.k-alt:hover td,
|
|
33258
|
-
.k-grid-row-sticky.k-alt.k-state-hover td,
|
|
33259
33017
|
.k-grid-row-sticky.k-alt.k-hover td,
|
|
33260
33018
|
.k-alt:hover .k-grid-content-sticky,
|
|
33261
|
-
.k-alt.k-state-hover .k-grid-content-sticky,
|
|
33262
33019
|
.k-alt.k-hover .k-grid-content-sticky {
|
|
33263
33020
|
background-color: $grid-sticky-hovered-bg;
|
|
33264
33021
|
}
|
|
33265
33022
|
|
|
33266
33023
|
// Selected + Hover
|
|
33267
|
-
tr.k-state-selected:hover .k-grid-content-sticky,
|
|
33268
33024
|
tr.k-selected:hover .k-grid-content-sticky,
|
|
33269
|
-
tr.k-state-selected.k-state-hover .k-grid-content-sticky,
|
|
33270
33025
|
tr.k-selected.k-hover .k-grid-content-sticky,
|
|
33271
|
-
.k-state-selected.k-grid-row-sticky:hover td,
|
|
33272
33026
|
.k-selected.k-grid-row-sticky:hover td,
|
|
33273
|
-
.k-state-selected.k-grid-row-sticky.k-state-hover td,
|
|
33274
33027
|
.k-selected.k-grid-row-sticky.k-hover td,
|
|
33275
|
-
.k-state-selected.k-alt.k-grid-row-sticky:hover td,
|
|
33276
33028
|
.k-selected.k-alt.k-grid-row-sticky:hover td,
|
|
33277
|
-
.k-state-selected.k-alt.k-grid-row-sticky.k-state-hover td,
|
|
33278
33029
|
.k-selected.k-alt.k-grid-row-sticky.k-hover td,
|
|
33279
|
-
tr.k-state-selected.k-alt:hover .k-grid-content-sticky,
|
|
33280
33030
|
tr.k-selected.k-alt:hover .k-grid-content-sticky,
|
|
33281
|
-
tr.k-state-selected.k-alt.k-state-hover .k-grid-content-sticky,
|
|
33282
33031
|
tr.k-selected.k-alt.k-hover .k-grid-content-sticky,
|
|
33283
|
-
.k-grid-row-sticky:hover td.k-state-selected,
|
|
33284
33032
|
.k-grid-row-sticky:hover td.k-selected,
|
|
33285
|
-
.k-grid-row-sticky.k-state-hover td.k-state-selected,
|
|
33286
33033
|
.k-grid-row-sticky.k-hover td.k-selected,
|
|
33287
|
-
tr:hover .k-grid-content-sticky.k-state-selected,
|
|
33288
33034
|
tr:hover .k-grid-content-sticky.k-selected,
|
|
33289
|
-
tr.k-state-hover .k-grid-content-sticky.k-state-selected,
|
|
33290
33035
|
tr.k-hover .k-grid-content-sticky.k-selected {
|
|
33291
33036
|
background-color: $grid-sticky-selected-hovered-bg;
|
|
33292
33037
|
}
|
|
@@ -33298,7 +33043,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33298
33043
|
}
|
|
33299
33044
|
|
|
33300
33045
|
&:hover .k-grid-content-sticky,
|
|
33301
|
-
&.k-state-hover .k-grid-content-sticky,
|
|
33302
33046
|
&.k-hover .k-grid-content-sticky {
|
|
33303
33047
|
@include fill( $bg: $grid-sticky-hovered-bg );
|
|
33304
33048
|
}
|
|
@@ -33311,7 +33055,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33311
33055
|
}
|
|
33312
33056
|
|
|
33313
33057
|
&:hover .k-grid-footer-sticky,
|
|
33314
|
-
&.k-state-hover .k-grid-footer-sticky,
|
|
33315
33058
|
&.k-hover .k-grid-footer-sticky {
|
|
33316
33059
|
@include fill( $bg: $grid-sticky-footer-hovered-bg );
|
|
33317
33060
|
}
|
|
@@ -33354,7 +33097,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33354
33097
|
);
|
|
33355
33098
|
}
|
|
33356
33099
|
.k-columnmenu-item:focus,
|
|
33357
|
-
.k-columnmenu-item.k-state-focus,
|
|
33358
33100
|
.k-columnmenu-item.k-focus {
|
|
33359
33101
|
@include box-shadow( $kendo-list-item-focus-shadow );
|
|
33360
33102
|
}
|
|
@@ -33364,7 +33106,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33364
33106
|
}
|
|
33365
33107
|
|
|
33366
33108
|
.k-columnmenu-item {
|
|
33367
|
-
&.k-state-selected,
|
|
33368
33109
|
&.k-selected {
|
|
33369
33110
|
@include fill(
|
|
33370
33111
|
$kendo-list-item-selected-text,
|
|
@@ -33390,7 +33131,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33390
33131
|
);
|
|
33391
33132
|
|
|
33392
33133
|
&:hover,
|
|
33393
|
-
&.k-state-hover,
|
|
33394
33134
|
&.k-hover {
|
|
33395
33135
|
@include fill(
|
|
33396
33136
|
$kendo-list-item-hover-text,
|
|
@@ -33398,7 +33138,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33398
33138
|
);
|
|
33399
33139
|
}
|
|
33400
33140
|
|
|
33401
|
-
&.k-state-selected,
|
|
33402
33141
|
&.k-selected {
|
|
33403
33142
|
@include fill(
|
|
33404
33143
|
$kendo-list-item-selected-text,
|
|
@@ -33407,7 +33146,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
33407
33146
|
}
|
|
33408
33147
|
|
|
33409
33148
|
&:focus,
|
|
33410
|
-
&.k-state-focused,
|
|
33411
33149
|
&.k-focus {
|
|
33412
33150
|
@include box-shadow( $kendo-list-item-focus-shadow );
|
|
33413
33151
|
}
|
|
@@ -33646,7 +33384,6 @@ $listview-item-focus-shadow: inset 0 0 0 3px rgba( $listview-text, .15 ) !defaul
|
|
|
33646
33384
|
// Listview content
|
|
33647
33385
|
.k-listview-content {
|
|
33648
33386
|
|
|
33649
|
-
> .k-state-focused,
|
|
33650
33387
|
> .k-focus {
|
|
33651
33388
|
@include fill(
|
|
33652
33389
|
$listview-item-focus-text,
|
|
@@ -33656,7 +33393,6 @@ $listview-item-focus-shadow: inset 0 0 0 3px rgba( $listview-text, .15 ) !defaul
|
|
|
33656
33393
|
@include box-shadow( $listview-item-focus-shadow );
|
|
33657
33394
|
}
|
|
33658
33395
|
|
|
33659
|
-
> .k-state-selected,
|
|
33660
33396
|
> .k-selected {
|
|
33661
33397
|
@include fill(
|
|
33662
33398
|
$listview-item-selected-text,
|
|
@@ -33868,7 +33604,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
33868
33604
|
[data-tool="merge"],
|
|
33869
33605
|
[data-tool="freeze"] {
|
|
33870
33606
|
width: auto;
|
|
33871
|
-
min-width: $form-line-height * 1em;
|
|
33607
|
+
min-width: calc( #{$form-line-height} * 1em );
|
|
33872
33608
|
}
|
|
33873
33609
|
|
|
33874
33610
|
.k-color-picker {
|
|
@@ -34037,7 +33773,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34037
33773
|
overflow: hidden;
|
|
34038
33774
|
|
|
34039
33775
|
// disabled cells in the Spreadsheet should allow navigation if link is used
|
|
34040
|
-
.k-state-disabled,
|
|
34041
33776
|
.k-disabled {
|
|
34042
33777
|
pointer-events: auto;
|
|
34043
33778
|
}
|
|
@@ -34599,7 +34334,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34599
34334
|
background-position: 50% 50%;
|
|
34600
34335
|
|
|
34601
34336
|
&:hover div,
|
|
34602
|
-
&.k-state-hovered div,
|
|
34603
34337
|
&.k-hover div {
|
|
34604
34338
|
margin: 0;
|
|
34605
34339
|
align-self: center;
|
|
@@ -34665,7 +34399,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34665
34399
|
.k-spreadsheet-insert-image-dialog {
|
|
34666
34400
|
.k-spreadsheet-has-image {
|
|
34667
34401
|
&:hover,
|
|
34668
|
-
&.k-state-hovered,
|
|
34669
34402
|
&.k-hover {
|
|
34670
34403
|
border-radius: $spreadsheet-insert-image-dialog-preview-overlay-border-radius;
|
|
34671
34404
|
}
|
|
@@ -34842,7 +34575,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34842
34575
|
);
|
|
34843
34576
|
box-shadow: inset 0 0 0 1px $kendo-button-border;
|
|
34844
34577
|
|
|
34845
|
-
&.k-state-active,
|
|
34846
34578
|
&.k-active {
|
|
34847
34579
|
@include fill(
|
|
34848
34580
|
$kendo-button-active-text,
|
|
@@ -34869,7 +34601,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34869
34601
|
> .k-menu,
|
|
34870
34602
|
> .k-menu:not(.k-context-menu) {
|
|
34871
34603
|
.k-item {
|
|
34872
|
-
&.k-state-hover,
|
|
34873
34604
|
&.k-hover {
|
|
34874
34605
|
@include fill(
|
|
34875
34606
|
$kendo-list-item-hover-text,
|
|
@@ -34900,13 +34631,11 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34900
34631
|
|
|
34901
34632
|
.k-spreadsheet-has-image {
|
|
34902
34633
|
&:hover,
|
|
34903
|
-
&.k-state-hovered,
|
|
34904
34634
|
&.k-hover {
|
|
34905
34635
|
box-shadow: $spreadsheet-insert-image-dialog-preview-overlay-shadow;
|
|
34906
34636
|
}
|
|
34907
34637
|
|
|
34908
34638
|
&:hover div,
|
|
34909
|
-
&.k-state-hovered div,
|
|
34910
34639
|
&.k-hover div {
|
|
34911
34640
|
color: $spreadsheet-insert-image-dialog-overlay-hovered-text;
|
|
34912
34641
|
}
|
|
@@ -34941,7 +34670,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34941
34670
|
.k-button {}
|
|
34942
34671
|
|
|
34943
34672
|
.k-button:hover,
|
|
34944
|
-
.k-button.k-state-hover,
|
|
34945
34673
|
.k-button.k-hover {
|
|
34946
34674
|
@include fill(
|
|
34947
34675
|
$kendo-list-item-hover-text,
|
|
@@ -34949,9 +34677,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
34949
34677
|
);
|
|
34950
34678
|
}
|
|
34951
34679
|
.k-button:active,
|
|
34952
|
-
.k-button.k-state-active,
|
|
34953
34680
|
.k-button.k-active,
|
|
34954
|
-
.k-button.k-state-selected,
|
|
34955
34681
|
.k-button.k-selected {
|
|
34956
34682
|
@include fill(
|
|
34957
34683
|
$kendo-list-item-selected-text,
|
|
@@ -35208,6 +34934,10 @@ $pivotgrid-remove-text: null !default;
|
|
|
35208
34934
|
border-right-width: $pivotgrid-cell-border-width;
|
|
35209
34935
|
border-bottom-style: solid;
|
|
35210
34936
|
border-bottom-width: $pivotgrid-cell-border-width;
|
|
34937
|
+
|
|
34938
|
+
&:focus {
|
|
34939
|
+
outline: none;
|
|
34940
|
+
}
|
|
35211
34941
|
}
|
|
35212
34942
|
|
|
35213
34943
|
|
|
@@ -35278,6 +35008,10 @@ $pivotgrid-remove-text: null !default;
|
|
|
35278
35008
|
white-space: nowrap;
|
|
35279
35009
|
vertical-align: top;
|
|
35280
35010
|
overflow: hidden;
|
|
35011
|
+
|
|
35012
|
+
&:focus {
|
|
35013
|
+
outline: none;
|
|
35014
|
+
}
|
|
35281
35015
|
}
|
|
35282
35016
|
|
|
35283
35017
|
.k-pivotgrid-cell .k-icon {
|
|
@@ -35898,15 +35632,12 @@ $pivotgrid-remove-text: null !default;
|
|
|
35898
35632
|
|
|
35899
35633
|
|
|
35900
35634
|
// Hover state
|
|
35901
|
-
.k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-state-hover,
|
|
35902
|
-
.k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-hover,
|
|
35903
35635
|
.k-pivotgrid-row-headers tbody > .k-pivotgrid-row:hover,
|
|
35904
|
-
.k-pivotgrid-
|
|
35905
|
-
.k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-hover,
|
|
35636
|
+
.k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-hover,
|
|
35906
35637
|
.k-pivotgrid-column-headers tbody > .k-pivotgrid-row:hover,
|
|
35907
|
-
.k-pivotgrid-
|
|
35908
|
-
.k-pivotgrid-values tbody > .k-pivotgrid-row
|
|
35909
|
-
.k-pivotgrid-values tbody > .k-pivotgrid-row
|
|
35638
|
+
.k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-hover,
|
|
35639
|
+
.k-pivotgrid-values tbody > .k-pivotgrid-row:hover,
|
|
35640
|
+
.k-pivotgrid-values tbody > .k-pivotgrid-row.k-hover {
|
|
35910
35641
|
@include fill (
|
|
35911
35642
|
$pivotgrid-hover-text,
|
|
35912
35643
|
$pivotgrid-hover-bg,
|
|
@@ -35915,9 +35646,10 @@ $pivotgrid-remove-text: null !default;
|
|
|
35915
35646
|
}
|
|
35916
35647
|
|
|
35917
35648
|
// Focus state
|
|
35918
|
-
.k-pivotgrid-cell.k-state-focus,
|
|
35919
|
-
.k-pivotgrid-cell.k-focus,
|
|
35920
35649
|
.k-pivotgrid-cell:focus,
|
|
35650
|
+
.k-pivotgrid-cell.k-focus,
|
|
35651
|
+
.k-pivotgrid-empty-cell:focus,
|
|
35652
|
+
.k-pivotgrid-empty-cell.k-focus,
|
|
35921
35653
|
.k-master-row > .k-pivotgrid-cell:focus,
|
|
35922
35654
|
.k-grouping-row > .k-pivotgrid-cell:focus,
|
|
35923
35655
|
.k-detail-row > .k-pivotgrid-cell:focus,
|
|
@@ -35926,9 +35658,7 @@ $pivotgrid-remove-text: null !default;
|
|
|
35926
35658
|
}
|
|
35927
35659
|
|
|
35928
35660
|
// Selected state
|
|
35929
|
-
.k-pivotgrid-cell.k-state-selected,
|
|
35930
35661
|
.k-pivotgrid-cell.k-selected,
|
|
35931
|
-
.k-pivotgrid-row.k-state-selected > .k-pivotgrid-cell,
|
|
35932
35662
|
.k-pivotgrid-row.k-selected > .k-pivotgrid-cell {
|
|
35933
35663
|
@include fill (
|
|
35934
35664
|
$pivotgrid-selected-text,
|
|
@@ -36160,7 +35890,6 @@ $treelist-footer-row-border-width: 1px !default;
|
|
|
36160
35890
|
}
|
|
36161
35891
|
|
|
36162
35892
|
.k-treelist-dragging,
|
|
36163
|
-
.k-treelist-dragging .k-state-hover,
|
|
36164
35893
|
.k-treelist-dragging .k-hover {
|
|
36165
35894
|
cursor: default;
|
|
36166
35895
|
}
|
|
@@ -36926,7 +36655,6 @@ $filemanager-preview-icon-border: null !default;
|
|
|
36926
36655
|
);
|
|
36927
36656
|
}
|
|
36928
36657
|
|
|
36929
|
-
&.k-state-selected .k-file-icon,
|
|
36930
36658
|
&.k-selected .k-file-icon {
|
|
36931
36659
|
@include fill(
|
|
36932
36660
|
inherit,
|
|
@@ -37295,10 +37023,8 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
37295
37023
|
|
|
37296
37024
|
&:focus,
|
|
37297
37025
|
&.k-focus,
|
|
37298
|
-
&.k-state-focus,
|
|
37299
37026
|
&:hover,
|
|
37300
|
-
&.k-hover
|
|
37301
|
-
&.k-state-hover {
|
|
37027
|
+
&.k-hover {
|
|
37302
37028
|
text-decoration: underline;
|
|
37303
37029
|
}
|
|
37304
37030
|
}
|
|
@@ -37390,7 +37116,6 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
37390
37116
|
);
|
|
37391
37117
|
}
|
|
37392
37118
|
.k-taskboard-column:focus,
|
|
37393
|
-
.k-taskboard-column.k-state-focus,
|
|
37394
37119
|
.k-taskboard-column.k-focus {
|
|
37395
37120
|
@include fill(
|
|
37396
37121
|
$taskboard-column-focus-text,
|
|
@@ -37429,39 +37154,33 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
37429
37154
|
@include fill( $color: $taskboard-card-header-text );
|
|
37430
37155
|
|
|
37431
37156
|
&:focus,
|
|
37432
|
-
&.k-focus
|
|
37433
|
-
&.k-state-focus {
|
|
37157
|
+
&.k-focus {
|
|
37434
37158
|
@include fill( $color: $taskboard-card-header-focus-text );
|
|
37435
37159
|
}
|
|
37436
37160
|
|
|
37437
37161
|
&:hover,
|
|
37438
|
-
&.k-hover
|
|
37439
|
-
&.k-state-hover {
|
|
37162
|
+
&.k-hover {
|
|
37440
37163
|
@include fill( $color: $taskboard-card-header-hover-text );
|
|
37441
37164
|
}
|
|
37442
37165
|
}
|
|
37443
37166
|
|
|
37444
37167
|
&:focus,
|
|
37445
|
-
&.k-focus
|
|
37446
|
-
&.k-state-focus {
|
|
37168
|
+
&.k-focus {
|
|
37447
37169
|
@include fill( $border: $taskboard-card-focus-border );
|
|
37448
37170
|
@include box-shadow( $taskboard-card-focus-shadow );
|
|
37449
37171
|
}
|
|
37450
37172
|
|
|
37451
37173
|
&:hover,
|
|
37452
|
-
&.k-hover
|
|
37453
|
-
&.k-state-hover {
|
|
37174
|
+
&.k-hover {
|
|
37454
37175
|
@include fill( $border: $taskboard-card-hover-border );
|
|
37455
37176
|
}
|
|
37456
37177
|
|
|
37457
|
-
&.k-selected
|
|
37458
|
-
&.k-state-selected {
|
|
37178
|
+
&.k-selected {
|
|
37459
37179
|
@include fill( $border: $taskboard-card-selected-border );
|
|
37460
37180
|
@include box-shadow( $taskboard-card-selected-shadow );
|
|
37461
37181
|
}
|
|
37462
37182
|
|
|
37463
|
-
&.k-disabled
|
|
37464
|
-
&.k-state-disabled {
|
|
37183
|
+
&.k-disabled {
|
|
37465
37184
|
@include disabled( $disabled-styling );
|
|
37466
37185
|
}
|
|
37467
37186
|
}
|
|
@@ -37593,7 +37312,6 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
37593
37312
|
pointer-events: auto;
|
|
37594
37313
|
}
|
|
37595
37314
|
|
|
37596
|
-
.k-editor-content.k-state-focused,
|
|
37597
37315
|
.k-editor-content.k-focus {
|
|
37598
37316
|
outline-width: 1px;
|
|
37599
37317
|
outline-style: dashed;
|
|
@@ -37849,7 +37567,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
37849
37567
|
border-bottom-color: inherit;
|
|
37850
37568
|
cursor: se-resize;
|
|
37851
37569
|
|
|
37852
|
-
.k-i-arrow-45-down-right
|
|
37570
|
+
.k-i-arrow-45-down-right,
|
|
37571
|
+
.k-i-caret-br {
|
|
37853
37572
|
display: none;
|
|
37854
37573
|
}
|
|
37855
37574
|
}
|
|
@@ -38047,7 +37766,6 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
38047
37766
|
display: block;
|
|
38048
37767
|
margin: auto;
|
|
38049
37768
|
|
|
38050
|
-
&.k-state-selected,
|
|
38051
37769
|
&.k-selected {
|
|
38052
37770
|
color: inherit;
|
|
38053
37771
|
border-width: 0;
|
|
@@ -38270,7 +37988,6 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
38270
37988
|
|
|
38271
37989
|
kendo-editor {
|
|
38272
37990
|
&.k-readonly {
|
|
38273
|
-
.k-editor-content.k-state-focused,
|
|
38274
37991
|
.k-editor-content.k-focus {
|
|
38275
37992
|
outline-color: $body-text;
|
|
38276
37993
|
}
|
|
@@ -38308,7 +38025,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
38308
38025
|
|
|
38309
38026
|
// Hover & Actve state
|
|
38310
38027
|
&:hover,
|
|
38311
|
-
&.k-
|
|
38028
|
+
&.k-active,
|
|
38312
38029
|
&.k-active {
|
|
38313
38030
|
border-color: $panel-border;
|
|
38314
38031
|
}
|
|
@@ -38326,7 +38043,6 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
38326
38043
|
|
|
38327
38044
|
// Insert table
|
|
38328
38045
|
.k-ct-popup {
|
|
38329
|
-
.k-state-selected,
|
|
38330
38046
|
.k-selected {
|
|
38331
38047
|
@include fill( $selected-text, $selected-bg, $selected-border, none );
|
|
38332
38048
|
}
|
|
@@ -38839,7 +38555,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
38839
38555
|
}
|
|
38840
38556
|
|
|
38841
38557
|
&.k-gantt-planned .k-grid-content tr {
|
|
38842
|
-
height: calc( #{$line-height-em * 1.7
|
|
38558
|
+
height: calc( #{$line-height-em} * 1.7 + #{$grid-cell-padding-y * 2} + #{$grid-cell-horizontal-border-width} );
|
|
38843
38559
|
}
|
|
38844
38560
|
|
|
38845
38561
|
// Layout
|
|
@@ -38884,7 +38600,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
38884
38600
|
}
|
|
38885
38601
|
}
|
|
38886
38602
|
|
|
38887
|
-
tr.k-state-selected > td:last-child,
|
|
38888
38603
|
tr.k-selected > td:last-child {
|
|
38889
38604
|
background: transparent;
|
|
38890
38605
|
}
|
|
@@ -39063,7 +38778,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39063
38778
|
padding: 0 !important; // sass-lint:disable-line no-important
|
|
39064
38779
|
}
|
|
39065
38780
|
.k-grid-header tr {
|
|
39066
|
-
height: calc( #{$line-height-em * 2
|
|
38781
|
+
height: calc( #{$line-height-em} * 2 + #{$grid-header-padding-y * 4} + 2px );
|
|
39067
38782
|
vertical-align: bottom;
|
|
39068
38783
|
}
|
|
39069
38784
|
.k-grid-content {
|
|
@@ -39154,7 +38869,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39154
38869
|
border-color: currentColor;
|
|
39155
38870
|
position: absolute;
|
|
39156
38871
|
}
|
|
39157
|
-
.k-gantt-line.k-state-selected,
|
|
39158
38872
|
.k-gantt-line.k-selected {
|
|
39159
38873
|
z-index: 3;
|
|
39160
38874
|
}
|
|
@@ -39228,7 +38942,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39228
38942
|
transform: translate(-50%, -50%);
|
|
39229
38943
|
}
|
|
39230
38944
|
.k-task-dot:hover::before,
|
|
39231
|
-
.k-task-dot.k-state-hover::before,
|
|
39232
38945
|
.k-task-dot.k-hover::before {
|
|
39233
38946
|
border-width: 1px;
|
|
39234
38947
|
}
|
|
@@ -39702,7 +39415,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39702
39415
|
$border: $gantt-milestone-border
|
|
39703
39416
|
);
|
|
39704
39417
|
}
|
|
39705
|
-
.k-task-milestone.k-state-selected .k-task-milestone-content,
|
|
39706
39418
|
.k-task-milestone.k-selected .k-task-milestone-content {
|
|
39707
39419
|
@include fill(
|
|
39708
39420
|
$bg: $gantt-milestone-selected-bg,
|
|
@@ -39717,7 +39429,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39717
39429
|
stroke: $gantt-line-fill;
|
|
39718
39430
|
}
|
|
39719
39431
|
|
|
39720
|
-
polyline.k-state-selected,
|
|
39721
39432
|
polyline.k-selected {
|
|
39722
39433
|
stroke: $gantt-line-selected-fill;
|
|
39723
39434
|
}
|
|
@@ -39771,7 +39482,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39771
39482
|
);
|
|
39772
39483
|
}
|
|
39773
39484
|
.k-task-dot:hover::before,
|
|
39774
|
-
.k-task-dot.k-state-hover::before,
|
|
39775
39485
|
.k-task-dot.k-hover::before {
|
|
39776
39486
|
@include fill(
|
|
39777
39487
|
$bg: $gantt-dot-hover-bg,
|
|
@@ -39797,7 +39507,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39797
39507
|
);
|
|
39798
39508
|
}
|
|
39799
39509
|
}
|
|
39800
|
-
.k-task-milestone.k-state-selected,
|
|
39801
39510
|
.k-task-milestone.k-selected {
|
|
39802
39511
|
background-image: none;
|
|
39803
39512
|
@include fill(
|
|
@@ -39828,7 +39537,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39828
39537
|
.k-task-advanced .k-task-summary-complete {
|
|
39829
39538
|
color: $gantt-advanced-bg;
|
|
39830
39539
|
}
|
|
39831
|
-
.k-task-summary.k-state-selected,
|
|
39832
39540
|
.k-task-summary.k-selected {
|
|
39833
39541
|
color: $gantt-summary-selected-bg;
|
|
39834
39542
|
|
|
@@ -39872,7 +39580,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39872
39580
|
$bg: $gantt-advanced-bg
|
|
39873
39581
|
);
|
|
39874
39582
|
}
|
|
39875
|
-
.k-task-single.k-state-selected,
|
|
39876
39583
|
.k-task-single.k-selected {
|
|
39877
39584
|
@include fill(
|
|
39878
39585
|
$gantt-task-selected-text,
|
|
@@ -39889,7 +39596,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
39889
39596
|
.k-gantt-line {
|
|
39890
39597
|
color: $gantt-line-fill;
|
|
39891
39598
|
}
|
|
39892
|
-
.k-gantt-line.k-state-selected,
|
|
39893
39599
|
.k-gantt-line.k-selected {
|
|
39894
39600
|
color: $gantt-line-selected-fill;
|
|
39895
39601
|
}
|
|
@@ -40548,7 +40254,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40548
40254
|
}
|
|
40549
40255
|
|
|
40550
40256
|
&:hover,
|
|
40551
|
-
&.k-state-hover,
|
|
40552
40257
|
&.k-hover {
|
|
40553
40258
|
.k-event-delete {
|
|
40554
40259
|
opacity: 1;
|
|
@@ -40614,7 +40319,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40614
40319
|
|
|
40615
40320
|
// Hover
|
|
40616
40321
|
&:hover,
|
|
40617
|
-
&.k-state-hover,
|
|
40618
40322
|
&.k-hover {
|
|
40619
40323
|
.k-event-actions .k-event-delete,
|
|
40620
40324
|
.k-resize-handle {
|
|
@@ -40872,11 +40576,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40872
40576
|
opacity: .5;
|
|
40873
40577
|
visibility: hidden;
|
|
40874
40578
|
}
|
|
40875
|
-
.k-state-hover .k-task > .k-event-delete,
|
|
40876
40579
|
.k-hover .k-task > .k-event-delete,
|
|
40877
40580
|
.k-scheduler-content tr:hover .k-event-delete,
|
|
40878
40581
|
.k-scheduler-content .k-scheduler-row:hover .k-event-delete,
|
|
40879
|
-
.k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete,
|
|
40880
40582
|
.k-scheduler-content .k-scheduler-row.k-hover .k-event-delete {
|
|
40881
40583
|
visibility: visible;
|
|
40882
40584
|
}
|
|
@@ -40950,7 +40652,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
40950
40652
|
position: relative;
|
|
40951
40653
|
}
|
|
40952
40654
|
|
|
40953
|
-
td.k-state-selected,
|
|
40954
40655
|
td.k-selected {
|
|
40955
40656
|
background-color: inherit;
|
|
40956
40657
|
}
|
|
@@ -41159,6 +40860,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41159
40860
|
|
|
41160
40861
|
.k-scheduler,
|
|
41161
40862
|
&.k-scheduler {
|
|
40863
|
+
.k-i-caret-alt-left,
|
|
40864
|
+
.k-i-caret-alt-right,
|
|
41162
40865
|
.k-i-arrow-60-left,
|
|
41163
40866
|
.k-i-arrow-60-right,
|
|
41164
40867
|
.k-current-time-arrow-right {
|
|
@@ -41331,9 +41034,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41331
41034
|
);
|
|
41332
41035
|
}
|
|
41333
41036
|
|
|
41334
|
-
.k-scheduler-layout td.k-state-selected,
|
|
41335
41037
|
.k-scheduler-layout td.k-selected,
|
|
41336
|
-
.k-scheduler-layout .k-scheduler-cell.k-state-selected,
|
|
41337
41038
|
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
41338
41039
|
background-color: rgba($selected-bg, .25);
|
|
41339
41040
|
}
|
|
@@ -41356,7 +41057,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41356
41057
|
);
|
|
41357
41058
|
@include box-shadow( $scheduler-event-shadow );
|
|
41358
41059
|
|
|
41359
|
-
|
|
41060
|
+
&:hover,
|
|
41360
41061
|
&.k-hover {
|
|
41361
41062
|
@include fill(
|
|
41362
41063
|
$scheduler-event-hover-text,
|
|
@@ -41367,7 +41068,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41367
41068
|
@include box-shadow( $scheduler-event-hover-shadow );
|
|
41368
41069
|
}
|
|
41369
41070
|
|
|
41370
|
-
&.k-state-selected,
|
|
41371
41071
|
&.k-selected {
|
|
41372
41072
|
@include fill(
|
|
41373
41073
|
$scheduler-event-selected-text,
|
|
@@ -41434,10 +41134,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41434
41134
|
|
|
41435
41135
|
// Hover
|
|
41436
41136
|
.k-scheduler-content tr:hover,
|
|
41437
|
-
.k-scheduler-content tr.k-state-hover,
|
|
41438
41137
|
.k-scheduler-content tr.k-hover,
|
|
41439
41138
|
.k-scheduler-content .k-scheduler-row:hover,
|
|
41440
|
-
.k-scheduler-content .k-scheduler-row.k-state-hover,
|
|
41441
41139
|
.k-scheduler-content .k-scheduler-row.k-hover {
|
|
41442
41140
|
@include fill(
|
|
41443
41141
|
$hovered-text,
|
|
@@ -41449,9 +41147,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41449
41147
|
|
|
41450
41148
|
.k-scheduler-content tr:hover .k-scheduler-datecolumn,
|
|
41451
41149
|
.k-scheduler-content tr:hover .k-scheduler-groupcolumn,
|
|
41452
|
-
.k-scheduler-content tr.k-state-hover .k-scheduler-datecolumn,
|
|
41453
41150
|
.k-scheduler-content tr.k-hover .k-scheduler-datecolumn,
|
|
41454
|
-
.k-scheduler-content tr.k-state-hover .k-scheduler-groupcolumn,
|
|
41455
41151
|
.k-scheduler-content tr.k-hover .k-scheduler-groupcolumn {
|
|
41456
41152
|
@include fill(
|
|
41457
41153
|
$scheduler-text,
|
|
@@ -41461,13 +41157,10 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41461
41157
|
}
|
|
41462
41158
|
|
|
41463
41159
|
// Selected
|
|
41464
|
-
.k-scheduler-content tr.k-state-selected,
|
|
41465
41160
|
.k-scheduler-content tr.k-selected {
|
|
41466
41161
|
background-color: rgba($selected-bg, .25);
|
|
41467
41162
|
}
|
|
41468
|
-
.k-scheduler-content tr.k-state-selected .k-scheduler-datecolumn,
|
|
41469
41163
|
.k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
|
|
41470
|
-
.k-scheduler-content tr.k-state-selected .k-scheduler-groupcolumn,
|
|
41471
41164
|
.k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
|
|
41472
41165
|
background-color: $scheduler-bg;
|
|
41473
41166
|
}
|
|
@@ -41485,7 +41178,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
41485
41178
|
@include fill( $bg: $scheduler-yearview-indicator-bg );
|
|
41486
41179
|
}
|
|
41487
41180
|
|
|
41488
|
-
.k-state-selected .k-day-indicator,
|
|
41489
41181
|
.k-selected .k-day-indicator {
|
|
41490
41182
|
@include fill( $bg: $scheduler-yearview-indicator-selected-bg );
|
|
41491
41183
|
}
|
|
@@ -41789,7 +41481,6 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
41789
41481
|
|
|
41790
41482
|
|
|
41791
41483
|
// Message states
|
|
41792
|
-
.k-message.k-state-selected,
|
|
41793
41484
|
.k-message.k-selected {
|
|
41794
41485
|
margin-bottom: $chat-item-spacing-y;
|
|
41795
41486
|
border: 0;
|
|
@@ -41918,7 +41609,6 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
41918
41609
|
align-items: center;
|
|
41919
41610
|
|
|
41920
41611
|
&:focus,
|
|
41921
|
-
&.k-state-focus,
|
|
41922
41612
|
&.k-focus,
|
|
41923
41613
|
&:focus-within {
|
|
41924
41614
|
outline: 0;
|
|
@@ -41999,7 +41689,6 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
41999
41689
|
flex: 0 0 auto;
|
|
42000
41690
|
}
|
|
42001
41691
|
|
|
42002
|
-
&.k-state-selected,
|
|
42003
41692
|
&.k-selected {
|
|
42004
41693
|
background: none;
|
|
42005
41694
|
}
|
|
@@ -42236,7 +41925,6 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
42236
41925
|
.k-bubble:hover {
|
|
42237
41926
|
@include box-shadow( $chat-bubble-hover-shadow );
|
|
42238
41927
|
}
|
|
42239
|
-
.k-state-selected .k-bubble,
|
|
42240
41928
|
.k-selected .k-bubble {
|
|
42241
41929
|
@include box-shadow( $chat-bubble-selected-shadow );
|
|
42242
41930
|
}
|
|
@@ -42252,7 +41940,6 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
42252
41940
|
.k-alt .k-bubble:hover {
|
|
42253
41941
|
@include box-shadow( $chat-alt-bubble-hover-shadow );
|
|
42254
41942
|
}
|
|
42255
|
-
.k-alt .k-state-selected .k-bubble,
|
|
42256
41943
|
.k-alt .k-selected .k-bubble {
|
|
42257
41944
|
@include box-shadow( $chat-alt-bubble-selected-shadow );
|
|
42258
41945
|
}
|
|
@@ -43057,7 +42744,6 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
43057
42744
|
color: $body-text;
|
|
43058
42745
|
}
|
|
43059
42746
|
|
|
43060
|
-
.k-timeline-arrow.k-state-disabled,
|
|
43061
42747
|
.k-timeline-arrow.k-disabled {
|
|
43062
42748
|
opacity: 1; // The arrow button in disabled mode should have a solid background
|
|
43063
42749
|
color: $timeline-track-arrow-disabled-text;
|
|
@@ -43078,7 +42764,6 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
43078
42764
|
background-color: $timeline-flag-bg;
|
|
43079
42765
|
}
|
|
43080
42766
|
|
|
43081
|
-
.k-timeline-track-item.k-state-focus .k-timeline-circle,
|
|
43082
42767
|
.k-timeline-track-item.k-focus .k-timeline-circle {
|
|
43083
42768
|
@include box-shadow( $timeline-track-item-focus-shadow );
|
|
43084
42769
|
}
|
|
@@ -43099,6 +42784,9 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
43099
42784
|
// #region @import "../common/_index.scss"; -> packages/bootstrap/scss/common/_index.scss
|
|
43100
42785
|
// File already imported_once. Skipping output.
|
|
43101
42786
|
// #endregion
|
|
42787
|
+
// #region @import "../button/_variables.scss"; -> packages/bootstrap/scss/button/_variables.scss
|
|
42788
|
+
// File already imported_once. Skipping output.
|
|
42789
|
+
// #endregion
|
|
43102
42790
|
// #region @import "../combobox/_index.scss"; -> packages/bootstrap/scss/combobox/_index.scss
|
|
43103
42791
|
// File already imported_once. Skipping output.
|
|
43104
42792
|
// #endregion
|
|
@@ -43114,6 +42802,12 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
43114
42802
|
// #region @import "../icons/_index.scss"; -> packages/bootstrap/scss/icons/_index.scss
|
|
43115
42803
|
// File already imported_once. Skipping output.
|
|
43116
42804
|
// #endregion
|
|
42805
|
+
// #region @import "../dropzone/_index.scss"; -> packages/bootstrap/scss/dropzone/_index.scss
|
|
42806
|
+
// File already imported_once. Skipping output.
|
|
42807
|
+
// #endregion
|
|
42808
|
+
// #region @import "../window/_index.scss"; -> packages/bootstrap/scss/window/_index.scss
|
|
42809
|
+
// File already imported_once. Skipping output.
|
|
42810
|
+
// #endregion
|
|
43117
42811
|
|
|
43118
42812
|
|
|
43119
42813
|
// Component
|
|
@@ -43144,12 +42838,25 @@ $pdf-viewer-page-text: $component-text !default;
|
|
|
43144
42838
|
$pdf-viewer-page-border: $component-border !default;
|
|
43145
42839
|
$pdf-viewer-page-shadow: 0 0 ($pdf-viewer-page-spacing / 2) $pdf-viewer-page-border !default;
|
|
43146
42840
|
|
|
43147
|
-
$pdf-viewer-search-dialog-padding: $toolbar-padding-x !default;
|
|
42841
|
+
$pdf-viewer-search-dialog-padding-x: $toolbar-padding-x !default;
|
|
42842
|
+
$pdf-viewer-search-dialog-padding-y: calc( #{$toolbar-padding-x} * 2 ) !default;
|
|
43148
42843
|
$pdf-viewer-search-dialog-spacing: $toolbar-spacing !default;
|
|
43149
42844
|
|
|
42845
|
+
$pdf-viewer-search-panel-border-width: 1px !default;
|
|
42846
|
+
$pdf-viewer-search-panel-border-radius: map-get( $spacing, 1 ) !default;
|
|
42847
|
+
$pdf-viewer-search-panel-bg: $component-bg !default;
|
|
42848
|
+
$pdf-viewer-search-panel-text: $component-text !default;
|
|
42849
|
+
$pdf-viewer-search-panel-border: $component-border !default;
|
|
42850
|
+
$pdf-viewer-search-panel-shadow: null !default;
|
|
42851
|
+
$pdf-viewer-search-panel-matches-spacing: $padding-x-sm !default;
|
|
42852
|
+
|
|
43150
42853
|
$pdf-viewer-selection-line-height: 1.2 !default;
|
|
43151
42854
|
|
|
43152
42855
|
$pdf-viewer-search-highlight-bg: $body-text !default;
|
|
42856
|
+
$pdf-viewer-search-highlight-mark-bg: yellow !default;
|
|
42857
|
+
|
|
42858
|
+
$pdf-viewer-icon-text: $dropzone-icon-text !default;
|
|
42859
|
+
$pdf-viewer-icon-size: calc( #{$icon-size} * 3 ) !default;
|
|
43153
42860
|
|
|
43154
42861
|
// #endregion
|
|
43155
42862
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/pdf-viewer/_layout.scss
|
|
@@ -43160,6 +42867,7 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
43160
42867
|
border-width: $pdf-viewer-border-width;
|
|
43161
42868
|
border-style: solid;
|
|
43162
42869
|
box-sizing: border-box;
|
|
42870
|
+
position: relative;
|
|
43163
42871
|
outline: 0;
|
|
43164
42872
|
font-family: $pdf-viewer-font-family;
|
|
43165
42873
|
font-size: $pdf-viewer-font-size;
|
|
@@ -43190,11 +42898,14 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
43190
42898
|
|
|
43191
42899
|
|
|
43192
42900
|
// Canvas
|
|
43193
|
-
.k-
|
|
42901
|
+
.k-canvas {
|
|
42902
|
+
display: flex;
|
|
42903
|
+
flex-direction: column;
|
|
43194
42904
|
flex: 1 1 auto;
|
|
43195
42905
|
outline: none;
|
|
43196
42906
|
|
|
43197
|
-
.k-enable-text-select
|
|
42907
|
+
.k-enable-text-select,
|
|
42908
|
+
&.k-enable-text-select {
|
|
43198
42909
|
-webkit-user-select: text;
|
|
43199
42910
|
-moz-user-select: text;
|
|
43200
42911
|
-ms-user-select: text;
|
|
@@ -43202,16 +42913,22 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
43202
42913
|
cursor: text;
|
|
43203
42914
|
}
|
|
43204
42915
|
|
|
43205
|
-
.k-enable-panning
|
|
42916
|
+
.k-enable-panning,
|
|
42917
|
+
&.k-enable-panning {
|
|
43206
42918
|
cursor: grab;
|
|
43207
42919
|
}
|
|
43208
|
-
.k-enable-panning span::selection
|
|
42920
|
+
.k-enable-panning span::selection,
|
|
42921
|
+
&.k-enable-panning span::selection {
|
|
43209
42922
|
background-color: transparent;
|
|
43210
42923
|
}
|
|
43211
42924
|
}
|
|
43212
42925
|
|
|
43213
42926
|
|
|
43214
|
-
//
|
|
42927
|
+
// Pages
|
|
42928
|
+
.k-pdf-viewer-pages {
|
|
42929
|
+
flex: 1 1 auto;
|
|
42930
|
+
}
|
|
42931
|
+
|
|
43215
42932
|
.k-page {
|
|
43216
42933
|
position: relative;
|
|
43217
42934
|
margin: $pdf-viewer-page-spacing auto;
|
|
@@ -43237,46 +42954,88 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
43237
42954
|
mark {
|
|
43238
42955
|
color: transparent;
|
|
43239
42956
|
}
|
|
42957
|
+
|
|
42958
|
+
.k-search-highlight-mark {
|
|
42959
|
+
color: transparent;
|
|
42960
|
+
}
|
|
43240
42961
|
}
|
|
43241
42962
|
}
|
|
42963
|
+
|
|
42964
|
+
.k-blank-page {
|
|
42965
|
+
margin: 0;
|
|
42966
|
+
display: flex;
|
|
42967
|
+
flex-flow: column nowrap;
|
|
42968
|
+
width: 100%;
|
|
42969
|
+
height: 100%;
|
|
42970
|
+
align-items: center;
|
|
42971
|
+
justify-content: center;
|
|
42972
|
+
background-color: inherit !important; // sass-lint:disable-line no-important
|
|
42973
|
+
|
|
42974
|
+
.k-upload,
|
|
42975
|
+
.k-dropzone,
|
|
42976
|
+
.k-dropzone-inner {
|
|
42977
|
+
border: 0;
|
|
42978
|
+
background: none;
|
|
42979
|
+
}
|
|
42980
|
+
|
|
42981
|
+
> .k-icon {
|
|
42982
|
+
font-size: $pdf-viewer-icon-size;
|
|
42983
|
+
}
|
|
42984
|
+
}
|
|
42985
|
+
|
|
43242
42986
|
}
|
|
43243
42987
|
|
|
43244
42988
|
// Search
|
|
43245
42989
|
.k-pdf-viewer-search-dialog {
|
|
43246
|
-
padding:
|
|
42990
|
+
padding: 0 !important; // sass-lint:disable-line no-important
|
|
42991
|
+
}
|
|
43247
42992
|
|
|
43248
|
-
|
|
43249
|
-
|
|
43250
|
-
|
|
43251
|
-
|
|
43252
|
-
|
|
43253
|
-
|
|
43254
|
-
|
|
42993
|
+
.k-search-panel {
|
|
42994
|
+
padding: $pdf-viewer-search-dialog-padding-y $pdf-viewer-search-dialog-padding-x;
|
|
42995
|
+
display: flex;
|
|
42996
|
+
gap: $pdf-viewer-search-dialog-spacing;
|
|
42997
|
+
flex-flow: row nowrap;
|
|
42998
|
+
flex: 0 0 auto;
|
|
42999
|
+
justify-content: flex-start;
|
|
43000
|
+
align-items: center;
|
|
43255
43001
|
|
|
43256
|
-
|
|
43257
|
-
|
|
43258
|
-
|
|
43259
|
-
|
|
43002
|
+
.k-search-dialog-draghandle {
|
|
43003
|
+
cursor: move;
|
|
43004
|
+
margin-left: 0;
|
|
43005
|
+
}
|
|
43260
43006
|
|
|
43261
|
-
|
|
43262
|
-
|
|
43263
|
-
|
|
43007
|
+
.k-textbox {
|
|
43008
|
+
width: 10em;
|
|
43009
|
+
flex: none;
|
|
43264
43010
|
|
|
43265
|
-
|
|
43266
|
-
|
|
43267
|
-
}
|
|
43011
|
+
.k-button {
|
|
43012
|
+
border-width: 0;
|
|
43268
43013
|
}
|
|
43014
|
+
}
|
|
43269
43015
|
|
|
43270
|
-
|
|
43271
|
-
|
|
43272
|
-
|
|
43016
|
+
.k-search-matches {
|
|
43017
|
+
display: inline-flex;
|
|
43018
|
+
gap: $pdf-viewer-search-panel-matches-spacing;
|
|
43273
43019
|
}
|
|
43274
43020
|
}
|
|
43275
43021
|
|
|
43022
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
43023
|
+
width: max-content;
|
|
43024
|
+
margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$pdf-viewer-search-panel-border-width} ) + ( 2 * #{$pdf-viewer-search-dialog-padding-y} )) * -1 );
|
|
43025
|
+
border-width: $pdf-viewer-search-panel-border-width;
|
|
43026
|
+
border-style: solid;
|
|
43027
|
+
border-radius: $pdf-viewer-search-panel-border-radius;
|
|
43028
|
+
z-index: 10;
|
|
43029
|
+
}
|
|
43030
|
+
|
|
43031
|
+
// Alias
|
|
43032
|
+
.k-search-container {
|
|
43033
|
+
@extend .k-search-panel !optional;
|
|
43034
|
+
}
|
|
43035
|
+
|
|
43276
43036
|
|
|
43277
43037
|
// IE
|
|
43278
43038
|
.k-ie .k-pdf-viewer-search-dialog {
|
|
43279
|
-
|
|
43280
43039
|
.k-search-container > * + * {
|
|
43281
43040
|
margin-left: $pdf-viewer-search-dialog-spacing;
|
|
43282
43041
|
}
|
|
@@ -43331,12 +43090,33 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
43331
43090
|
@include box-shadow( $pdf-viewer-page-shadow );
|
|
43332
43091
|
}
|
|
43333
43092
|
|
|
43093
|
+
.k-blank-page > .k-icon {
|
|
43094
|
+
@include fill( $color: $pdf-viewer-icon-text );
|
|
43095
|
+
}
|
|
43096
|
+
|
|
43334
43097
|
|
|
43335
43098
|
// Search
|
|
43336
43099
|
.k-search-highlight {
|
|
43337
43100
|
background-color: $pdf-viewer-search-highlight-bg;
|
|
43338
43101
|
}
|
|
43339
43102
|
|
|
43103
|
+
.k-search-highlight-mark {
|
|
43104
|
+
@include fill( $bg: $pdf-viewer-search-highlight-mark-bg );
|
|
43105
|
+
}
|
|
43106
|
+
|
|
43107
|
+
}
|
|
43108
|
+
|
|
43109
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
43110
|
+
@include fill(
|
|
43111
|
+
$pdf-viewer-search-panel-text,
|
|
43112
|
+
$pdf-viewer-search-panel-bg,
|
|
43113
|
+
$pdf-viewer-search-panel-border,
|
|
43114
|
+
);
|
|
43115
|
+
@include box-shadow( $pdf-viewer-search-panel-shadow );
|
|
43116
|
+
}
|
|
43117
|
+
|
|
43118
|
+
.k-search-container {
|
|
43119
|
+
@extend .k-search-panel !optional;
|
|
43340
43120
|
}
|
|
43341
43121
|
|
|
43342
43122
|
}
|
|
@@ -43785,7 +43565,6 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
43785
43565
|
outline-width: 0;
|
|
43786
43566
|
|
|
43787
43567
|
&:focus,
|
|
43788
|
-
&.k-state-focus,
|
|
43789
43568
|
&.k-focus {
|
|
43790
43569
|
color: $scrollview-navigation-color;
|
|
43791
43570
|
opacity: $scrollview-navigation-hover-opacity;
|
|
@@ -43796,7 +43575,6 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
43796
43575
|
}
|
|
43797
43576
|
|
|
43798
43577
|
&:hover,
|
|
43799
|
-
&.k-state-hover,
|
|
43800
43578
|
&.k-hover {
|
|
43801
43579
|
color: $scrollview-navigation-color;
|
|
43802
43580
|
opacity: $scrollview-navigation-hover-opacity;
|
|
@@ -43818,14 +43596,12 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
43818
43596
|
|
|
43819
43597
|
|
|
43820
43598
|
&:focus,
|
|
43821
|
-
&.k-state-focused,
|
|
43822
43599
|
&.k-focus {
|
|
43823
43600
|
box-shadow: $scrollview-pagebutton-shadow;
|
|
43824
43601
|
}
|
|
43825
43602
|
}
|
|
43826
43603
|
|
|
43827
43604
|
.k-scrollview-nav > .k-link:hover,
|
|
43828
|
-
.k-scrollview-nav > .k-link.k-state-hover,
|
|
43829
43605
|
.k-scrollview-nav > .k-link.k-hover {
|
|
43830
43606
|
box-shadow: $scrollview-pagebutton-shadow;
|
|
43831
43607
|
}
|
|
@@ -44642,7 +44418,7 @@ $treemap-line-height: $line-height !default;
|
|
|
44642
44418
|
.k-leaf.k-inverse {
|
|
44643
44419
|
color: $component-text;
|
|
44644
44420
|
}
|
|
44645
|
-
.k-leaf
|
|
44421
|
+
.k-leaf:hover,
|
|
44646
44422
|
.k-leaf.k-hover {
|
|
44647
44423
|
box-shadow: inset 0 0 0 3px $component-border;
|
|
44648
44424
|
}
|
|
@@ -45124,8 +44900,7 @@ $orgchart-line-v-height: 25px !default;
|
|
|
45124
44900
|
}
|
|
45125
44901
|
|
|
45126
44902
|
&:focus,
|
|
45127
|
-
&.k-focus
|
|
45128
|
-
&.k-state-focus {
|
|
44903
|
+
&.k-focus {
|
|
45129
44904
|
@include box-shadow( $orgchart-card-focus-shadow );
|
|
45130
44905
|
}
|
|
45131
44906
|
}
|
|
@@ -45139,9 +44914,6 @@ $orgchart-line-v-height: 25px !default;
|
|
|
45139
44914
|
);
|
|
45140
44915
|
}
|
|
45141
44916
|
.k-orgchart-node-group-container:focus,
|
|
45142
|
-
.k-orgchart-node-group-container.k-focus,
|
|
45143
|
-
.k-orgchart-node-group-container.k-state-focus,
|
|
45144
|
-
.k-orgchart-node-group-container.k-state-focused,
|
|
45145
44917
|
.k-orgchart-node-group-container.k-focus {
|
|
45146
44918
|
@include box-shadow( $orgchart-node-group-focus-shadow );
|
|
45147
44919
|
@include fill ( $border: $orgchart-node-group-focus-border );
|
|
@@ -45185,40 +44957,42 @@ $kendo-signature-height: 108px !default;
|
|
|
45185
44957
|
$kendo-signature-maximized-width: 750px !default;
|
|
45186
44958
|
$kendo-signature-maximized-height: 252px !default;
|
|
45187
44959
|
|
|
45188
|
-
$kendo-signature-padding: map-get( $spacing,
|
|
45189
|
-
$kendo-signature-padding-sm: map-get( $spacing,
|
|
45190
|
-
$kendo-signature-padding-md: $kendo-signature-padding !default;
|
|
45191
|
-
$kendo-signature-padding-lg: map-get( $spacing,
|
|
44960
|
+
$kendo-signature-padding-x: map-get( $spacing, 3 ) !default;
|
|
44961
|
+
$kendo-signature-padding-x-sm: map-get( $spacing, 2 ) !default;
|
|
44962
|
+
$kendo-signature-padding-x-md: $kendo-signature-padding-x !default;
|
|
44963
|
+
$kendo-signature-padding-x-lg: map-get( $spacing, 4 ) !default;
|
|
44964
|
+
|
|
44965
|
+
$kendo-signature-padding-y: map-get( $spacing, 1 ) !default;
|
|
44966
|
+
$kendo-signature-padding-y-sm: map-get( $spacing, thin ) !default;
|
|
44967
|
+
$kendo-signature-padding-y-md: $kendo-signature-padding-y !default;
|
|
44968
|
+
$kendo-signature-padding-y-lg: map-get( $spacing, 2 ) !default;
|
|
45192
44969
|
|
|
45193
44970
|
$kendo-signature-line-width: 1px !default;
|
|
45194
44971
|
$kendo-signature-line-style: dashed !default;
|
|
45195
44972
|
$kendo-signature-line-color: rgba( $info, .24 ) !default;
|
|
45196
44973
|
|
|
45197
|
-
$kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding} ) !default;
|
|
45198
|
-
$kendo-signature-line-size-sm: calc( 100% - 2 * #{$kendo-signature-padding-sm} ) !default;
|
|
45199
|
-
$kendo-signature-line-size-md: calc( 100% - 2 * #{$kendo-signature-padding-md} ) !default;
|
|
45200
|
-
$kendo-signature-line-size-lg: calc( 100% - 2 * #{$kendo-signature-padding-lg} ) !default;
|
|
44974
|
+
$kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
|
|
44975
|
+
$kendo-signature-line-size-sm: calc( 100% - 2 * #{$kendo-signature-padding-x-sm} ) !default;
|
|
44976
|
+
$kendo-signature-line-size-md: calc( 100% - 2 * #{$kendo-signature-padding-x-md} ) !default;
|
|
44977
|
+
$kendo-signature-line-size-lg: calc( 100% - 2 * #{$kendo-signature-padding-x-lg} ) !default;
|
|
45201
44978
|
|
|
45202
|
-
$kendo-signature-line-bottom-offset:
|
|
45203
|
-
$kendo-signature-line-bottom-offset-sm: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-sm} ) !default;
|
|
45204
|
-
$kendo-signature-line-bottom-offset-md: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-md} ) !default;
|
|
45205
|
-
$kendo-signature-line-bottom-offset-lg: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-lg} ) !default;
|
|
44979
|
+
$kendo-signature-line-bottom-offset: 33% !default;
|
|
45206
44980
|
|
|
45207
44981
|
$kendo-signature-sizes: (
|
|
45208
44982
|
sm: (
|
|
45209
|
-
padding: $kendo-signature-padding-sm,
|
|
45210
|
-
|
|
45211
|
-
line-
|
|
44983
|
+
padding-x: $kendo-signature-padding-x-sm,
|
|
44984
|
+
padding-y: $kendo-signature-padding-y-sm,
|
|
44985
|
+
line-size: $kendo-signature-line-size-sm
|
|
45212
44986
|
),
|
|
45213
44987
|
md: (
|
|
45214
|
-
padding: $kendo-signature-padding-md,
|
|
45215
|
-
|
|
45216
|
-
line-
|
|
44988
|
+
padding-x: $kendo-signature-padding-x-md,
|
|
44989
|
+
padding-y: $kendo-signature-padding-y-md,
|
|
44990
|
+
line-size: $kendo-signature-line-size-md
|
|
45217
44991
|
),
|
|
45218
44992
|
lg: (
|
|
45219
|
-
padding: $kendo-signature-padding-lg,
|
|
45220
|
-
|
|
45221
|
-
line-
|
|
44993
|
+
padding-x: $kendo-signature-padding-x-lg,
|
|
44994
|
+
padding-y: $kendo-signature-padding-y-lg,
|
|
44995
|
+
line-size: $kendo-signature-line-size-lg
|
|
45222
44996
|
)
|
|
45223
44997
|
) !default;
|
|
45224
44998
|
|
|
@@ -45232,7 +45006,7 @@ $kendo-signature-maximized-line-width: map-get( $spacing, 1 ) - map-get( $spacin
|
|
|
45232
45006
|
|
|
45233
45007
|
.k-signature {
|
|
45234
45008
|
width: $kendo-signature-width;
|
|
45235
|
-
height: $kendo-signature-height;
|
|
45009
|
+
min-height: $kendo-signature-height;
|
|
45236
45010
|
position: relative;
|
|
45237
45011
|
box-sizing: border-box;
|
|
45238
45012
|
display: flex;
|
|
@@ -45269,27 +45043,30 @@ $kendo-signature-maximized-line-width: map-get( $spacing, 1 ) - map-get( $spacin
|
|
|
45269
45043
|
|
|
45270
45044
|
.k-signature-line {
|
|
45271
45045
|
position: absolute;
|
|
45272
|
-
|
|
45046
|
+
bottom: $kendo-signature-line-bottom-offset;
|
|
45047
|
+
z-index: 2;
|
|
45048
|
+
pointer-events: none;
|
|
45273
45049
|
border-bottom-width: $kendo-signature-line-width;
|
|
45274
45050
|
border-bottom-style: $kendo-signature-line-style;
|
|
45275
45051
|
}
|
|
45276
45052
|
|
|
45277
45053
|
// Sizes
|
|
45278
45054
|
@each $size, $size-props in $kendo-signature-sizes {
|
|
45279
|
-
$_padding: map-get($size-props, padding);
|
|
45055
|
+
$_padding-x: map-get($size-props, padding-x);
|
|
45056
|
+
$_padding-y: map-get($size-props, padding-y);
|
|
45280
45057
|
$_line-size: map-get($size-props, line-size);
|
|
45281
45058
|
$_line-offset: map-get($size-props, line-offset);
|
|
45282
45059
|
|
|
45283
45060
|
.k-signature-#{$size} {
|
|
45284
|
-
padding: $_padding;
|
|
45061
|
+
padding-inline: $_padding-x;
|
|
45062
|
+
padding-block: $_padding-y;
|
|
45285
45063
|
|
|
45286
45064
|
.k-signature-line {
|
|
45287
45065
|
width: $_line-size;
|
|
45288
|
-
bottom: $_line-offset;
|
|
45289
45066
|
}
|
|
45290
45067
|
}
|
|
45291
|
-
|
|
45292
45068
|
}
|
|
45069
|
+
|
|
45293
45070
|
}
|
|
45294
45071
|
|
|
45295
45072
|
// #endregion
|