@progress/kendo-theme-classic 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 +692 -791
- package/dist/all.scss +282 -493
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/package.json +4 -4
- package/scss/button/_variables.scss +1 -1
- package/scss/forms/_variables.scss +1 -1
- package/scss/pdf-viewer/_index.scss +3 -0
- package/scss/pdf-viewer/_variables.scss +14 -1
- package/scss/signature/_variables.scss +23 -21
- package/scss/typography/_variables.scss +1 -1
package/dist/all.scss
CHANGED
|
@@ -1486,7 +1486,7 @@ $line-height-xs: 1 !default;
|
|
|
1486
1486
|
$line-height-sm: 1.25 !default;
|
|
1487
1487
|
$line-height-md: $line-height !default;
|
|
1488
1488
|
$line-height-lg: 1.5 !default;
|
|
1489
|
-
$line-height-em: $line-height * 1em !default;
|
|
1489
|
+
$line-height-em: calc( #{$line-height} * 1em ) !default;
|
|
1490
1490
|
|
|
1491
1491
|
|
|
1492
1492
|
// Font weight
|
|
@@ -1719,7 +1719,6 @@ $display4-letter-spacing: null !default;
|
|
|
1719
1719
|
@include exports( "common/disabled" ) {
|
|
1720
1720
|
|
|
1721
1721
|
// Disabled state
|
|
1722
|
-
.k-state-disabled,
|
|
1723
1722
|
.k-disabled,
|
|
1724
1723
|
.k-widget[disabled],
|
|
1725
1724
|
.k-disabled {
|
|
@@ -1734,8 +1733,7 @@ $display4-letter-spacing: null !default;
|
|
|
1734
1733
|
|
|
1735
1734
|
// Nested disabled
|
|
1736
1735
|
[disabled],
|
|
1737
|
-
.k-disabled
|
|
1738
|
-
.k-state-disabled {
|
|
1736
|
+
.k-disabled {
|
|
1739
1737
|
opacity: 1;
|
|
1740
1738
|
filter: grayscale(0);
|
|
1741
1739
|
}
|
|
@@ -4513,18 +4511,28 @@ $utils-border-radius: (
|
|
|
4513
4511
|
@include exports( "common/decoration/color" ) {
|
|
4514
4512
|
|
|
4515
4513
|
// sass-lint:disable-block no-important
|
|
4514
|
+
// sass-lint:disable-block class-name-format
|
|
4516
4515
|
// stylelint-disable block-opening-brace-space-before
|
|
4517
4516
|
|
|
4518
4517
|
.k-text-base,
|
|
4519
4518
|
.k-color-base {
|
|
4520
4519
|
color: $base-text;
|
|
4521
4520
|
}
|
|
4521
|
+
.\!k-text-base,
|
|
4522
|
+
.\!k-color-base {
|
|
4523
|
+
color: $base-text !important;
|
|
4524
|
+
}
|
|
4522
4525
|
|
|
4523
4526
|
.k-color-inherit { color: inherit; }
|
|
4527
|
+
.\!k-color-inherit { color: inherit !important; }
|
|
4524
4528
|
|
|
4525
4529
|
@each $name, $color in $kendo-theme-colors {
|
|
4526
4530
|
.k-text-#{$name},
|
|
4527
4531
|
.k-color-#{$name} {
|
|
4532
|
+
color: $color;
|
|
4533
|
+
}
|
|
4534
|
+
.\!k-text-#{$name},
|
|
4535
|
+
.\!k-color-#{$name} {
|
|
4528
4536
|
color: $color !important;
|
|
4529
4537
|
}
|
|
4530
4538
|
}
|
|
@@ -4535,63 +4543,19 @@ $utils-border-radius: (
|
|
|
4535
4543
|
@include exports( "common/decoration/background" ) {
|
|
4536
4544
|
|
|
4537
4545
|
// sass-lint:disable-block no-important
|
|
4546
|
+
// sass-lint:disable-block class-name-format
|
|
4538
4547
|
|
|
4539
4548
|
@each $name, $bg-color in $kendo-theme-colors {
|
|
4540
4549
|
.k-bg-#{$name} {
|
|
4550
|
+
background-color: $bg-color;
|
|
4551
|
+
}
|
|
4552
|
+
.\!k-bg-#{$name} {
|
|
4541
4553
|
background-color: $bg-color !important;
|
|
4542
4554
|
}
|
|
4543
4555
|
}
|
|
4544
4556
|
|
|
4545
4557
|
}
|
|
4546
4558
|
|
|
4547
|
-
|
|
4548
|
-
@mixin variant( $base ) {
|
|
4549
|
-
background-color: tint($base, 10);
|
|
4550
|
-
color: shade($base, 6);
|
|
4551
|
-
border-color: tint($base, 9);
|
|
4552
|
-
}
|
|
4553
|
-
|
|
4554
|
-
@include exports( "common/decoration/variant" ) {
|
|
4555
|
-
|
|
4556
|
-
@each $name, $variant in $kendo-theme-colors {
|
|
4557
|
-
.k-state-#{$name} {
|
|
4558
|
-
@include variant( $variant );
|
|
4559
|
-
}
|
|
4560
|
-
}
|
|
4561
|
-
}
|
|
4562
|
-
|
|
4563
|
-
|
|
4564
|
-
@include exports( "common/decoration/legacy" ) {
|
|
4565
|
-
|
|
4566
|
-
.k-info-colored {
|
|
4567
|
-
color: #50607f;
|
|
4568
|
-
border-color: #d0d9df;
|
|
4569
|
-
background-color: #f0f9ff;
|
|
4570
|
-
}
|
|
4571
|
-
|
|
4572
|
-
.k-success-colored {
|
|
4573
|
-
color: #507f50;
|
|
4574
|
-
border-color: #d0dfd0;
|
|
4575
|
-
background-color: #f0fff0;
|
|
4576
|
-
}
|
|
4577
|
-
|
|
4578
|
-
.k-error-colored {
|
|
4579
|
-
color: #7f5050;
|
|
4580
|
-
border-color: #dfd0d0;
|
|
4581
|
-
background-color: #fff0f0;
|
|
4582
|
-
}
|
|
4583
|
-
|
|
4584
|
-
.k-shadow {
|
|
4585
|
-
// Shadow moved to popup/_layout.scss due to variable flow
|
|
4586
|
-
// box-shadow: $popup-shadow;
|
|
4587
|
-
}
|
|
4588
|
-
|
|
4589
|
-
.k-inset {
|
|
4590
|
-
box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, .03), inset 0 4px 5px 0 rgba(0, 0, 0, .04);
|
|
4591
|
-
}
|
|
4592
|
-
|
|
4593
|
-
}
|
|
4594
|
-
|
|
4595
4559
|
// #endregion
|
|
4596
4560
|
|
|
4597
4561
|
// #endregion
|
|
@@ -8088,7 +8052,7 @@ $kendo-button-font-size-md: $font-size-md !default;
|
|
|
8088
8052
|
$kendo-button-line-height-md: $line-height-md !default;
|
|
8089
8053
|
|
|
8090
8054
|
$kendo-button-padding-x-lg: map-get( $spacing, 3 ) !default;
|
|
8091
|
-
$kendo-button-padding-y-lg: map-get( $spacing, 2 );
|
|
8055
|
+
$kendo-button-padding-y-lg: map-get( $spacing, 2 ) !default;
|
|
8092
8056
|
$kendo-button-font-size-lg: $font-size-lg !default;
|
|
8093
8057
|
$kendo-button-line-height-lg: $line-height-lg !default;
|
|
8094
8058
|
|
|
@@ -9178,8 +9142,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9178
9142
|
@include disabled( $disabled-styling );
|
|
9179
9143
|
|
|
9180
9144
|
[disabled] &,
|
|
9181
|
-
.k-disabled
|
|
9182
|
-
.k-state-disabled & {
|
|
9145
|
+
.k-disabled & {
|
|
9183
9146
|
opacity: 1;
|
|
9184
9147
|
filter: grayscale(0);
|
|
9185
9148
|
}
|
|
@@ -9200,8 +9163,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
9200
9163
|
@include disabled( $disabled-styling );
|
|
9201
9164
|
|
|
9202
9165
|
[disabled] &,
|
|
9203
|
-
.k-disabled
|
|
9204
|
-
.k-state-disabled & {
|
|
9166
|
+
.k-disabled & {
|
|
9205
9167
|
opacity: 1;
|
|
9206
9168
|
filter: grayscale(0);
|
|
9207
9169
|
}
|
|
@@ -10122,7 +10084,6 @@ $floating-label-focus-text: null !default;
|
|
|
10122
10084
|
width: auto;
|
|
10123
10085
|
}
|
|
10124
10086
|
|
|
10125
|
-
&.k-state-empty,
|
|
10126
10087
|
&.k-empty {
|
|
10127
10088
|
> .k-label {
|
|
10128
10089
|
top: $floating-label-offset-y;
|
|
@@ -10133,8 +10094,6 @@ $floating-label-focus-text: null !default;
|
|
|
10133
10094
|
}
|
|
10134
10095
|
|
|
10135
10096
|
> .k-label,
|
|
10136
|
-
// &:focus-within > .k-label,
|
|
10137
|
-
&.k-state-focused > .k-label,
|
|
10138
10097
|
&.k-focus > .k-label {
|
|
10139
10098
|
top: $floating-label-focus-offset-y;
|
|
10140
10099
|
left: $floating-label-focus-offset-x;
|
|
@@ -10146,7 +10105,6 @@ $floating-label-focus-text: null !default;
|
|
|
10146
10105
|
transform: scale( $floating-label-focus-scale );
|
|
10147
10106
|
}
|
|
10148
10107
|
|
|
10149
|
-
&.k-state-empty:not(.k-state-focused) ::placeholder,
|
|
10150
10108
|
&.k-empty:not(.k-focus):not(:focus-within) ::placeholder {
|
|
10151
10109
|
color: transparent;
|
|
10152
10110
|
}
|
|
@@ -10160,7 +10118,6 @@ $floating-label-focus-text: null !default;
|
|
|
10160
10118
|
transition: transform $floating-label-transition, color $floating-label-transition, top $floating-label-transition, right $floating-label-transition;
|
|
10161
10119
|
}
|
|
10162
10120
|
|
|
10163
|
-
&.k-state-empty,
|
|
10164
10121
|
&.k-empty {
|
|
10165
10122
|
> .k-label {
|
|
10166
10123
|
left: auto;
|
|
@@ -10169,8 +10126,6 @@ $floating-label-focus-text: null !default;
|
|
|
10169
10126
|
}
|
|
10170
10127
|
|
|
10171
10128
|
> .k-label,
|
|
10172
|
-
// &:focus-within > .k-label,
|
|
10173
|
-
&.k-state-focused > .k-label,
|
|
10174
10129
|
&.k-focus > .k-label {
|
|
10175
10130
|
left: auto;
|
|
10176
10131
|
right: $floating-label-focus-offset-x;
|
|
@@ -10201,8 +10156,7 @@ $floating-label-focus-text: null !default;
|
|
|
10201
10156
|
);
|
|
10202
10157
|
}
|
|
10203
10158
|
|
|
10204
|
-
&.k-focus > .k-label
|
|
10205
|
-
&.k-state-focused > .k-label {
|
|
10159
|
+
&.k-focus > .k-label {
|
|
10206
10160
|
@include fill(
|
|
10207
10161
|
$color: $floating-label-focus-text,
|
|
10208
10162
|
$bg: $floating-label-focus-bg
|
|
@@ -12558,8 +12512,11 @@ $loader-container-font-size-lg: $font-size-lg !default;
|
|
|
12558
12512
|
}
|
|
12559
12513
|
|
|
12560
12514
|
.k-loader-container-inner {
|
|
12561
|
-
|
|
12562
|
-
|
|
12515
|
+
// sass-lint:disable-block no-important
|
|
12516
|
+
// sass-lint:disable-block class-name-format
|
|
12517
|
+
.k-text-secondary,
|
|
12518
|
+
.\!k-text-secondary {
|
|
12519
|
+
color: $loader-secondary-bg !important;
|
|
12563
12520
|
}
|
|
12564
12521
|
}
|
|
12565
12522
|
|
|
@@ -13446,6 +13403,12 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13446
13403
|
align-items: center;
|
|
13447
13404
|
}
|
|
13448
13405
|
|
|
13406
|
+
// Template item
|
|
13407
|
+
.k-toolbar-item:focus {
|
|
13408
|
+
text-decoration: none;
|
|
13409
|
+
outline: 0;
|
|
13410
|
+
}
|
|
13411
|
+
|
|
13449
13412
|
}
|
|
13450
13413
|
|
|
13451
13414
|
|
|
@@ -13610,6 +13573,13 @@ $tooltip-error-border: $tooltip-error-bg !default;
|
|
|
13610
13573
|
}
|
|
13611
13574
|
|
|
13612
13575
|
|
|
13576
|
+
// Template item
|
|
13577
|
+
.k-toolbar-item:focus,
|
|
13578
|
+
.k-toolbar-item.k-focus {
|
|
13579
|
+
@include box-shadow( $kendo-button-focus-shadow );
|
|
13580
|
+
}
|
|
13581
|
+
|
|
13582
|
+
|
|
13613
13583
|
// Button group
|
|
13614
13584
|
.k-button-group {}
|
|
13615
13585
|
|
|
@@ -13870,7 +13840,7 @@ $form-spacer: $padding-x * 2 !default;
|
|
|
13870
13840
|
|
|
13871
13841
|
$form-font-size: $font-size !default;
|
|
13872
13842
|
$form-line-height: $line-height !default;
|
|
13873
|
-
$form-line-height-em: $form-line-height * 1em !default;
|
|
13843
|
+
$form-line-height-em: calc( #{$form-line-height} * 1em ) !default;
|
|
13874
13844
|
$form-line-height-sm: $line-height-sm !default;
|
|
13875
13845
|
$form-line-height-lg: $line-height-lg !default;
|
|
13876
13846
|
|
|
@@ -15207,7 +15177,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
15207
15177
|
|
|
15208
15178
|
|
|
15209
15179
|
// Selection
|
|
15210
|
-
> .k-state-selected,
|
|
15211
15180
|
> .k-selected {
|
|
15212
15181
|
border-width: 0;
|
|
15213
15182
|
border-style: solid;
|
|
@@ -15278,7 +15247,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
15278
15247
|
flex-direction: row;
|
|
15279
15248
|
}
|
|
15280
15249
|
|
|
15281
|
-
> .k-state-selected,
|
|
15282
15250
|
> .k-selected {
|
|
15283
15251
|
width: 0;
|
|
15284
15252
|
width: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
|
|
@@ -15305,7 +15273,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
15305
15273
|
// Horizontal reverse
|
|
15306
15274
|
&.k-progressbar-reverse {
|
|
15307
15275
|
|
|
15308
|
-
> .k-state-selected,
|
|
15309
15276
|
> .k-selected {
|
|
15310
15277
|
flex-direction: row-reverse;
|
|
15311
15278
|
justify-self: flex-end;
|
|
@@ -15330,7 +15297,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
15330
15297
|
writing-mode: vertical-lr;
|
|
15331
15298
|
}
|
|
15332
15299
|
|
|
15333
|
-
> .k-state-selected,
|
|
15334
15300
|
> .k-selected {
|
|
15335
15301
|
height: 0;
|
|
15336
15302
|
height: calc( var( --kendo-progressbar-progress, 0 ) * 1% ); // sass-lint:disable-line no-duplicate-properties
|
|
@@ -15360,7 +15326,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
15360
15326
|
&.k-progressbar-reverse {
|
|
15361
15327
|
flex-direction: column;
|
|
15362
15328
|
|
|
15363
|
-
> .k-state-selected,
|
|
15364
15329
|
> .k-selected {
|
|
15365
15330
|
flex-direction: column;
|
|
15366
15331
|
align-self: flex-start;
|
|
@@ -15372,7 +15337,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
15372
15337
|
// Indeterminate
|
|
15373
15338
|
.k-progressbar-indeterminate {
|
|
15374
15339
|
.k-progress-status-wrap,
|
|
15375
|
-
.k-state-selected,
|
|
15376
15340
|
.k-selected,
|
|
15377
15341
|
.k-item {
|
|
15378
15342
|
display: none;
|
|
@@ -15383,9 +15347,7 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
15383
15347
|
// Blazor specific
|
|
15384
15348
|
.telerik-blazor.k-progressbar-horizontal {
|
|
15385
15349
|
|
|
15386
|
-
> .k-state-selected,
|
|
15387
15350
|
> .k-selected,
|
|
15388
|
-
> .k-state-selected > .k-progress-status-wrap,
|
|
15389
15351
|
> .k-selected > .k-progress-status-wrap {
|
|
15390
15352
|
transition: width .1s ease-in-out;
|
|
15391
15353
|
}
|
|
@@ -15414,7 +15376,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
15414
15376
|
display: -ms-inline-grid;
|
|
15415
15377
|
|
|
15416
15378
|
> .k-progress-status-wrap,
|
|
15417
|
-
> .k-state-selected,
|
|
15418
15379
|
> .k-selected {
|
|
15419
15380
|
-ms-grid-column: 1;
|
|
15420
15381
|
-ms-grid-row: 1;
|
|
@@ -15424,7 +15385,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
15424
15385
|
-ms-grid-columns: 1fr;
|
|
15425
15386
|
-ms-grid-rows: $progressbar-height;
|
|
15426
15387
|
|
|
15427
|
-
&.k-progressbar-reverse > .k-state-selected,
|
|
15428
15388
|
&.k-progressbar-reverse > .k-selected {
|
|
15429
15389
|
-ms-grid-column-align: end;
|
|
15430
15390
|
}
|
|
@@ -15433,12 +15393,10 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
15433
15393
|
-ms-grid-columns: $progressbar-height;
|
|
15434
15394
|
-ms-grid-rows: 1fr;
|
|
15435
15395
|
|
|
15436
|
-
> .k-state-selected,
|
|
15437
15396
|
> .k-selected {
|
|
15438
15397
|
-ms-grid-row-align: end;
|
|
15439
15398
|
}
|
|
15440
15399
|
|
|
15441
|
-
&.k-progressbar-reverse > .k-state-selected,
|
|
15442
15400
|
&.k-progressbar-reverse > .k-selected {
|
|
15443
15401
|
-ms-grid-row-align: start;
|
|
15444
15402
|
}
|
|
@@ -15504,7 +15462,6 @@ $kendo-circular-progressbar-scale-stroke: $progressbar-bg !default;
|
|
|
15504
15462
|
.k-progressbar {
|
|
15505
15463
|
@include fill( $progressbar-text, $progressbar-bg, $progressbar-border, $progressbar-gradient );
|
|
15506
15464
|
|
|
15507
|
-
.k-state-selected,
|
|
15508
15465
|
.k-selected {
|
|
15509
15466
|
@include fill( $progressbar-fill-text, $progressbar-fill-bg, $progressbar-fill-border, $progressbar-fill-gradient );
|
|
15510
15467
|
}
|
|
@@ -15887,7 +15844,6 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
15887
15844
|
}
|
|
15888
15845
|
|
|
15889
15846
|
.k-radio:focus,
|
|
15890
|
-
.k-radio.k-state-focus,
|
|
15891
15847
|
.k-radio.k-focus {
|
|
15892
15848
|
box-shadow: none !important; // sass-lint:disable-line no-important
|
|
15893
15849
|
|
|
@@ -15951,7 +15907,6 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
15951
15907
|
|
|
15952
15908
|
// Hover state
|
|
15953
15909
|
.k-radio:hover,
|
|
15954
|
-
.k-radio.k-state-hover,
|
|
15955
15910
|
.k-radio.k-hover {
|
|
15956
15911
|
@include fill(
|
|
15957
15912
|
$kendo-radio-hover-text,
|
|
@@ -15963,7 +15918,6 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
15963
15918
|
|
|
15964
15919
|
// Focus state
|
|
15965
15920
|
.k-radio:focus,
|
|
15966
|
-
.k-radio.k-state-focus,
|
|
15967
15921
|
.k-radio.k-focus {
|
|
15968
15922
|
@include fill( $border: $kendo-radio-focus-border );
|
|
15969
15923
|
@include box-shadow( $kendo-radio-focus-shadow );
|
|
@@ -15972,13 +15926,11 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
15972
15926
|
|
|
15973
15927
|
// Invalid state
|
|
15974
15928
|
.k-radio.k-invalid,
|
|
15975
|
-
.k-radio.k-state-invalid,
|
|
15976
15929
|
.k-radio.ng-invalid.ng-touched,
|
|
15977
15930
|
.k-radio.ng-invalid.ng-dirty {
|
|
15978
15931
|
@include fill( $border: $kendo-radio-invalid-border );
|
|
15979
15932
|
}
|
|
15980
15933
|
.k-radio.k-invalid + .k-radio-label,
|
|
15981
|
-
.k-radio.k-state-invalid + .k-radio-label,
|
|
15982
15934
|
.k-radio.ng-invalid.ng-touched + .k-radio-label,
|
|
15983
15935
|
.k-radio.ng-invalid.ng-dirty + .k-radio-label {
|
|
15984
15936
|
@include fill( $color: $kendo-radio-invalid-text );
|
|
@@ -15995,7 +15947,6 @@ $kendo-radio-ripple-opacity: .25 !default;
|
|
|
15995
15947
|
);
|
|
15996
15948
|
}
|
|
15997
15949
|
.k-radio:checked:focus,
|
|
15998
|
-
.k-radio.k-checked.k-state-focus,
|
|
15999
15950
|
.k-radio.k-checked.k-focus {
|
|
16000
15951
|
@include fill( $border: $kendo-radio-focus-checked-border );
|
|
16001
15952
|
@include box-shadow( $kendo-radio-focus-checked-shadow );
|
|
@@ -16166,7 +16117,6 @@ $slider-disabled-opacity: null !default;
|
|
|
16166
16117
|
}
|
|
16167
16118
|
|
|
16168
16119
|
|
|
16169
|
-
&.k-state-disabled,
|
|
16170
16120
|
&.k-disabled {
|
|
16171
16121
|
.k-tick,
|
|
16172
16122
|
.k-slider-track,
|
|
@@ -16460,8 +16410,8 @@ $slider-disabled-opacity: null !default;
|
|
|
16460
16410
|
left: auto;
|
|
16461
16411
|
}
|
|
16462
16412
|
|
|
16463
|
-
.k-button .k-
|
|
16464
|
-
.k-button .k-
|
|
16413
|
+
.k-button-increase .k-icon,
|
|
16414
|
+
.k-button-decrease .k-icon {
|
|
16465
16415
|
transform: scaleX(-1);
|
|
16466
16416
|
}
|
|
16467
16417
|
}
|
|
@@ -16623,20 +16573,17 @@ $slider-disabled-opacity: null !default;
|
|
|
16623
16573
|
}
|
|
16624
16574
|
|
|
16625
16575
|
&:focus,
|
|
16626
|
-
&.k-state-focused,
|
|
16627
16576
|
&.k-focus {
|
|
16628
16577
|
@include box-shadow( $slider-draghandle-focused-shadow );
|
|
16629
16578
|
}
|
|
16630
16579
|
}
|
|
16631
16580
|
|
|
16632
|
-
&.k-state-focused,
|
|
16633
16581
|
&.k-focus {
|
|
16634
16582
|
.k-draghandle {
|
|
16635
16583
|
@include box-shadow( $slider-draghandle-focused-shadow );
|
|
16636
16584
|
}
|
|
16637
16585
|
}
|
|
16638
16586
|
|
|
16639
|
-
&.k-state-disabled,
|
|
16640
16587
|
&.k-disabled {
|
|
16641
16588
|
opacity: $slider-disabled-opacity;
|
|
16642
16589
|
}
|
|
@@ -17288,7 +17235,6 @@ $kendo-calendar-sizes: (
|
|
|
17288
17235
|
}
|
|
17289
17236
|
|
|
17290
17237
|
// // styles are applied to the k-link element inside
|
|
17291
|
-
// .k-state-selected,
|
|
17292
17238
|
// .k-selected {
|
|
17293
17239
|
// color: inherit;
|
|
17294
17240
|
// background: transparent;
|
|
@@ -17416,10 +17362,8 @@ $kendo-calendar-sizes: (
|
|
|
17416
17362
|
|
|
17417
17363
|
&:hover,
|
|
17418
17364
|
&.k-hover,
|
|
17419
|
-
&.k-state-hover,
|
|
17420
17365
|
&:focus,
|
|
17421
|
-
&.k-focus
|
|
17422
|
-
&.k-state-focus {
|
|
17366
|
+
&.k-focus {
|
|
17423
17367
|
color: $calendar-today-nav-hover-text;
|
|
17424
17368
|
}
|
|
17425
17369
|
}
|
|
@@ -17440,8 +17384,7 @@ $kendo-calendar-sizes: (
|
|
|
17440
17384
|
.k-calendar-cell-inner {
|
|
17441
17385
|
box-shadow: inset 0 0 0 1px $calendar-today-color;
|
|
17442
17386
|
}
|
|
17443
|
-
&.k-focus .k-calendar-cell-inner
|
|
17444
|
-
&.k-state-focused .k-calendar-cell-inner {
|
|
17387
|
+
&.k-focus .k-calendar-cell-inner {
|
|
17445
17388
|
box-shadow: inset 0 0 0 1px $calendar-today-color, $calendar-cell-focused-shadow;
|
|
17446
17389
|
}
|
|
17447
17390
|
} @else if $calendar-today-style == color {
|
|
@@ -17475,8 +17418,7 @@ $kendo-calendar-sizes: (
|
|
|
17475
17418
|
|
|
17476
17419
|
// Interactive states
|
|
17477
17420
|
.k-calendar-td:hover .k-calendar-cell-inner,
|
|
17478
|
-
.k-calendar-td.k-hover .k-calendar-cell-inner
|
|
17479
|
-
.k-calendar-td.k-state-hover .k-calendar-cell-inner {
|
|
17421
|
+
.k-calendar-td.k-hover .k-calendar-cell-inner {
|
|
17480
17422
|
@include fill(
|
|
17481
17423
|
$calendar-cell-hover-text,
|
|
17482
17424
|
$calendar-cell-hover-bg,
|
|
@@ -17484,8 +17426,7 @@ $kendo-calendar-sizes: (
|
|
|
17484
17426
|
$calendar-cell-hover-gradient
|
|
17485
17427
|
);
|
|
17486
17428
|
}
|
|
17487
|
-
.k-calendar-td.k-selected .k-calendar-cell-inner
|
|
17488
|
-
.k-calendar-td.k-state-selected .k-calendar-cell-inner {
|
|
17429
|
+
.k-calendar-td.k-selected .k-calendar-cell-inner {
|
|
17489
17430
|
@include fill(
|
|
17490
17431
|
$calendar-cell-selected-text,
|
|
17491
17432
|
$calendar-cell-selected-bg,
|
|
@@ -17494,8 +17435,7 @@ $kendo-calendar-sizes: (
|
|
|
17494
17435
|
);
|
|
17495
17436
|
}
|
|
17496
17437
|
.k-calendar-td.k-selected:hover .k-calendar-cell-inner,
|
|
17497
|
-
.k-calendar-td.k-selected.k-hover .k-calendar-cell-inner
|
|
17498
|
-
.k-calendar-td.k-state-selected:hover .k-calendar-cell-inner {
|
|
17438
|
+
.k-calendar-td.k-selected.k-hover .k-calendar-cell-inner {
|
|
17499
17439
|
@include fill(
|
|
17500
17440
|
$calendar-cell-selected-hover-text,
|
|
17501
17441
|
$calendar-cell-selected-hover-bg,
|
|
@@ -17504,14 +17444,11 @@ $kendo-calendar-sizes: (
|
|
|
17504
17444
|
);
|
|
17505
17445
|
}
|
|
17506
17446
|
.k-calendar-td:focus .k-calendar-cell-inner,
|
|
17507
|
-
.k-calendar-td.k-focus .k-calendar-cell-inner
|
|
17508
|
-
.k-calendar-td.k-state-focus .k-calendar-cell-inner,
|
|
17509
|
-
.k-calendar-td.k-state-focused .k-calendar-cell-inner {
|
|
17447
|
+
.k-calendar-td.k-focus .k-calendar-cell-inner {
|
|
17510
17448
|
box-shadow: $calendar-cell-focused-shadow;
|
|
17511
17449
|
}
|
|
17512
17450
|
.k-calendar-td.k-selected:focus .k-calendar-cell-inner,
|
|
17513
|
-
.k-calendar-td.k-selected.k-focus .k-calendar-cell-inner
|
|
17514
|
-
.k-calendar-td.k-state-selected.k-state-focus .k-calendar-cell-inner {
|
|
17451
|
+
.k-calendar-td.k-selected.k-focus .k-calendar-cell-inner {
|
|
17515
17452
|
box-shadow: $calendar-cell-selected-focus-shadow;
|
|
17516
17453
|
}
|
|
17517
17454
|
|
|
@@ -17525,8 +17462,7 @@ $kendo-calendar-sizes: (
|
|
|
17525
17462
|
box-shadow: inset -1px 0 $calendar-navigation-border;
|
|
17526
17463
|
|
|
17527
17464
|
li:hover,
|
|
17528
|
-
li.k-hover
|
|
17529
|
-
li.k-state-hover {
|
|
17465
|
+
li.k-hover {
|
|
17530
17466
|
color: $calendar-today-nav-hover-text;
|
|
17531
17467
|
}
|
|
17532
17468
|
}
|
|
@@ -17549,7 +17485,6 @@ $kendo-calendar-sizes: (
|
|
|
17549
17485
|
// Invalid
|
|
17550
17486
|
&.k-invalid,
|
|
17551
17487
|
&.k-invalid:hover,
|
|
17552
|
-
&.k-state-invalid,
|
|
17553
17488
|
&.ng-invalid.ng-touched,
|
|
17554
17489
|
&.ng-invalid.ng-dirty {
|
|
17555
17490
|
border-color: $invalid-border;
|
|
@@ -17597,9 +17532,7 @@ $kendo-calendar-sizes: (
|
|
|
17597
17532
|
}
|
|
17598
17533
|
|
|
17599
17534
|
.k-range-start.k-active,
|
|
17600
|
-
.k-range-
|
|
17601
|
-
.k-range-end.k-active,
|
|
17602
|
-
.k-range-end.k-state-active {
|
|
17535
|
+
.k-range-end.k-active {
|
|
17603
17536
|
.k-calendar-cell-inner {
|
|
17604
17537
|
box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, .2);
|
|
17605
17538
|
}
|
|
@@ -17835,7 +17768,6 @@ $kendo-time-selector-sizes: (
|
|
|
17835
17768
|
display: block;
|
|
17836
17769
|
}
|
|
17837
17770
|
|
|
17838
|
-
&.k-state-focused,
|
|
17839
17771
|
&.k-focus {
|
|
17840
17772
|
&::before,
|
|
17841
17773
|
&::after {
|
|
@@ -18010,7 +17942,6 @@ $kendo-time-selector-sizes: (
|
|
|
18010
17942
|
color: $time-list-title-text;
|
|
18011
17943
|
}
|
|
18012
17944
|
|
|
18013
|
-
&.k-state-focused,
|
|
18014
17945
|
&.k-focus {
|
|
18015
17946
|
.k-title {
|
|
18016
17947
|
color: $time-list-title-focus-text;
|
|
@@ -18328,18 +18259,14 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
18328
18259
|
-ms-high-contrast-adjust: none;
|
|
18329
18260
|
|
|
18330
18261
|
&:hover,
|
|
18331
|
-
&.k-state-hover,
|
|
18332
18262
|
&.k-hover {
|
|
18333
18263
|
position: relative;
|
|
18334
18264
|
z-index: 101;
|
|
18335
18265
|
}
|
|
18336
18266
|
|
|
18337
18267
|
&:focus,
|
|
18338
|
-
&.k-state-focus,
|
|
18339
18268
|
&.k-focus,
|
|
18340
|
-
&.k-state-selected,
|
|
18341
18269
|
&.k-selected,
|
|
18342
|
-
&.k-state-selected:hover,
|
|
18343
18270
|
&.k-selected:hover {
|
|
18344
18271
|
position: relative;
|
|
18345
18272
|
z-index: 100;
|
|
@@ -18359,20 +18286,15 @@ $colorpalette-tile-selected-shadow: 0 1px 3px 1px rgba( black, .3 ), inset 0 0 0
|
|
|
18359
18286
|
.k-colorpalette-tile {
|
|
18360
18287
|
|
|
18361
18288
|
&:focus,
|
|
18362
|
-
&.k-state-focus,
|
|
18363
18289
|
&.k-focus {
|
|
18364
18290
|
@include box-shadow( $colorpalette-tile-focus-shadow );
|
|
18365
18291
|
}
|
|
18366
18292
|
|
|
18367
18293
|
&:hover,
|
|
18368
|
-
&.k-state-hover,
|
|
18369
18294
|
&.k-hover {
|
|
18370
18295
|
@include box-shadow( $colorpalette-tile-hover-shadow );
|
|
18371
18296
|
}
|
|
18372
18297
|
|
|
18373
|
-
&.k-state-selected,
|
|
18374
|
-
&.k-selected,
|
|
18375
|
-
&.k-state-selected:hover,
|
|
18376
18298
|
&.k-selected,
|
|
18377
18299
|
&.k-selected:hover {
|
|
18378
18300
|
@include box-shadow( $colorpalette-tile-selected-shadow );
|
|
@@ -18706,7 +18628,7 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 1.5 ) !default;
|
|
|
18706
18628
|
}
|
|
18707
18629
|
|
|
18708
18630
|
// Needed for the double check icons
|
|
18709
|
-
.k-
|
|
18631
|
+
.k-icon + .k-icon {
|
|
18710
18632
|
margin-left: -13px;
|
|
18711
18633
|
}
|
|
18712
18634
|
}
|
|
@@ -18752,7 +18674,6 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 1.5 ) !default;
|
|
|
18752
18674
|
}
|
|
18753
18675
|
|
|
18754
18676
|
.k-colorgradient:focus,
|
|
18755
|
-
.k-colorgradient.k-state-focus,
|
|
18756
18677
|
.k-colorgradient.k-focus {
|
|
18757
18678
|
@include fill( $border: $colorgradient-focus-border );
|
|
18758
18679
|
@include box-shadow( $colorgradient-focus-shadow );
|
|
@@ -18773,16 +18694,15 @@ $colorgradient-contrast-spacer: ( $colorgradient-spacer / 1.5 ) !default;
|
|
|
18773
18694
|
@include box-shadow( $colorgradient-draghandle-shadow );
|
|
18774
18695
|
|
|
18775
18696
|
&:focus,
|
|
18776
|
-
&.k-state-focus,
|
|
18777
18697
|
&.k-focus {
|
|
18778
18698
|
@include fill( $bg: transparent, $border: $white );
|
|
18779
18699
|
@include box-shadow( $colorgradient-draghandle-focus-shadow );
|
|
18780
18700
|
}
|
|
18781
18701
|
|
|
18782
|
-
&:active,
|
|
18783
18702
|
&:hover,
|
|
18784
|
-
&.k-
|
|
18785
|
-
&.k-
|
|
18703
|
+
&.k-hover,
|
|
18704
|
+
&.k-active,
|
|
18705
|
+
&:active {
|
|
18786
18706
|
@include fill( $bg: transparent, $border: $white );
|
|
18787
18707
|
@include box-shadow( $colorgradient-draghandle-hover-shadow );
|
|
18788
18708
|
}
|
|
@@ -18978,7 +18898,6 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
|
|
|
18978
18898
|
}
|
|
18979
18899
|
|
|
18980
18900
|
.k-coloreditor:focus,
|
|
18981
|
-
.k-coloreditor.k-state-focus,
|
|
18982
18901
|
.k-coloreditor.k-focus {
|
|
18983
18902
|
@include fill( $border: $coloreditor-focus-border );
|
|
18984
18903
|
@include box-shadow( $coloreditor-focus-shadow );
|
|
@@ -20273,7 +20192,7 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
20273
20192
|
box-sizing: border-box;
|
|
20274
20193
|
}
|
|
20275
20194
|
|
|
20276
|
-
&.k-
|
|
20195
|
+
&.k-readonly {
|
|
20277
20196
|
pointer-events: none;
|
|
20278
20197
|
}
|
|
20279
20198
|
}
|
|
@@ -20353,7 +20272,6 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
20353
20272
|
color: $component-text;
|
|
20354
20273
|
|
|
20355
20274
|
&:focus,
|
|
20356
|
-
&.k-state-focused,
|
|
20357
20275
|
&.k-focus {
|
|
20358
20276
|
|
|
20359
20277
|
.k-rating-item {
|
|
@@ -20361,7 +20279,6 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
20361
20279
|
text-shadow: $rating-icon-focused-shadow;
|
|
20362
20280
|
}
|
|
20363
20281
|
|
|
20364
|
-
&.k-state-selected > .k-icon,
|
|
20365
20282
|
&.k-selected > .k-icon {
|
|
20366
20283
|
text-shadow: $rating-icon-focused-selected-shadow;
|
|
20367
20284
|
}
|
|
@@ -20372,19 +20289,16 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
20372
20289
|
.k-rating-item {
|
|
20373
20290
|
color: $rating-icon-text;
|
|
20374
20291
|
|
|
20375
|
-
&.k-state-selected,
|
|
20376
20292
|
&.k-selected {
|
|
20377
20293
|
color: $rating-icon-selected-text;
|
|
20378
20294
|
|
|
20379
20295
|
&:focus,
|
|
20380
|
-
&.k-state-focused,
|
|
20381
20296
|
&.k-focus {
|
|
20382
20297
|
color: $rating-icon-focused-text;
|
|
20383
20298
|
}
|
|
20384
20299
|
}
|
|
20385
20300
|
|
|
20386
20301
|
&:hover,
|
|
20387
|
-
&.k-state-hover,
|
|
20388
20302
|
&.k-hover {
|
|
20389
20303
|
color: $rating-icon-hover-text;
|
|
20390
20304
|
cursor: pointer;
|
|
@@ -20392,7 +20306,6 @@ $rating-icon-focused-selected-shadow: 0 2px 4px rgba( $black, .1) !default;
|
|
|
20392
20306
|
}
|
|
20393
20307
|
}
|
|
20394
20308
|
|
|
20395
|
-
|
|
20396
20309
|
// #endregion
|
|
20397
20310
|
|
|
20398
20311
|
// #endregion
|
|
@@ -21616,7 +21529,6 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
21616
21529
|
z-index: 1;
|
|
21617
21530
|
}
|
|
21618
21531
|
input[disabled],
|
|
21619
|
-
input.k-state-disabled,
|
|
21620
21532
|
input.k-disabled {
|
|
21621
21533
|
visibility: hidden;
|
|
21622
21534
|
}
|
|
@@ -21664,12 +21576,10 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
21664
21576
|
|
|
21665
21577
|
.k-file {
|
|
21666
21578
|
|
|
21667
|
-
&.k-state-focused,
|
|
21668
21579
|
&.k-focus {
|
|
21669
21580
|
box-shadow: inset $upload-focused-shadow;
|
|
21670
21581
|
}
|
|
21671
21582
|
|
|
21672
|
-
.k-upload-action.k-state-focused,
|
|
21673
21583
|
.k-upload-action.k-focus {
|
|
21674
21584
|
box-shadow: $upload-focused-shadow;
|
|
21675
21585
|
}
|
|
@@ -21761,7 +21671,6 @@ $upload-focused-shadow: 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
21761
21671
|
}
|
|
21762
21672
|
|
|
21763
21673
|
// Invalid,
|
|
21764
|
-
&.k-state-invalid,
|
|
21765
21674
|
&.k-invalid,
|
|
21766
21675
|
&.ng-invalid.ng-touched,
|
|
21767
21676
|
&.ng-invalid.ng-dirty {
|
|
@@ -22796,7 +22705,6 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22796
22705
|
|
|
22797
22706
|
// Hover state
|
|
22798
22707
|
&:hover,
|
|
22799
|
-
&.k-state-hover,
|
|
22800
22708
|
&.k-hover {
|
|
22801
22709
|
@include fill(
|
|
22802
22710
|
$actionsheet-item-hover-text,
|
|
@@ -22810,7 +22718,6 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22810
22718
|
|
|
22811
22719
|
// Focus state
|
|
22812
22720
|
&:focus,
|
|
22813
|
-
&.k-state-focus,
|
|
22814
22721
|
&.k-focus {
|
|
22815
22722
|
@include fill(
|
|
22816
22723
|
$actionsheet-item-focus-text,
|
|
@@ -22824,7 +22731,6 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
22824
22731
|
|
|
22825
22732
|
// Disabed state
|
|
22826
22733
|
&:disabled,
|
|
22827
|
-
&.k-state-disabled,
|
|
22828
22734
|
&.k-disabled {
|
|
22829
22735
|
@include fill(
|
|
22830
22736
|
$actionsheet-item-disabled-text,
|
|
@@ -23069,7 +22975,6 @@ $actionsheet-item-disabled-shadow: null !default;
|
|
|
23069
22975
|
|
|
23070
22976
|
.k-window {
|
|
23071
22977
|
&:focus,
|
|
23072
|
-
&.k-state-focused,
|
|
23073
22978
|
&.k-focus {
|
|
23074
22979
|
@include box-shadow( $window-focused-shadow );
|
|
23075
22980
|
}
|
|
@@ -23554,33 +23459,28 @@ $drawer-selected-hover-text: $selected-hover-text !default;
|
|
|
23554
23459
|
.k-drawer-item {
|
|
23555
23460
|
|
|
23556
23461
|
&:hover,
|
|
23557
|
-
&.k-state-hover,
|
|
23558
23462
|
&.k-hover {
|
|
23559
23463
|
color: $drawer-hovered-text;
|
|
23560
23464
|
background-color: $drawer-hovered-bg;
|
|
23561
23465
|
}
|
|
23562
23466
|
|
|
23563
23467
|
&:focus,
|
|
23564
|
-
&.k-state-focused,
|
|
23565
23468
|
&.k-focus {
|
|
23566
23469
|
background-color: $drawer-focused-bg;
|
|
23567
23470
|
box-shadow: $drawer-focused-shadow;
|
|
23568
23471
|
|
|
23569
23472
|
&:hover,
|
|
23570
|
-
&.k-state-hover,
|
|
23571
23473
|
&.k-hover {
|
|
23572
23474
|
color: $drawer-hovered-text;
|
|
23573
23475
|
background-color: $drawer-hovered-bg;
|
|
23574
23476
|
}
|
|
23575
23477
|
}
|
|
23576
23478
|
|
|
23577
|
-
&.k-state-selected,
|
|
23578
23479
|
&.k-selected {
|
|
23579
23480
|
color: $drawer-selected-text;
|
|
23580
23481
|
background-color: $drawer-selected-bg;
|
|
23581
23482
|
|
|
23582
23483
|
&:hover,
|
|
23583
|
-
&.k-state-hover,
|
|
23584
23484
|
&.k-hover {
|
|
23585
23485
|
color: $drawer-selected-hover-text;
|
|
23586
23486
|
background-color: $drawer-selected-hover-bg;
|
|
@@ -23711,7 +23611,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
23711
23611
|
flex: none;
|
|
23712
23612
|
}
|
|
23713
23613
|
|
|
23714
|
-
> .k-i-close
|
|
23614
|
+
> .k-i-close,
|
|
23615
|
+
> .k-i-x {
|
|
23715
23616
|
margin-right: 0;
|
|
23716
23617
|
margin-left: $notification-icon-spacing;
|
|
23717
23618
|
flex: none;
|
|
@@ -23734,7 +23635,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
23734
23635
|
margin-left: $notification-icon-spacing;
|
|
23735
23636
|
}
|
|
23736
23637
|
|
|
23737
|
-
> .k-i-close
|
|
23638
|
+
> .k-i-close,
|
|
23639
|
+
> .k-i-x {
|
|
23738
23640
|
margin-left: 0;
|
|
23739
23641
|
margin-right: $notification-icon-spacing;
|
|
23740
23642
|
}
|
|
@@ -23759,7 +23661,8 @@ $kendo-notification-theme: notification-theme( $kendo-notification-theme-colors
|
|
|
23759
23661
|
);
|
|
23760
23662
|
}
|
|
23761
23663
|
.k-notification-wrap {
|
|
23762
|
-
> .k-i-close
|
|
23664
|
+
> .k-i-close,
|
|
23665
|
+
> .k-i-x {
|
|
23763
23666
|
color: inherit;
|
|
23764
23667
|
}
|
|
23765
23668
|
}
|
|
@@ -24320,8 +24223,7 @@ $card-callout-height: 20px !default;
|
|
|
24320
24223
|
}
|
|
24321
24224
|
|
|
24322
24225
|
&:focus,
|
|
24323
|
-
&.k-focus
|
|
24324
|
-
&.k-state-focus {
|
|
24226
|
+
&.k-focus {
|
|
24325
24227
|
@include fill(
|
|
24326
24228
|
$card-focus-text,
|
|
24327
24229
|
$card-focus-bg,
|
|
@@ -24330,8 +24232,7 @@ $card-callout-height: 20px !default;
|
|
|
24330
24232
|
@include box-shadow( $card-focus-shadow );
|
|
24331
24233
|
}
|
|
24332
24234
|
|
|
24333
|
-
&.k-selected
|
|
24334
|
-
&.k-state-selected {
|
|
24235
|
+
&.k-selected {
|
|
24335
24236
|
@include box-shadow( $card-focus-shadow );
|
|
24336
24237
|
}
|
|
24337
24238
|
}
|
|
@@ -24383,10 +24284,8 @@ $card-callout-height: 20px !default;
|
|
|
24383
24284
|
|
|
24384
24285
|
|
|
24385
24286
|
.k-card-wrap {
|
|
24386
|
-
&.k-state-focused,
|
|
24387
|
-
&.k-focus,
|
|
24388
24287
|
&:focus,
|
|
24389
|
-
&.k-
|
|
24288
|
+
&.k-focus,
|
|
24390
24289
|
&.k-selected {
|
|
24391
24290
|
> .k-card {
|
|
24392
24291
|
@include box-shadow( $card-focus-shadow );
|
|
@@ -24820,7 +24719,6 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
24820
24719
|
outline: 0;
|
|
24821
24720
|
}
|
|
24822
24721
|
}
|
|
24823
|
-
.k-bottom-nav-item.k-state-disabled,
|
|
24824
24722
|
.k-bottom-nav-item.k-disabled {
|
|
24825
24723
|
background-color: initial;
|
|
24826
24724
|
}
|
|
@@ -24867,15 +24765,11 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
24867
24765
|
$bg: $color
|
|
24868
24766
|
);
|
|
24869
24767
|
|
|
24870
|
-
.k-bottom-nav-item.k-state-focus,
|
|
24871
|
-
.k-bottom-nav-item.k-focus,
|
|
24872
|
-
.k-bottom-nav-item.k-state-focused,
|
|
24873
24768
|
.k-bottom-nav-item.k-focus,
|
|
24874
24769
|
.k-bottom-nav-item:focus {
|
|
24875
24770
|
@include fill( $bg: rgba(true-mix( $color, contrast-wcag( $color ), 35%), .2));
|
|
24876
24771
|
}
|
|
24877
24772
|
|
|
24878
|
-
.k-bottom-nav-item.k-state-selected,
|
|
24879
24773
|
.k-bottom-nav-item.k-selected {
|
|
24880
24774
|
@include fill( $color: contrast-wcag( $color ) );
|
|
24881
24775
|
}
|
|
@@ -24890,16 +24784,12 @@ $bottom-nav-flat-border: $component-border !default;
|
|
|
24890
24784
|
$bottom-nav-flat-border
|
|
24891
24785
|
);
|
|
24892
24786
|
|
|
24893
|
-
.k-bottom-nav-item.k-state-focus,
|
|
24894
|
-
.k-bottom-nav-item.k-focus,
|
|
24895
|
-
.k-bottom-nav-item.k-state-focused,
|
|
24896
24787
|
.k-bottom-nav-item.k-focus,
|
|
24897
24788
|
.k-bottom-nav-item:focus {
|
|
24898
24789
|
@include fill( $bg: rgba($bottom-nav-flat-text, .05) );
|
|
24899
24790
|
}
|
|
24900
24791
|
|
|
24901
24792
|
@each $name, $color in $kendo-theme-colors {
|
|
24902
|
-
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-state-selected,
|
|
24903
24793
|
&.k-bottom-nav-#{$name} .k-bottom-nav-item.k-selected {
|
|
24904
24794
|
@if $name == "secondary" or $name == "light" {
|
|
24905
24795
|
@include fill( $color: try-shade($color, 3) );
|
|
@@ -25160,7 +25050,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
25160
25050
|
);
|
|
25161
25051
|
|
|
25162
25052
|
&:focus,
|
|
25163
|
-
&.k-state-focused,
|
|
25164
25053
|
&.k-focus {
|
|
25165
25054
|
@include box-shadow( $breadcrumb-focused-shadow );
|
|
25166
25055
|
}
|
|
@@ -25177,7 +25066,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
25177
25066
|
|
|
25178
25067
|
// Hovered state
|
|
25179
25068
|
&:hover,
|
|
25180
|
-
&.k-state-hover,
|
|
25181
25069
|
&.k-hover {
|
|
25182
25070
|
@include fill(
|
|
25183
25071
|
$breadcrumb-link-hovered-text,
|
|
@@ -25188,7 +25076,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
25188
25076
|
|
|
25189
25077
|
// Focused state
|
|
25190
25078
|
&:focus,
|
|
25191
|
-
&.k-state-focused,
|
|
25192
25079
|
&.k-focus {
|
|
25193
25080
|
@include fill(
|
|
25194
25081
|
$breadcrumb-link-focused-text,
|
|
@@ -25210,7 +25097,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
25210
25097
|
|
|
25211
25098
|
// Hovered state
|
|
25212
25099
|
&:hover,
|
|
25213
|
-
&.k-state-hover,
|
|
25214
25100
|
&.k-hover {
|
|
25215
25101
|
@include fill(
|
|
25216
25102
|
$breadcrumb-root-link-hovered-text,
|
|
@@ -25221,7 +25107,6 @@ $breadcrumb-focused-shadow: 0 0 2px 1px rgba(0, 0, 0, .06) !default;
|
|
|
25221
25107
|
|
|
25222
25108
|
// Focused state
|
|
25223
25109
|
&:focus,
|
|
25224
|
-
&.k-state-focused,
|
|
25225
25110
|
&.k-focus {
|
|
25226
25111
|
@include fill(
|
|
25227
25112
|
$breadcrumb-root-link-focused-text,
|
|
@@ -25371,7 +25256,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
25371
25256
|
|
|
25372
25257
|
// Focused state
|
|
25373
25258
|
&:focus,
|
|
25374
|
-
&.k-state-focus,
|
|
25375
25259
|
&.k-focus {
|
|
25376
25260
|
z-index: 3;
|
|
25377
25261
|
}
|
|
@@ -25380,6 +25264,10 @@ $pager-dropdown-width: 5em !default;
|
|
|
25380
25264
|
.k-rtl &,
|
|
25381
25265
|
&[dir="rtl"],
|
|
25382
25266
|
[dir="rtl"] & {
|
|
25267
|
+
.k-i-caret-alt-to-left,
|
|
25268
|
+
.k-i-caret-alt-to-right,
|
|
25269
|
+
.k-i-caret-alt-left,
|
|
25270
|
+
.k-i-caret-alt-right,
|
|
25383
25271
|
.k-i-arrow-end-left,
|
|
25384
25272
|
.k-i-arrow-60-left,
|
|
25385
25273
|
.k-i-arrow-60-right,
|
|
@@ -25421,7 +25309,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
25421
25309
|
&:hover {
|
|
25422
25310
|
z-index: 2;
|
|
25423
25311
|
}
|
|
25424
|
-
&.k-state-disabled,
|
|
25425
25312
|
&.k-disabled {
|
|
25426
25313
|
color: inherit;
|
|
25427
25314
|
}
|
|
@@ -25471,7 +25358,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
25471
25358
|
}
|
|
25472
25359
|
|
|
25473
25360
|
// Selected state
|
|
25474
|
-
.k-state-selected,
|
|
25475
25361
|
.k-selected {
|
|
25476
25362
|
cursor: inherit;
|
|
25477
25363
|
z-index: 2;
|
|
@@ -25619,9 +25505,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
25619
25505
|
);
|
|
25620
25506
|
|
|
25621
25507
|
&:focus,
|
|
25622
|
-
&.k-focus,
|
|
25623
|
-
&.k-state-focus,
|
|
25624
|
-
&.k-state-focused,
|
|
25625
25508
|
&.k-focus {
|
|
25626
25509
|
@include fill( $bg: $pager-focus-bg );
|
|
25627
25510
|
@include box-shadow( $pager-focus-shadow );
|
|
@@ -25637,7 +25520,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
25637
25520
|
);
|
|
25638
25521
|
|
|
25639
25522
|
&:hover,
|
|
25640
|
-
&.k-state-hover,
|
|
25641
25523
|
&.k-hover {
|
|
25642
25524
|
@include fill(
|
|
25643
25525
|
$pager-item-hover-text,
|
|
@@ -25646,7 +25528,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
25646
25528
|
);
|
|
25647
25529
|
}
|
|
25648
25530
|
|
|
25649
|
-
&.k-state-selected,
|
|
25650
25531
|
&.k-selected {
|
|
25651
25532
|
@include fill(
|
|
25652
25533
|
$pager-item-selected-text,
|
|
@@ -25656,7 +25537,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
25656
25537
|
}
|
|
25657
25538
|
|
|
25658
25539
|
&:focus,
|
|
25659
|
-
&.k-state-focus,
|
|
25660
25540
|
&.k-focus {
|
|
25661
25541
|
background-color: $pager-item-focus-bg;
|
|
25662
25542
|
@include box-shadow( $pager-item-focus-shadow );
|
|
@@ -25680,7 +25560,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
25680
25560
|
);
|
|
25681
25561
|
|
|
25682
25562
|
&:hover,
|
|
25683
|
-
&.k-state-hover,
|
|
25684
25563
|
&.k-hover {
|
|
25685
25564
|
@include fill(
|
|
25686
25565
|
$pager-number-hover-text,
|
|
@@ -25690,13 +25569,11 @@ $pager-dropdown-width: 5em !default;
|
|
|
25690
25569
|
}
|
|
25691
25570
|
|
|
25692
25571
|
&:focus,
|
|
25693
|
-
&.k-state-focus,
|
|
25694
25572
|
&.k-focus {
|
|
25695
25573
|
background-color: $pager-number-focus-bg;
|
|
25696
25574
|
@include box-shadow( $pager-number-focus-shadow );
|
|
25697
25575
|
}
|
|
25698
25576
|
|
|
25699
|
-
&.k-state-selected,
|
|
25700
25577
|
&.k-selected {
|
|
25701
25578
|
@include fill(
|
|
25702
25579
|
$pager-number-selected-text,
|
|
@@ -25729,7 +25606,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
25729
25606
|
);
|
|
25730
25607
|
|
|
25731
25608
|
&:hover,
|
|
25732
|
-
&.k-state-hover,
|
|
25733
25609
|
&.k-hover {
|
|
25734
25610
|
@include fill(
|
|
25735
25611
|
$dropdownlist-hovered-text,
|
|
@@ -25739,7 +25615,7 @@ $pager-dropdown-width: 5em !default;
|
|
|
25739
25615
|
}
|
|
25740
25616
|
}
|
|
25741
25617
|
|
|
25742
|
-
&.k-
|
|
25618
|
+
&.k-expanded {
|
|
25743
25619
|
@include fill(
|
|
25744
25620
|
$popup-text,
|
|
25745
25621
|
$popup-bg,
|
|
@@ -25750,7 +25626,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
25750
25626
|
.k-link {
|
|
25751
25627
|
|
|
25752
25628
|
&:hover,
|
|
25753
|
-
&.k-state-hover,
|
|
25754
25629
|
&.k-hover {
|
|
25755
25630
|
@include fill(
|
|
25756
25631
|
$kendo-list-item-hover-text,
|
|
@@ -25758,7 +25633,6 @@ $pager-dropdown-width: 5em !default;
|
|
|
25758
25633
|
);
|
|
25759
25634
|
}
|
|
25760
25635
|
|
|
25761
|
-
&.k-state-selected,
|
|
25762
25636
|
&.k-selected {
|
|
25763
25637
|
@include fill(
|
|
25764
25638
|
$kendo-list-item-selected-text,
|
|
@@ -26361,7 +26235,6 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
26361
26235
|
$bg: $stepper-progressbar-bg
|
|
26362
26236
|
);
|
|
26363
26237
|
|
|
26364
|
-
.k-state-selected,
|
|
26365
26238
|
.k-selected {
|
|
26366
26239
|
@include fill(
|
|
26367
26240
|
$color: $stepper-progressbar-fill-text,
|
|
@@ -26612,13 +26485,11 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26612
26485
|
position: relative;
|
|
26613
26486
|
z-index: 1;
|
|
26614
26487
|
|
|
26615
|
-
&.k-state-active,
|
|
26616
26488
|
&.k-active {
|
|
26617
26489
|
display: block;
|
|
26618
26490
|
}
|
|
26619
26491
|
|
|
26620
26492
|
&:focus,
|
|
26621
|
-
&.k-state-focused,
|
|
26622
26493
|
&.k-focus {
|
|
26623
26494
|
outline-width: 1px;
|
|
26624
26495
|
outline-style: dotted;
|
|
@@ -26707,7 +26578,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26707
26578
|
margin-left: $tabstrip-item-gap;
|
|
26708
26579
|
}
|
|
26709
26580
|
|
|
26710
|
-
.k-item.k-state-active,
|
|
26711
26581
|
.k-item.k-active {
|
|
26712
26582
|
border-bottom-color: transparent;
|
|
26713
26583
|
}
|
|
@@ -26737,7 +26607,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26737
26607
|
margin-left: $tabstrip-item-gap;
|
|
26738
26608
|
}
|
|
26739
26609
|
|
|
26740
|
-
.k-item.k-state-active,
|
|
26741
26610
|
.k-item.k-active {
|
|
26742
26611
|
border-top-color: transparent;
|
|
26743
26612
|
}
|
|
@@ -26771,7 +26640,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26771
26640
|
margin-top: $tabstrip-item-gap;
|
|
26772
26641
|
}
|
|
26773
26642
|
|
|
26774
|
-
.k-item.k-state-active,
|
|
26775
26643
|
.k-item.k-active {
|
|
26776
26644
|
border-right-color: transparent;
|
|
26777
26645
|
}
|
|
@@ -26807,7 +26675,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26807
26675
|
margin-top: $tabstrip-item-gap;
|
|
26808
26676
|
}
|
|
26809
26677
|
|
|
26810
|
-
.k-item.k-state-active,
|
|
26811
26678
|
.k-item.k-active {
|
|
26812
26679
|
border-left-color: transparent;
|
|
26813
26680
|
}
|
|
@@ -26853,7 +26720,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26853
26720
|
border-left-width: $tabstrip-indicator-size;
|
|
26854
26721
|
}
|
|
26855
26722
|
}
|
|
26856
|
-
.k-item.k-state-active::after,
|
|
26857
26723
|
.k-item.k-active::after {
|
|
26858
26724
|
display: block;
|
|
26859
26725
|
}
|
|
@@ -26927,7 +26793,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26927
26793
|
);
|
|
26928
26794
|
|
|
26929
26795
|
&:hover,
|
|
26930
|
-
&.k-state-hover,
|
|
26931
26796
|
&.k-hover {
|
|
26932
26797
|
@include fill(
|
|
26933
26798
|
$tabstrip-item-hovered-text,
|
|
@@ -26938,9 +26803,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26938
26803
|
}
|
|
26939
26804
|
|
|
26940
26805
|
&:active,
|
|
26941
|
-
&.k-state-active,
|
|
26942
26806
|
&.k-active,
|
|
26943
|
-
&.k-state-selected,
|
|
26944
26807
|
&.k-selected {
|
|
26945
26808
|
@include fill(
|
|
26946
26809
|
$tabstrip-item-selected-text,
|
|
@@ -26951,7 +26814,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26951
26814
|
}
|
|
26952
26815
|
|
|
26953
26816
|
&:focus,
|
|
26954
|
-
&.k-state-focused,
|
|
26955
26817
|
&.k-focus {
|
|
26956
26818
|
@include box-shadow( $tabstrip-item-focused-shadow );
|
|
26957
26819
|
}
|
|
@@ -26974,7 +26836,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26974
26836
|
);
|
|
26975
26837
|
|
|
26976
26838
|
&:focus,
|
|
26977
|
-
&.k-state-focused,
|
|
26978
26839
|
&.k-focus {
|
|
26979
26840
|
outline-color: $tabstrip-content-border-focused;
|
|
26980
26841
|
}
|
|
@@ -26985,7 +26846,6 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26985
26846
|
@if ($tabstrip-indicator-size) {
|
|
26986
26847
|
|
|
26987
26848
|
.k-tabstrip-items-wrapper {
|
|
26988
|
-
.k-item.k-state-active::after,
|
|
26989
26849
|
.k-item.k-active::after {
|
|
26990
26850
|
border-color: $tabstrip-indicator-color;
|
|
26991
26851
|
}
|
|
@@ -27079,7 +26939,6 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
27079
26939
|
justify-content: space-between;
|
|
27080
26940
|
|
|
27081
26941
|
&:focus,
|
|
27082
|
-
&.k-state-focused,
|
|
27083
26942
|
&.k-focus {
|
|
27084
26943
|
outline-width: 1px;
|
|
27085
26944
|
outline-style: dotted;
|
|
@@ -27174,20 +27033,20 @@ $wizard-focused-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
27174
27033
|
// #region @import "_theme.scss"; -> packages/classic/scss/wizard/_theme.scss
|
|
27175
27034
|
// #region @import "~@progress/kendo-theme-default/scss/wizard/_theme.scss"; -> packages/classic/node_modules/@progress/kendo-theme-default/scss/wizard/_theme.scss
|
|
27176
27035
|
@include exports("wizard/theme") {
|
|
27036
|
+
|
|
27177
27037
|
.k-wizard-step {
|
|
27178
27038
|
&:focus,
|
|
27179
|
-
&.k-state-focused,
|
|
27180
27039
|
&.k-focus {
|
|
27181
27040
|
outline-color: $wizard-step-border-focused;
|
|
27182
27041
|
}
|
|
27183
27042
|
|
|
27184
27043
|
.k-ie &:focus,
|
|
27185
|
-
.k-ie &.k-state-focused,
|
|
27186
27044
|
.k-ie &.k-focus {
|
|
27187
27045
|
@include box-shadow($wizard-focused-shadow);
|
|
27188
27046
|
outline: none;
|
|
27189
27047
|
}
|
|
27190
27048
|
}
|
|
27049
|
+
|
|
27191
27050
|
}
|
|
27192
27051
|
|
|
27193
27052
|
// #endregion
|
|
@@ -27353,7 +27212,6 @@ $expander-content-padding-y: $padding-y * 4 !default;
|
|
|
27353
27212
|
$expander-border
|
|
27354
27213
|
);
|
|
27355
27214
|
|
|
27356
|
-
&.k-state-focus,
|
|
27357
27215
|
&.k-focus {
|
|
27358
27216
|
box-shadow: $expander-focus-shadow;
|
|
27359
27217
|
}
|
|
@@ -27368,13 +27226,10 @@ $expander-content-padding-y: $padding-y * 4 !default;
|
|
|
27368
27226
|
outline: none;
|
|
27369
27227
|
|
|
27370
27228
|
&:hover,
|
|
27371
|
-
&.k-state-hover,
|
|
27372
27229
|
&.k-hover {
|
|
27373
27230
|
background-color: $expander-header-hover-bg;
|
|
27374
27231
|
}
|
|
27375
27232
|
|
|
27376
|
-
// Should be removed
|
|
27377
|
-
&.k-state-focused,
|
|
27378
27233
|
&.k-focus {
|
|
27379
27234
|
background-color: $expander-header-focused-bg;
|
|
27380
27235
|
box-shadow: $expander-header-focused-shadow;
|
|
@@ -27621,6 +27476,10 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27621
27476
|
}
|
|
27622
27477
|
}
|
|
27623
27478
|
|
|
27479
|
+
// Panelbar item
|
|
27480
|
+
.k-panelbar-item {
|
|
27481
|
+
outline-style: none;
|
|
27482
|
+
}
|
|
27624
27483
|
|
|
27625
27484
|
// Panelbar content
|
|
27626
27485
|
.k-panelbar-content {
|
|
@@ -27722,7 +27581,6 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27722
27581
|
> .k-item,
|
|
27723
27582
|
> .k-panelbar-header {
|
|
27724
27583
|
|
|
27725
|
-
&.k-state-expanded.k-level-0 > .k-link,
|
|
27726
27584
|
&.k-expanded.k-level-0 > .k-link {
|
|
27727
27585
|
@include fill(
|
|
27728
27586
|
$panelbar-header-expanded-text,
|
|
@@ -27749,7 +27607,6 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27749
27607
|
|
|
27750
27608
|
// Hover
|
|
27751
27609
|
> .k-link:hover,
|
|
27752
|
-
> .k-link.k-state-hover,
|
|
27753
27610
|
> .k-link.k-hover {
|
|
27754
27611
|
@include fill(
|
|
27755
27612
|
$panelbar-header-hovered-text,
|
|
@@ -27761,9 +27618,6 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27761
27618
|
|
|
27762
27619
|
// Focus
|
|
27763
27620
|
> .k-link:focus,
|
|
27764
|
-
> .k-link.k-state-focus,
|
|
27765
|
-
> .k-link.k-focus,
|
|
27766
|
-
> .k-link.k-state-focused,
|
|
27767
27621
|
> .k-link.k-focus {
|
|
27768
27622
|
@include fill(
|
|
27769
27623
|
$panelbar-header-focused-text,
|
|
@@ -27776,7 +27630,6 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27776
27630
|
|
|
27777
27631
|
// Focus & Hover
|
|
27778
27632
|
> .k-link:focus:hover,
|
|
27779
|
-
> .k-link.k-state-focus.k-state-hover,
|
|
27780
27633
|
> .k-link.k-focus.k-hover {
|
|
27781
27634
|
@include fill(
|
|
27782
27635
|
$panelbar-header-hovered-focused-text,
|
|
@@ -27787,7 +27640,6 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27787
27640
|
}
|
|
27788
27641
|
|
|
27789
27642
|
// Selected
|
|
27790
|
-
> .k-link.k-state-selected,
|
|
27791
27643
|
> .k-link.k-selected {
|
|
27792
27644
|
@include fill(
|
|
27793
27645
|
$panelbar-header-selected-text,
|
|
@@ -27803,9 +27655,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27803
27655
|
}
|
|
27804
27656
|
|
|
27805
27657
|
// Selected Hover
|
|
27806
|
-
> .k-link.k-state-selected:hover,
|
|
27807
27658
|
> .k-link.k-selected:hover,
|
|
27808
|
-
> .k-link.k-state-selected.k-state-hover,
|
|
27809
27659
|
> .k-link.k-selected.k-hover {
|
|
27810
27660
|
@include fill(
|
|
27811
27661
|
$panelbar-header-selected-hovered-text,
|
|
@@ -27816,12 +27666,8 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27816
27666
|
}
|
|
27817
27667
|
|
|
27818
27668
|
// Selected Focus
|
|
27819
|
-
> .k-link.k-state-selected:focus,
|
|
27820
27669
|
> .k-link.k-selected:focus,
|
|
27821
|
-
> .k-link.k-
|
|
27822
|
-
> .k-link.k-selected.k-focus,
|
|
27823
|
-
> .k-link.k-state-selected.k-state-focused,
|
|
27824
|
-
> .k-link.k-selected.k-focused {
|
|
27670
|
+
> .k-link.k-selected.k-focus {
|
|
27825
27671
|
@include fill(
|
|
27826
27672
|
$panelbar-header-selected-focused-text,
|
|
27827
27673
|
$panelbar-header-selected-focused-bg,
|
|
@@ -27831,12 +27677,8 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27831
27677
|
}
|
|
27832
27678
|
|
|
27833
27679
|
// Selected Focus & Hover
|
|
27834
|
-
> .k-link.k-state-selected:hover:focus,
|
|
27835
27680
|
> .k-link.k-selected:hover:focus,
|
|
27836
|
-
> .k-link.k-
|
|
27837
|
-
> .k-link.k-selected.k-hover.k-state-focus,
|
|
27838
|
-
> .k-link.k-state-selected.k-state-hover.k-state-focused,
|
|
27839
|
-
> .k-link.k-selected.k-hover.k-state-focused {
|
|
27681
|
+
> .k-link.k-selected.k-hover.k-focus {
|
|
27840
27682
|
@include fill(
|
|
27841
27683
|
$panelbar-header-selected-hovered-focused-text,
|
|
27842
27684
|
$panelbar-header-selected-hovered-focused-bg,
|
|
@@ -27853,10 +27695,8 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27853
27695
|
|
|
27854
27696
|
// Hover
|
|
27855
27697
|
> .k-item > .k-link:hover,
|
|
27856
|
-
> .k-item > .k-link.k-state-hover,
|
|
27857
27698
|
> .k-item > .k-link.k-hover,
|
|
27858
27699
|
> .k-panelbar-item > .k-link:hover,
|
|
27859
|
-
> .k-panelbar-item > .k-link.k-state-hover,
|
|
27860
27700
|
> .k-panelbar-item > .k-link.k-hover {
|
|
27861
27701
|
@include fill(
|
|
27862
27702
|
$panelbar-item-hovered-text,
|
|
@@ -27868,14 +27708,8 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27868
27708
|
|
|
27869
27709
|
// Focus
|
|
27870
27710
|
> .k-item > .k-link:focus,
|
|
27871
|
-
> .k-item > .k-link.k-state-focus,
|
|
27872
|
-
> .k-item > .k-link.k-focus,
|
|
27873
|
-
> .k-item > .k-link.k-state-focused,
|
|
27874
27711
|
> .k-item > .k-link.k-focus,
|
|
27875
27712
|
> .k-panelbar-item > .k-link:focus,
|
|
27876
|
-
> .k-panelbar-item > .k-link.k-state-focus,
|
|
27877
|
-
> .k-panelbar-item > .k-link.k-focus,
|
|
27878
|
-
> .k-panelbar-item > .k-link.k-state-focused,
|
|
27879
27713
|
> .k-panelbar-item > .k-link.k-focus {
|
|
27880
27714
|
@include fill(
|
|
27881
27715
|
$panelbar-item-focused-text,
|
|
@@ -27888,10 +27722,8 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27888
27722
|
|
|
27889
27723
|
// Focus & Hover
|
|
27890
27724
|
> .k-item > .k-link:focus:hover,
|
|
27891
|
-
> .k-item > .k-link.k-state-focus.k-state-hover,
|
|
27892
27725
|
> .k-item > .k-link.k-focus.k-hover,
|
|
27893
27726
|
> .k-panelbar-item > .k-link:focus:hover,
|
|
27894
|
-
> .k-panelbar-item > .k-link.k-state-focus.k-state-hover,
|
|
27895
27727
|
> .k-panelbar-item > .k-link.k-focus.k-hover {
|
|
27896
27728
|
@include fill(
|
|
27897
27729
|
$panelbar-item-hovered-focused-text,
|
|
@@ -27902,9 +27734,7 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27902
27734
|
}
|
|
27903
27735
|
|
|
27904
27736
|
// Selected
|
|
27905
|
-
> .k-item > .k-link.k-state-selected,
|
|
27906
27737
|
> .k-item > .k-link.k-selected,
|
|
27907
|
-
> .k-panelbar-item > .k-link.k-state-selected,
|
|
27908
27738
|
> .k-panelbar-item > .k-link.k-selected {
|
|
27909
27739
|
@include fill(
|
|
27910
27740
|
$panelbar-item-selected-text,
|
|
@@ -27915,13 +27745,9 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27915
27745
|
}
|
|
27916
27746
|
|
|
27917
27747
|
// Selected Hover
|
|
27918
|
-
> .k-item > .k-link.k-state-selected:hover,
|
|
27919
27748
|
> .k-item > .k-link.k-selected:hover,
|
|
27920
|
-
> .k-item > .k-link.k-state-selected.k-state-hover,
|
|
27921
27749
|
> .k-item > .k-link.k-selected.k-hover,
|
|
27922
|
-
> .k-panelbar-item > .k-link.k-state-selected:hover,
|
|
27923
27750
|
> .k-panelbar-item > .k-link.k-selected:hover,
|
|
27924
|
-
> .k-panelbar-item > .k-link.k-state-selected.k-state-hover,
|
|
27925
27751
|
> .k-panelbar-item > .k-link.k-selected.k-hover {
|
|
27926
27752
|
@include fill(
|
|
27927
27753
|
$panelbar-item-selected-hovered-text,
|
|
@@ -27932,18 +27758,10 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27932
27758
|
}
|
|
27933
27759
|
|
|
27934
27760
|
// Selected Focus
|
|
27935
|
-
> .k-item > .k-link.k-state-selected:focus,
|
|
27936
27761
|
> .k-item > .k-link.k-selected:focus,
|
|
27937
|
-
> .k-item > .k-link.k-state-selected.k-state-focus,
|
|
27938
27762
|
> .k-item > .k-link.k-selected.k-focus,
|
|
27939
|
-
> .k-item > .k-link.k-state-selected.k-state-focused,
|
|
27940
|
-
> .k-item > .k-link.k-selected.k-focused,
|
|
27941
|
-
> .k-panelbar-item > .k-link.k-state-selected:focus,
|
|
27942
27763
|
> .k-panelbar-item > .k-link.k-selected:focus,
|
|
27943
|
-
> .k-panelbar-item > .k-link.k-
|
|
27944
|
-
> .k-panelbar-item > .k-link.k-selected.k-focus,
|
|
27945
|
-
> .k-item > .k-link.k-state-selected.k-state-focused,
|
|
27946
|
-
> .k-item > .k-link.k-selected.k-focused {
|
|
27764
|
+
> .k-panelbar-item > .k-link.k-selected.k-focus {
|
|
27947
27765
|
@include fill(
|
|
27948
27766
|
$panelbar-item-selected-focused-text,
|
|
27949
27767
|
$panelbar-item-selected-focused-bg,
|
|
@@ -27953,18 +27771,10 @@ $panelbar-header-expanded-gradient: null !default;
|
|
|
27953
27771
|
}
|
|
27954
27772
|
|
|
27955
27773
|
// Selected Focus & Hover
|
|
27956
|
-
> .k-item > .k-link.k-state-selected:focus:hover,
|
|
27957
27774
|
> .k-item > .k-link.k-selected:focus:hover,
|
|
27958
|
-
> .k-item > .k-link.k-
|
|
27959
|
-
> .k-item > .k-link.k-selected.k-focus.k-state-hover,
|
|
27960
|
-
> .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover,
|
|
27961
|
-
> .k-item > .k-link.k-selected.k-focused.k-state-hover,
|
|
27962
|
-
> .k-panelbar-item > .k-link.k-state-selected:focus:hover,
|
|
27775
|
+
> .k-item > .k-link.k-selected.k-focus.k-hover,
|
|
27963
27776
|
> .k-panelbar-item > .k-link.k-selected:focus:hover,
|
|
27964
|
-
> .k-panelbar-item > .k-link.k-
|
|
27965
|
-
> .k-panelbar-item > .k-link.k-selected.k-focus.k-state-hover,
|
|
27966
|
-
> .k-item > .k-link.k-state-selected.k-state-focused.k-state-hover,
|
|
27967
|
-
> .k-item > .k-link.k-selected.k-focused.k-state-hover {
|
|
27777
|
+
> .k-panelbar-item > .k-link.k-selected.k-focus.k-hover {
|
|
27968
27778
|
@include fill(
|
|
27969
27779
|
$panelbar-item-selected-hovered-focused-text,
|
|
27970
27780
|
$panelbar-item-selected-hovered-focused-bg,
|
|
@@ -28202,7 +28012,7 @@ $splitbar-selected-text: $selected-text !default;
|
|
|
28202
28012
|
|
|
28203
28013
|
.k-pane,
|
|
28204
28014
|
.k-pane-flex {
|
|
28205
|
-
&.k-
|
|
28015
|
+
&.k-hidden,
|
|
28206
28016
|
&[hidden] {
|
|
28207
28017
|
// sass-lint:disable-block no-important
|
|
28208
28018
|
// hidden panes need to be zero-width to allow pane animation
|
|
@@ -28251,7 +28061,6 @@ $splitbar-selected-text: $selected-text !default;
|
|
|
28251
28061
|
background-color: $splitbar-bg;
|
|
28252
28062
|
}
|
|
28253
28063
|
.k-splitbar:hover,
|
|
28254
|
-
.k-splitbar.k-state-hover,
|
|
28255
28064
|
.k-splitbar.k-hover,
|
|
28256
28065
|
.k-splitbar-horizontal-hover,
|
|
28257
28066
|
.k-splitbar-vertical-hover {
|
|
@@ -28259,9 +28068,6 @@ $splitbar-selected-text: $selected-text !default;
|
|
|
28259
28068
|
background-color: $splitbar-hover-bg;
|
|
28260
28069
|
}
|
|
28261
28070
|
.k-splitbar:focus,
|
|
28262
|
-
.k-splitbar.k-state-focus,
|
|
28263
|
-
.k-splitbar.k-focus,
|
|
28264
|
-
.k-splitbar.k-state-focused,
|
|
28265
28071
|
.k-splitbar.k-focus {
|
|
28266
28072
|
color: $splitbar-selected-text;
|
|
28267
28073
|
background: $splitbar-selected-bg;
|
|
@@ -28372,9 +28178,6 @@ $tilelayout-hint-border: $component-border !default;
|
|
|
28372
28178
|
}
|
|
28373
28179
|
|
|
28374
28180
|
.k-tilelayout-item:focus,
|
|
28375
|
-
.k-tilelayout-item.k-focus,
|
|
28376
|
-
.k-tilelayout-item.k-state-focus,
|
|
28377
|
-
.k-tilelayout-item.k-state-focused,
|
|
28378
28181
|
.k-tilelayout-item.k-focus {
|
|
28379
28182
|
@include box-shadow($tilelayout-card-focus-shadow);
|
|
28380
28183
|
}
|
|
@@ -28790,7 +28593,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
28790
28593
|
border-radius: 50%;
|
|
28791
28594
|
}
|
|
28792
28595
|
|
|
28793
|
-
.k-i-reload
|
|
28596
|
+
.k-i-reload,
|
|
28597
|
+
.k-i-arrow-rotate-cw {
|
|
28794
28598
|
font-size: 1em;
|
|
28795
28599
|
margin-right: .5em;
|
|
28796
28600
|
}
|
|
@@ -29053,12 +28857,10 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
29053
28857
|
|
|
29054
28858
|
.k-column-menu {
|
|
29055
28859
|
|
|
29056
|
-
.k-listgroup-item.k-state-selected,
|
|
29057
28860
|
.k-listgroup-item.k-selected {
|
|
29058
28861
|
color: $adaptive-grid-sort-text;
|
|
29059
28862
|
background: none;
|
|
29060
28863
|
}
|
|
29061
|
-
.k-listgroup-item.k-state-selected .k-link,
|
|
29062
28864
|
.k-listgroup-item.k-selected .k-link {
|
|
29063
28865
|
color: inherit;
|
|
29064
28866
|
}
|
|
@@ -29804,7 +29606,9 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
29804
29606
|
|
|
29805
29607
|
.k-cell-inner > .k-link > .k-icon {
|
|
29806
29608
|
&.k-i-sort-desc-sm,
|
|
29807
|
-
&.k-i-sort-asc-sm
|
|
29609
|
+
&.k-i-sort-asc-sm,
|
|
29610
|
+
&.k-i-sort-asc-small,
|
|
29611
|
+
&.k-i-sort-desc-small {
|
|
29808
29612
|
vertical-align: text-top;
|
|
29809
29613
|
margin-inline-start: $grid-sorted-icon-spacing;
|
|
29810
29614
|
}
|
|
@@ -30683,33 +30487,28 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30683
30487
|
}
|
|
30684
30488
|
|
|
30685
30489
|
// Hover state
|
|
30686
|
-
tbody>tr:not(.k-detail-row):hover,
|
|
30687
|
-
tbody>tr:not(.k-detail-row).k-
|
|
30688
|
-
tbody>tr:not(.k-detail-row).k-hover {
|
|
30490
|
+
tbody > tr:not(.k-detail-row):hover,
|
|
30491
|
+
tbody > tr:not(.k-detail-row).k-hover {
|
|
30689
30492
|
color: $grid-hovered-text;
|
|
30690
30493
|
background-color: $grid-hovered-bg;
|
|
30691
30494
|
}
|
|
30692
30495
|
|
|
30693
30496
|
// Selected state
|
|
30694
|
-
td.k-state-selected,
|
|
30695
30497
|
td.k-selected,
|
|
30696
|
-
tr.k-state-selected > td,
|
|
30697
30498
|
tr.k-selected > td {
|
|
30698
30499
|
color: $grid-selected-text;
|
|
30699
30500
|
background-color: $grid-selected-bg;
|
|
30700
30501
|
}
|
|
30701
30502
|
|
|
30702
30503
|
// Focused state
|
|
30703
|
-
td
|
|
30504
|
+
td:focus,
|
|
30704
30505
|
td.k-focus,
|
|
30705
|
-
th.k-state-focused,
|
|
30706
|
-
th.k-focus,
|
|
30707
30506
|
th:focus,
|
|
30507
|
+
th.k-focus,
|
|
30708
30508
|
.k-master-row > td:focus,
|
|
30709
30509
|
.k-grouping-row > td:focus,
|
|
30710
30510
|
.k-detail-row > td:focus,
|
|
30711
30511
|
.k-group-footer > td:focus,
|
|
30712
|
-
.k-grid-pager.k-state-focused,
|
|
30713
30512
|
.k-grid-pager.k-focus {
|
|
30714
30513
|
box-shadow: $grid-focused-shadow;
|
|
30715
30514
|
}
|
|
@@ -30753,20 +30552,16 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30753
30552
|
}
|
|
30754
30553
|
|
|
30755
30554
|
// Selected state
|
|
30756
|
-
.k-state-selected td,
|
|
30757
30555
|
.k-selected td {
|
|
30758
30556
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
30759
30557
|
}
|
|
30760
30558
|
|
|
30761
|
-
.k-state-selected.k-alt td,
|
|
30762
30559
|
.k-selected.k-alt td {
|
|
30763
30560
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
30764
30561
|
}
|
|
30765
30562
|
|
|
30766
30563
|
// Selected hover
|
|
30767
|
-
.k-state-selected:hover td,
|
|
30768
30564
|
.k-selected:hover td,
|
|
30769
|
-
.k-state-selected.k-state-hover td,
|
|
30770
30565
|
.k-selected.k-hover td {
|
|
30771
30566
|
@include fill( $bg: $grid-sticky-selected-hovered-bg );
|
|
30772
30567
|
}
|
|
@@ -30795,6 +30590,8 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30795
30590
|
|
|
30796
30591
|
.k-i-sort-asc-sm,
|
|
30797
30592
|
.k-i-sort-desc-sm,
|
|
30593
|
+
.k-i-sort-asc-small,
|
|
30594
|
+
.k-i-sort-desc-small,
|
|
30798
30595
|
.k-sort-order {
|
|
30799
30596
|
color: $grid-sorting-indicator-text;
|
|
30800
30597
|
}
|
|
@@ -30808,12 +30605,9 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30808
30605
|
background-color: $kendo-button-hover-bg;
|
|
30809
30606
|
}
|
|
30810
30607
|
&:focus,
|
|
30811
|
-
&.k-
|
|
30812
|
-
&.k-focus,
|
|
30813
|
-
&.k-state-border-down {
|
|
30608
|
+
&.k-focus {
|
|
30814
30609
|
box-shadow: inset 0 0 0 2px rgba( 0, 0, 0, .1 );
|
|
30815
30610
|
}
|
|
30816
|
-
&.k-state-active,
|
|
30817
30611
|
&.k-active {
|
|
30818
30612
|
color: $selected-text;
|
|
30819
30613
|
background-color: $selected-bg;
|
|
@@ -30869,20 +30663,14 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30869
30663
|
}
|
|
30870
30664
|
|
|
30871
30665
|
// Selected state
|
|
30872
|
-
&.k-state-selected .k-grid-content-sticky,
|
|
30873
30666
|
&.k-selected .k-grid-content-sticky,
|
|
30874
|
-
&.k-state-selected .k-grid-row-sticky,
|
|
30875
30667
|
&.k-selected .k-grid-row-sticky,
|
|
30876
|
-
td.k-grid-content-sticky.k-state-selected,
|
|
30877
30668
|
td.k-grid-content-sticky.k-selected {
|
|
30878
30669
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
30879
30670
|
}
|
|
30880
30671
|
|
|
30881
|
-
&.k-state-selected.k-alt .k-grid-content-sticky,
|
|
30882
30672
|
&.k-selected.k-alt .k-grid-content-sticky,
|
|
30883
|
-
&.k-state-selected.k-alt .k-grid-row-sticky,
|
|
30884
30673
|
&.k-selected.k-alt .k-grid-row-sticky,
|
|
30885
|
-
&.k-alt td.k-grid-content-sticky.k-state-selected,
|
|
30886
30674
|
&.k-alt td.k-grid-content-sticky.k-selected {
|
|
30887
30675
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
30888
30676
|
}
|
|
@@ -30891,26 +30679,18 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30891
30679
|
// Hovered state
|
|
30892
30680
|
&:hover .k-grid-content-sticky,
|
|
30893
30681
|
&:hover .k-grid-row-sticky,
|
|
30894
|
-
&.k-state-hover .k-grid-content-sticky,
|
|
30895
30682
|
&.k-hover .k-grid-content-sticky,
|
|
30896
|
-
&.k-state-hover .k-grid-row-sticky,
|
|
30897
30683
|
&.k-hover .k-grid-row-sticky {
|
|
30898
30684
|
background-color: $grid-sticky-hovered-bg;
|
|
30899
30685
|
}
|
|
30900
30686
|
|
|
30901
30687
|
|
|
30902
30688
|
// Selected hover
|
|
30903
|
-
&.k-state-selected:hover .k-grid-content-sticky,
|
|
30904
30689
|
&.k-selected:hover .k-grid-content-sticky,
|
|
30905
|
-
&.k-state-selected:hover .k-grid-row-sticky,
|
|
30906
30690
|
&.k-selected:hover .k-grid-row-sticky,
|
|
30907
|
-
&.k-state-selected.k-state-hover .k-grid-content-sticky,
|
|
30908
30691
|
&.k-selected.k-hover .k-grid-content-sticky,
|
|
30909
|
-
&.k-state-selected.k-state-hover .k-grid-row-sticky,
|
|
30910
30692
|
&.k-selected.k-hover .k-grid-row-sticky,
|
|
30911
|
-
&:hover td.k-grid-content-sticky.k-state-selected,
|
|
30912
30693
|
&:hover td.k-grid-content-sticky.k-selected,
|
|
30913
|
-
&.k-state-hover td.k-grid-content-sticky.k-state-selected,
|
|
30914
30694
|
&.k-hover td.k-grid-content-sticky.k-selected {
|
|
30915
30695
|
background-color: $grid-sticky-selected-hovered-bg;
|
|
30916
30696
|
}
|
|
@@ -30924,7 +30704,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30924
30704
|
background-color: $grid-sticky-bg;
|
|
30925
30705
|
|
|
30926
30706
|
&:hover,
|
|
30927
|
-
&.k-state-hover,
|
|
30928
30707
|
&.k-hover {
|
|
30929
30708
|
background-color: $grid-sticky-hovered-bg;
|
|
30930
30709
|
}
|
|
@@ -30938,7 +30717,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30938
30717
|
}
|
|
30939
30718
|
|
|
30940
30719
|
&:hover td,
|
|
30941
|
-
&.k-state-hover td,
|
|
30942
30720
|
&.k-hover td {
|
|
30943
30721
|
background-color: $grid-sticky-hovered-bg;
|
|
30944
30722
|
}
|
|
@@ -30950,66 +30728,43 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
30950
30728
|
}
|
|
30951
30729
|
|
|
30952
30730
|
// Selected state
|
|
30953
|
-
tr.k-state-selected .k-grid-content-sticky,
|
|
30954
30731
|
tr.k-selected .k-grid-content-sticky,
|
|
30955
|
-
.k-state-selected.k-grid-row-sticky td,
|
|
30956
30732
|
.k-selected.k-grid-row-sticky td,
|
|
30957
|
-
.k-grid-row-sticky td.k-state-selected,
|
|
30958
30733
|
.k-grid-row-sticky td.k-selected,
|
|
30959
|
-
.k-state-selected.k-grid-content-sticky,
|
|
30960
30734
|
.k-selected.k-grid-content-sticky {
|
|
30961
30735
|
@include fill( $bg: $grid-sticky-selected-bg );
|
|
30962
30736
|
}
|
|
30963
30737
|
|
|
30964
|
-
tr.k-state-selected.k-alt .k-grid-content-sticky,
|
|
30965
30738
|
tr.k-selected.k-alt .k-grid-content-sticky,
|
|
30966
|
-
.k-state-selected.k-alt.k-grid-row-sticky td,
|
|
30967
30739
|
.k-selected.k-alt.k-grid-row-sticky td,
|
|
30968
|
-
.k-alt .k-state-selected.k-grid-content-sticky,
|
|
30969
30740
|
.k-alt .k-selected.k-grid-content-sticky {
|
|
30970
30741
|
@include fill( $bg: $grid-sticky-selected-alt-bg );
|
|
30971
30742
|
}
|
|
30972
30743
|
|
|
30973
30744
|
// Hover state
|
|
30974
30745
|
tr:hover .k-grid-content-sticky,
|
|
30975
|
-
tr.k-state-hover .k-grid-content-sticky,
|
|
30976
30746
|
tr.k-hover .k-grid-content-sticky,
|
|
30977
30747
|
.k-grid-row-sticky:hover td,
|
|
30978
|
-
.k-grid-row-sticky.k-state-hover td,
|
|
30979
30748
|
.k-grid-row-sticky.k-hover td,
|
|
30980
30749
|
.k-grid-row-sticky.k-alt:hover td,
|
|
30981
|
-
.k-grid-row-sticky.k-alt.k-state-hover td,
|
|
30982
30750
|
.k-grid-row-sticky.k-alt.k-hover td,
|
|
30983
30751
|
.k-alt:hover .k-grid-content-sticky,
|
|
30984
|
-
.k-alt.k-state-hover .k-grid-content-sticky,
|
|
30985
30752
|
.k-alt.k-hover .k-grid-content-sticky {
|
|
30986
30753
|
background-color: $grid-sticky-hovered-bg;
|
|
30987
30754
|
}
|
|
30988
30755
|
|
|
30989
30756
|
// Selected + Hover
|
|
30990
|
-
tr.k-state-selected:hover .k-grid-content-sticky,
|
|
30991
30757
|
tr.k-selected:hover .k-grid-content-sticky,
|
|
30992
|
-
tr.k-state-selected.k-state-hover .k-grid-content-sticky,
|
|
30993
30758
|
tr.k-selected.k-hover .k-grid-content-sticky,
|
|
30994
|
-
.k-state-selected.k-grid-row-sticky:hover td,
|
|
30995
30759
|
.k-selected.k-grid-row-sticky:hover td,
|
|
30996
|
-
.k-state-selected.k-grid-row-sticky.k-state-hover td,
|
|
30997
30760
|
.k-selected.k-grid-row-sticky.k-hover td,
|
|
30998
|
-
.k-state-selected.k-alt.k-grid-row-sticky:hover td,
|
|
30999
30761
|
.k-selected.k-alt.k-grid-row-sticky:hover td,
|
|
31000
|
-
.k-state-selected.k-alt.k-grid-row-sticky.k-state-hover td,
|
|
31001
30762
|
.k-selected.k-alt.k-grid-row-sticky.k-hover td,
|
|
31002
|
-
tr.k-state-selected.k-alt:hover .k-grid-content-sticky,
|
|
31003
30763
|
tr.k-selected.k-alt:hover .k-grid-content-sticky,
|
|
31004
|
-
tr.k-state-selected.k-alt.k-state-hover .k-grid-content-sticky,
|
|
31005
30764
|
tr.k-selected.k-alt.k-hover .k-grid-content-sticky,
|
|
31006
|
-
.k-grid-row-sticky:hover td.k-state-selected,
|
|
31007
30765
|
.k-grid-row-sticky:hover td.k-selected,
|
|
31008
|
-
.k-grid-row-sticky.k-state-hover td.k-state-selected,
|
|
31009
30766
|
.k-grid-row-sticky.k-hover td.k-selected,
|
|
31010
|
-
tr:hover .k-grid-content-sticky.k-state-selected,
|
|
31011
30767
|
tr:hover .k-grid-content-sticky.k-selected,
|
|
31012
|
-
tr.k-state-hover .k-grid-content-sticky.k-state-selected,
|
|
31013
30768
|
tr.k-hover .k-grid-content-sticky.k-selected {
|
|
31014
30769
|
background-color: $grid-sticky-selected-hovered-bg;
|
|
31015
30770
|
}
|
|
@@ -31021,7 +30776,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31021
30776
|
}
|
|
31022
30777
|
|
|
31023
30778
|
&:hover .k-grid-content-sticky,
|
|
31024
|
-
&.k-state-hover .k-grid-content-sticky,
|
|
31025
30779
|
&.k-hover .k-grid-content-sticky {
|
|
31026
30780
|
@include fill( $bg: $grid-sticky-hovered-bg );
|
|
31027
30781
|
}
|
|
@@ -31035,13 +30789,11 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31035
30789
|
);
|
|
31036
30790
|
}
|
|
31037
30791
|
.k-columnmenu-item:focus,
|
|
31038
|
-
.k-columnmenu-item.k-state-focus,
|
|
31039
30792
|
.k-columnmenu-item.k-focus {
|
|
31040
30793
|
@include box-shadow( $kendo-list-item-focus-shadow );
|
|
31041
30794
|
}
|
|
31042
30795
|
|
|
31043
30796
|
.k-columnmenu-item {
|
|
31044
|
-
&.k-state-selected,
|
|
31045
30797
|
&.k-selected {
|
|
31046
30798
|
@include fill(
|
|
31047
30799
|
$kendo-list-item-selected-text,
|
|
@@ -31067,7 +30819,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31067
30819
|
);
|
|
31068
30820
|
|
|
31069
30821
|
&:hover,
|
|
31070
|
-
&.k-state-hover,
|
|
31071
30822
|
&.k-hover {
|
|
31072
30823
|
@include fill(
|
|
31073
30824
|
$kendo-list-item-hover-text,
|
|
@@ -31075,7 +30826,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31075
30826
|
);
|
|
31076
30827
|
}
|
|
31077
30828
|
|
|
31078
|
-
&.k-state-selected,
|
|
31079
30829
|
&.k-selected {
|
|
31080
30830
|
@include fill(
|
|
31081
30831
|
$kendo-list-item-selected-text,
|
|
@@ -31084,7 +30834,6 @@ $adaptive-scheduler-subtle-text: $subtle-text !default;
|
|
|
31084
30834
|
}
|
|
31085
30835
|
|
|
31086
30836
|
&:focus,
|
|
31087
|
-
&.k-state-focused,
|
|
31088
30837
|
&.k-focus {
|
|
31089
30838
|
@include box-shadow( $kendo-list-item-focus-shadow );
|
|
31090
30839
|
}
|
|
@@ -31326,7 +31075,6 @@ $listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
31326
31075
|
// Listview content
|
|
31327
31076
|
.k-listview-content {
|
|
31328
31077
|
|
|
31329
|
-
> .k-state-focused,
|
|
31330
31078
|
> .k-focus {
|
|
31331
31079
|
@include fill(
|
|
31332
31080
|
$listview-item-focus-text,
|
|
@@ -31336,7 +31084,6 @@ $listview-item-focus-shadow: inset 0 0 0 2px rgba(0, 0, 0, .13) !default;
|
|
|
31336
31084
|
@include box-shadow( $listview-item-focus-shadow );
|
|
31337
31085
|
}
|
|
31338
31086
|
|
|
31339
|
-
> .k-state-selected,
|
|
31340
31087
|
> .k-selected {
|
|
31341
31088
|
@include fill(
|
|
31342
31089
|
$listview-item-selected-text,
|
|
@@ -31548,7 +31295,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
31548
31295
|
[data-tool="merge"],
|
|
31549
31296
|
[data-tool="freeze"] {
|
|
31550
31297
|
width: auto;
|
|
31551
|
-
min-width: $form-line-height * 1em;
|
|
31298
|
+
min-width: calc( #{$form-line-height} * 1em );
|
|
31552
31299
|
}
|
|
31553
31300
|
|
|
31554
31301
|
.k-color-picker {
|
|
@@ -31717,7 +31464,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
31717
31464
|
overflow: hidden;
|
|
31718
31465
|
|
|
31719
31466
|
// disabled cells in the Spreadsheet should allow navigation if link is used
|
|
31720
|
-
.k-state-disabled,
|
|
31721
31467
|
.k-disabled {
|
|
31722
31468
|
pointer-events: auto;
|
|
31723
31469
|
}
|
|
@@ -32279,7 +32025,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32279
32025
|
background-position: 50% 50%;
|
|
32280
32026
|
|
|
32281
32027
|
&:hover div,
|
|
32282
|
-
&.k-state-hovered div,
|
|
32283
32028
|
&.k-hover div {
|
|
32284
32029
|
margin: 0;
|
|
32285
32030
|
align-self: center;
|
|
@@ -32345,7 +32090,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32345
32090
|
.k-spreadsheet-insert-image-dialog {
|
|
32346
32091
|
.k-spreadsheet-has-image {
|
|
32347
32092
|
&:hover,
|
|
32348
|
-
&.k-state-hovered,
|
|
32349
32093
|
&.k-hover {
|
|
32350
32094
|
border-radius: $spreadsheet-insert-image-dialog-preview-overlay-border-radius;
|
|
32351
32095
|
}
|
|
@@ -32525,7 +32269,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32525
32269
|
);
|
|
32526
32270
|
}
|
|
32527
32271
|
|
|
32528
|
-
&.k-state-active,
|
|
32529
32272
|
&.k-active {
|
|
32530
32273
|
@include fill(
|
|
32531
32274
|
$kendo-button-active-text,
|
|
@@ -32543,7 +32286,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32543
32286
|
> .k-menu,
|
|
32544
32287
|
> .k-menu:not(.k-context-menu) {
|
|
32545
32288
|
|
|
32546
|
-
.k-item
|
|
32289
|
+
.k-item:hover,
|
|
32547
32290
|
.k-item.k-hover {
|
|
32548
32291
|
@include fill(
|
|
32549
32292
|
$kendo-list-item-hover-text,
|
|
@@ -32574,7 +32317,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32574
32317
|
.k-button {}
|
|
32575
32318
|
|
|
32576
32319
|
.k-button:hover,
|
|
32577
|
-
.k-button.k-state-hover,
|
|
32578
32320
|
.k-button.k-hover {
|
|
32579
32321
|
@include fill(
|
|
32580
32322
|
$kendo-list-item-hover-text,
|
|
@@ -32582,9 +32324,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32582
32324
|
);
|
|
32583
32325
|
}
|
|
32584
32326
|
.k-button:active,
|
|
32585
|
-
.k-button.k-state-active,
|
|
32586
32327
|
.k-button.k-active,
|
|
32587
|
-
.k-button.k-state-selected,
|
|
32588
32328
|
.k-button.k-selected {
|
|
32589
32329
|
@include fill(
|
|
32590
32330
|
$kendo-list-item-selected-text,
|
|
@@ -32606,13 +32346,11 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32606
32346
|
|
|
32607
32347
|
.k-spreadsheet-has-image {
|
|
32608
32348
|
&:hover,
|
|
32609
|
-
&.k-state-hovered,
|
|
32610
32349
|
&.k-hover {
|
|
32611
32350
|
box-shadow: $spreadsheet-insert-image-dialog-preview-overlay-shadow;
|
|
32612
32351
|
}
|
|
32613
32352
|
|
|
32614
32353
|
&:hover div,
|
|
32615
|
-
&.k-state-hovered div,
|
|
32616
32354
|
&.k-hover div {
|
|
32617
32355
|
color: $spreadsheet-insert-image-dialog-overlay-hovered-text;
|
|
32618
32356
|
}
|
|
@@ -32883,6 +32621,10 @@ $pivotgrid-remove-text: null !default;
|
|
|
32883
32621
|
border-right-width: $pivotgrid-cell-border-width;
|
|
32884
32622
|
border-bottom-style: solid;
|
|
32885
32623
|
border-bottom-width: $pivotgrid-cell-border-width;
|
|
32624
|
+
|
|
32625
|
+
&:focus {
|
|
32626
|
+
outline: none;
|
|
32627
|
+
}
|
|
32886
32628
|
}
|
|
32887
32629
|
|
|
32888
32630
|
|
|
@@ -32953,6 +32695,10 @@ $pivotgrid-remove-text: null !default;
|
|
|
32953
32695
|
white-space: nowrap;
|
|
32954
32696
|
vertical-align: top;
|
|
32955
32697
|
overflow: hidden;
|
|
32698
|
+
|
|
32699
|
+
&:focus {
|
|
32700
|
+
outline: none;
|
|
32701
|
+
}
|
|
32956
32702
|
}
|
|
32957
32703
|
|
|
32958
32704
|
.k-pivotgrid-cell .k-icon {
|
|
@@ -33573,15 +33319,12 @@ $pivotgrid-remove-text: null !default;
|
|
|
33573
33319
|
|
|
33574
33320
|
|
|
33575
33321
|
// Hover state
|
|
33576
|
-
.k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-state-hover,
|
|
33577
|
-
.k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-hover,
|
|
33578
33322
|
.k-pivotgrid-row-headers tbody > .k-pivotgrid-row:hover,
|
|
33579
|
-
.k-pivotgrid-
|
|
33580
|
-
.k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-hover,
|
|
33323
|
+
.k-pivotgrid-row-headers tbody > .k-pivotgrid-row.k-hover,
|
|
33581
33324
|
.k-pivotgrid-column-headers tbody > .k-pivotgrid-row:hover,
|
|
33582
|
-
.k-pivotgrid-
|
|
33583
|
-
.k-pivotgrid-values tbody > .k-pivotgrid-row
|
|
33584
|
-
.k-pivotgrid-values tbody > .k-pivotgrid-row
|
|
33325
|
+
.k-pivotgrid-column-headers tbody > .k-pivotgrid-row.k-hover,
|
|
33326
|
+
.k-pivotgrid-values tbody > .k-pivotgrid-row:hover,
|
|
33327
|
+
.k-pivotgrid-values tbody > .k-pivotgrid-row.k-hover {
|
|
33585
33328
|
@include fill (
|
|
33586
33329
|
$pivotgrid-hover-text,
|
|
33587
33330
|
$pivotgrid-hover-bg,
|
|
@@ -33590,9 +33333,10 @@ $pivotgrid-remove-text: null !default;
|
|
|
33590
33333
|
}
|
|
33591
33334
|
|
|
33592
33335
|
// Focus state
|
|
33593
|
-
.k-pivotgrid-cell.k-state-focus,
|
|
33594
|
-
.k-pivotgrid-cell.k-focus,
|
|
33595
33336
|
.k-pivotgrid-cell:focus,
|
|
33337
|
+
.k-pivotgrid-cell.k-focus,
|
|
33338
|
+
.k-pivotgrid-empty-cell:focus,
|
|
33339
|
+
.k-pivotgrid-empty-cell.k-focus,
|
|
33596
33340
|
.k-master-row > .k-pivotgrid-cell:focus,
|
|
33597
33341
|
.k-grouping-row > .k-pivotgrid-cell:focus,
|
|
33598
33342
|
.k-detail-row > .k-pivotgrid-cell:focus,
|
|
@@ -33601,9 +33345,7 @@ $pivotgrid-remove-text: null !default;
|
|
|
33601
33345
|
}
|
|
33602
33346
|
|
|
33603
33347
|
// Selected state
|
|
33604
|
-
.k-pivotgrid-cell.k-state-selected,
|
|
33605
33348
|
.k-pivotgrid-cell.k-selected,
|
|
33606
|
-
.k-pivotgrid-row.k-state-selected > .k-pivotgrid-cell,
|
|
33607
33349
|
.k-pivotgrid-row.k-selected > .k-pivotgrid-cell {
|
|
33608
33350
|
@include fill (
|
|
33609
33351
|
$pivotgrid-selected-text,
|
|
@@ -33835,7 +33577,6 @@ $treelist-footer-row-border-width: 1px !default;
|
|
|
33835
33577
|
}
|
|
33836
33578
|
|
|
33837
33579
|
.k-treelist-dragging,
|
|
33838
|
-
.k-treelist-dragging .k-state-hover,
|
|
33839
33580
|
.k-treelist-dragging .k-hover {
|
|
33840
33581
|
cursor: default;
|
|
33841
33582
|
}
|
|
@@ -34566,7 +34307,6 @@ $filemanager-preview-icon-border: null !default;
|
|
|
34566
34307
|
);
|
|
34567
34308
|
}
|
|
34568
34309
|
|
|
34569
|
-
&.k-state-selected .k-file-icon,
|
|
34570
34310
|
&.k-selected .k-file-icon {
|
|
34571
34311
|
@include fill(
|
|
34572
34312
|
inherit,
|
|
@@ -34935,10 +34675,8 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
34935
34675
|
|
|
34936
34676
|
&:focus,
|
|
34937
34677
|
&.k-focus,
|
|
34938
|
-
&.k-state-focus,
|
|
34939
34678
|
&:hover,
|
|
34940
|
-
&.k-hover
|
|
34941
|
-
&.k-state-hover {
|
|
34679
|
+
&.k-hover {
|
|
34942
34680
|
text-decoration: underline;
|
|
34943
34681
|
}
|
|
34944
34682
|
}
|
|
@@ -35030,7 +34768,6 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
35030
34768
|
);
|
|
35031
34769
|
}
|
|
35032
34770
|
.k-taskboard-column:focus,
|
|
35033
|
-
.k-taskboard-column.k-state-focus,
|
|
35034
34771
|
.k-taskboard-column.k-focus {
|
|
35035
34772
|
@include fill(
|
|
35036
34773
|
$taskboard-column-focus-text,
|
|
@@ -35069,39 +34806,33 @@ $taskboard-drag-placeholder-border: $component-border !default;
|
|
|
35069
34806
|
@include fill( $color: $taskboard-card-header-text );
|
|
35070
34807
|
|
|
35071
34808
|
&:focus,
|
|
35072
|
-
&.k-focus
|
|
35073
|
-
&.k-state-focus {
|
|
34809
|
+
&.k-focus {
|
|
35074
34810
|
@include fill( $color: $taskboard-card-header-focus-text );
|
|
35075
34811
|
}
|
|
35076
34812
|
|
|
35077
34813
|
&:hover,
|
|
35078
|
-
&.k-hover
|
|
35079
|
-
&.k-state-hover {
|
|
34814
|
+
&.k-hover {
|
|
35080
34815
|
@include fill( $color: $taskboard-card-header-hover-text );
|
|
35081
34816
|
}
|
|
35082
34817
|
}
|
|
35083
34818
|
|
|
35084
34819
|
&:focus,
|
|
35085
|
-
&.k-focus
|
|
35086
|
-
&.k-state-focus {
|
|
34820
|
+
&.k-focus {
|
|
35087
34821
|
@include fill( $border: $taskboard-card-focus-border );
|
|
35088
34822
|
@include box-shadow( $taskboard-card-focus-shadow );
|
|
35089
34823
|
}
|
|
35090
34824
|
|
|
35091
34825
|
&:hover,
|
|
35092
|
-
&.k-hover
|
|
35093
|
-
&.k-state-hover {
|
|
34826
|
+
&.k-hover {
|
|
35094
34827
|
@include fill( $border: $taskboard-card-hover-border );
|
|
35095
34828
|
}
|
|
35096
34829
|
|
|
35097
|
-
&.k-selected
|
|
35098
|
-
&.k-state-selected {
|
|
34830
|
+
&.k-selected {
|
|
35099
34831
|
@include fill( $border: $taskboard-card-selected-border );
|
|
35100
34832
|
@include box-shadow( $taskboard-card-selected-shadow );
|
|
35101
34833
|
}
|
|
35102
34834
|
|
|
35103
|
-
&.k-disabled
|
|
35104
|
-
&.k-state-disabled {
|
|
34835
|
+
&.k-disabled {
|
|
35105
34836
|
@include disabled( $disabled-styling );
|
|
35106
34837
|
}
|
|
35107
34838
|
}
|
|
@@ -35233,7 +34964,6 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
35233
34964
|
pointer-events: auto;
|
|
35234
34965
|
}
|
|
35235
34966
|
|
|
35236
|
-
.k-editor-content.k-state-focused,
|
|
35237
34967
|
.k-editor-content.k-focus {
|
|
35238
34968
|
outline-width: 1px;
|
|
35239
34969
|
outline-style: dashed;
|
|
@@ -35489,7 +35219,8 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
35489
35219
|
border-bottom-color: inherit;
|
|
35490
35220
|
cursor: se-resize;
|
|
35491
35221
|
|
|
35492
|
-
.k-i-arrow-45-down-right
|
|
35222
|
+
.k-i-arrow-45-down-right,
|
|
35223
|
+
.k-i-caret-br {
|
|
35493
35224
|
display: none;
|
|
35494
35225
|
}
|
|
35495
35226
|
}
|
|
@@ -35687,7 +35418,6 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
35687
35418
|
display: block;
|
|
35688
35419
|
margin: auto;
|
|
35689
35420
|
|
|
35690
|
-
&.k-state-selected,
|
|
35691
35421
|
&.k-selected {
|
|
35692
35422
|
color: inherit;
|
|
35693
35423
|
border-width: 0;
|
|
@@ -35910,7 +35640,6 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
35910
35640
|
|
|
35911
35641
|
kendo-editor {
|
|
35912
35642
|
&.k-readonly {
|
|
35913
|
-
.k-editor-content.k-state-focused,
|
|
35914
35643
|
.k-editor-content.k-focus {
|
|
35915
35644
|
outline-color: $body-text;
|
|
35916
35645
|
}
|
|
@@ -35948,7 +35677,7 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
35948
35677
|
|
|
35949
35678
|
// Hover & Actve state
|
|
35950
35679
|
&:hover,
|
|
35951
|
-
&.k-
|
|
35680
|
+
&.k-active,
|
|
35952
35681
|
&.k-active {
|
|
35953
35682
|
border-color: $panel-border;
|
|
35954
35683
|
}
|
|
@@ -35966,7 +35695,6 @@ $editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex
|
|
|
35966
35695
|
|
|
35967
35696
|
// Insert table
|
|
35968
35697
|
.k-ct-popup {
|
|
35969
|
-
.k-state-selected,
|
|
35970
35698
|
.k-selected {
|
|
35971
35699
|
@include fill( $selected-text, $selected-bg, $selected-border, none );
|
|
35972
35700
|
}
|
|
@@ -36479,7 +36207,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
36479
36207
|
}
|
|
36480
36208
|
|
|
36481
36209
|
&.k-gantt-planned .k-grid-content tr {
|
|
36482
|
-
height: calc( #{$line-height-em * 1.7
|
|
36210
|
+
height: calc( #{$line-height-em} * 1.7 + #{$grid-cell-padding-y * 2} + #{$grid-cell-horizontal-border-width} );
|
|
36483
36211
|
}
|
|
36484
36212
|
|
|
36485
36213
|
// Layout
|
|
@@ -36524,7 +36252,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
36524
36252
|
}
|
|
36525
36253
|
}
|
|
36526
36254
|
|
|
36527
|
-
tr.k-state-selected > td:last-child,
|
|
36528
36255
|
tr.k-selected > td:last-child {
|
|
36529
36256
|
background: transparent;
|
|
36530
36257
|
}
|
|
@@ -36703,7 +36430,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
36703
36430
|
padding: 0 !important; // sass-lint:disable-line no-important
|
|
36704
36431
|
}
|
|
36705
36432
|
.k-grid-header tr {
|
|
36706
|
-
height: calc( #{$line-height-em * 2
|
|
36433
|
+
height: calc( #{$line-height-em} * 2 + #{$grid-header-padding-y * 4} + 2px );
|
|
36707
36434
|
vertical-align: bottom;
|
|
36708
36435
|
}
|
|
36709
36436
|
.k-grid-content {
|
|
@@ -36794,7 +36521,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
36794
36521
|
border-color: currentColor;
|
|
36795
36522
|
position: absolute;
|
|
36796
36523
|
}
|
|
36797
|
-
.k-gantt-line.k-state-selected,
|
|
36798
36524
|
.k-gantt-line.k-selected {
|
|
36799
36525
|
z-index: 3;
|
|
36800
36526
|
}
|
|
@@ -36868,7 +36594,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
36868
36594
|
transform: translate(-50%, -50%);
|
|
36869
36595
|
}
|
|
36870
36596
|
.k-task-dot:hover::before,
|
|
36871
|
-
.k-task-dot.k-state-hover::before,
|
|
36872
36597
|
.k-task-dot.k-hover::before {
|
|
36873
36598
|
border-width: 1px;
|
|
36874
36599
|
}
|
|
@@ -37342,7 +37067,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
37342
37067
|
$border: $gantt-milestone-border
|
|
37343
37068
|
);
|
|
37344
37069
|
}
|
|
37345
|
-
.k-task-milestone.k-state-selected .k-task-milestone-content,
|
|
37346
37070
|
.k-task-milestone.k-selected .k-task-milestone-content {
|
|
37347
37071
|
@include fill(
|
|
37348
37072
|
$bg: $gantt-milestone-selected-bg,
|
|
@@ -37357,7 +37081,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
37357
37081
|
stroke: $gantt-line-fill;
|
|
37358
37082
|
}
|
|
37359
37083
|
|
|
37360
|
-
polyline.k-state-selected,
|
|
37361
37084
|
polyline.k-selected {
|
|
37362
37085
|
stroke: $gantt-line-selected-fill;
|
|
37363
37086
|
}
|
|
@@ -37411,7 +37134,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
37411
37134
|
);
|
|
37412
37135
|
}
|
|
37413
37136
|
.k-task-dot:hover::before,
|
|
37414
|
-
.k-task-dot.k-state-hover::before,
|
|
37415
37137
|
.k-task-dot.k-hover::before {
|
|
37416
37138
|
@include fill(
|
|
37417
37139
|
$bg: $gantt-dot-hover-bg,
|
|
@@ -37437,7 +37159,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
37437
37159
|
);
|
|
37438
37160
|
}
|
|
37439
37161
|
}
|
|
37440
|
-
.k-task-milestone.k-state-selected,
|
|
37441
37162
|
.k-task-milestone.k-selected {
|
|
37442
37163
|
background-image: none;
|
|
37443
37164
|
@include fill(
|
|
@@ -37468,7 +37189,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
37468
37189
|
.k-task-advanced .k-task-summary-complete {
|
|
37469
37190
|
color: $gantt-advanced-bg;
|
|
37470
37191
|
}
|
|
37471
|
-
.k-task-summary.k-state-selected,
|
|
37472
37192
|
.k-task-summary.k-selected {
|
|
37473
37193
|
color: $gantt-summary-selected-bg;
|
|
37474
37194
|
|
|
@@ -37512,7 +37232,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
37512
37232
|
$bg: $gantt-advanced-bg
|
|
37513
37233
|
);
|
|
37514
37234
|
}
|
|
37515
|
-
.k-task-single.k-state-selected,
|
|
37516
37235
|
.k-task-single.k-selected {
|
|
37517
37236
|
@include fill(
|
|
37518
37237
|
$gantt-task-selected-text,
|
|
@@ -37529,7 +37248,6 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
37529
37248
|
.k-gantt-line {
|
|
37530
37249
|
color: $gantt-line-fill;
|
|
37531
37250
|
}
|
|
37532
|
-
.k-gantt-line.k-state-selected,
|
|
37533
37251
|
.k-gantt-line.k-selected {
|
|
37534
37252
|
color: $gantt-line-selected-fill;
|
|
37535
37253
|
}
|
|
@@ -38188,7 +37906,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38188
37906
|
}
|
|
38189
37907
|
|
|
38190
37908
|
&:hover,
|
|
38191
|
-
&.k-state-hover,
|
|
38192
37909
|
&.k-hover {
|
|
38193
37910
|
.k-event-delete {
|
|
38194
37911
|
opacity: 1;
|
|
@@ -38254,7 +37971,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38254
37971
|
|
|
38255
37972
|
// Hover
|
|
38256
37973
|
&:hover,
|
|
38257
|
-
&.k-state-hover,
|
|
38258
37974
|
&.k-hover {
|
|
38259
37975
|
.k-event-actions .k-event-delete,
|
|
38260
37976
|
.k-resize-handle {
|
|
@@ -38512,11 +38228,9 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38512
38228
|
opacity: .5;
|
|
38513
38229
|
visibility: hidden;
|
|
38514
38230
|
}
|
|
38515
|
-
.k-state-hover .k-task > .k-event-delete,
|
|
38516
38231
|
.k-hover .k-task > .k-event-delete,
|
|
38517
38232
|
.k-scheduler-content tr:hover .k-event-delete,
|
|
38518
38233
|
.k-scheduler-content .k-scheduler-row:hover .k-event-delete,
|
|
38519
|
-
.k-scheduler-content .k-scheduler-row.k-state-hover .k-event-delete,
|
|
38520
38234
|
.k-scheduler-content .k-scheduler-row.k-hover .k-event-delete {
|
|
38521
38235
|
visibility: visible;
|
|
38522
38236
|
}
|
|
@@ -38590,7 +38304,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38590
38304
|
position: relative;
|
|
38591
38305
|
}
|
|
38592
38306
|
|
|
38593
|
-
td.k-state-selected,
|
|
38594
38307
|
td.k-selected {
|
|
38595
38308
|
background-color: inherit;
|
|
38596
38309
|
}
|
|
@@ -38799,6 +38512,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38799
38512
|
|
|
38800
38513
|
.k-scheduler,
|
|
38801
38514
|
&.k-scheduler {
|
|
38515
|
+
.k-i-caret-alt-left,
|
|
38516
|
+
.k-i-caret-alt-right,
|
|
38802
38517
|
.k-i-arrow-60-left,
|
|
38803
38518
|
.k-i-arrow-60-right,
|
|
38804
38519
|
.k-current-time-arrow-right {
|
|
@@ -38938,9 +38653,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38938
38653
|
);
|
|
38939
38654
|
}
|
|
38940
38655
|
|
|
38941
|
-
.k-scheduler-layout td.k-state-selected,
|
|
38942
38656
|
.k-scheduler-layout td.k-selected,
|
|
38943
|
-
.k-scheduler-layout .k-scheduler-cell.k-state-selected,
|
|
38944
38657
|
.k-scheduler-layout .k-scheduler-cell.k-selected {
|
|
38945
38658
|
background-color: rgba($selected-bg, .25);
|
|
38946
38659
|
}
|
|
@@ -38963,7 +38676,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38963
38676
|
);
|
|
38964
38677
|
@include box-shadow( $scheduler-event-shadow );
|
|
38965
38678
|
|
|
38966
|
-
|
|
38679
|
+
&:hover,
|
|
38967
38680
|
&.k-hover {
|
|
38968
38681
|
@include fill(
|
|
38969
38682
|
$scheduler-event-hover-text,
|
|
@@ -38974,7 +38687,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
38974
38687
|
@include box-shadow( $scheduler-event-hover-shadow );
|
|
38975
38688
|
}
|
|
38976
38689
|
|
|
38977
|
-
&.k-state-selected,
|
|
38978
38690
|
&.k-selected {
|
|
38979
38691
|
@include fill(
|
|
38980
38692
|
$scheduler-event-selected-text,
|
|
@@ -39041,10 +38753,8 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
39041
38753
|
|
|
39042
38754
|
// Hover
|
|
39043
38755
|
.k-scheduler-content tr:hover,
|
|
39044
|
-
.k-scheduler-content tr.k-state-hover,
|
|
39045
38756
|
.k-scheduler-content tr.k-hover,
|
|
39046
38757
|
.k-scheduler-content .k-scheduler-row:hover,
|
|
39047
|
-
.k-scheduler-content .k-scheduler-row.k-state-hover,
|
|
39048
38758
|
.k-scheduler-content .k-scheduler-row.k-hover {
|
|
39049
38759
|
@include fill(
|
|
39050
38760
|
$hovered-text,
|
|
@@ -39056,9 +38766,7 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
39056
38766
|
|
|
39057
38767
|
.k-scheduler-content tr:hover .k-scheduler-datecolumn,
|
|
39058
38768
|
.k-scheduler-content tr:hover .k-scheduler-groupcolumn,
|
|
39059
|
-
.k-scheduler-content tr.k-state-hover .k-scheduler-datecolumn,
|
|
39060
38769
|
.k-scheduler-content tr.k-hover .k-scheduler-datecolumn,
|
|
39061
|
-
.k-scheduler-content tr.k-state-hover .k-scheduler-groupcolumn,
|
|
39062
38770
|
.k-scheduler-content tr.k-hover .k-scheduler-groupcolumn {
|
|
39063
38771
|
@include fill(
|
|
39064
38772
|
$scheduler-text,
|
|
@@ -39068,13 +38776,10 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
39068
38776
|
}
|
|
39069
38777
|
|
|
39070
38778
|
// Selected
|
|
39071
|
-
.k-scheduler-content tr.k-state-selected,
|
|
39072
38779
|
.k-scheduler-content tr.k-selected {
|
|
39073
38780
|
background-color: rgba($selected-bg, .25);
|
|
39074
38781
|
}
|
|
39075
|
-
.k-scheduler-content tr.k-state-selected .k-scheduler-datecolumn,
|
|
39076
38782
|
.k-scheduler-content tr.k-selected .k-scheduler-datecolumn,
|
|
39077
|
-
.k-scheduler-content tr.k-state-selected .k-scheduler-groupcolumn,
|
|
39078
38783
|
.k-scheduler-content tr.k-selected .k-scheduler-groupcolumn {
|
|
39079
38784
|
background-color: $scheduler-bg;
|
|
39080
38785
|
}
|
|
@@ -39092,7 +38797,6 @@ $scheduler-tooltip-callout-text: $scheduler-tooltip-bg !default;
|
|
|
39092
38797
|
@include fill( $bg: $scheduler-yearview-indicator-bg );
|
|
39093
38798
|
}
|
|
39094
38799
|
|
|
39095
|
-
.k-state-selected .k-day-indicator,
|
|
39096
38800
|
.k-selected .k-day-indicator {
|
|
39097
38801
|
@include fill( $bg: $scheduler-yearview-indicator-selected-bg );
|
|
39098
38802
|
}
|
|
@@ -39396,7 +39100,6 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
39396
39100
|
|
|
39397
39101
|
|
|
39398
39102
|
// Message states
|
|
39399
|
-
.k-message.k-state-selected,
|
|
39400
39103
|
.k-message.k-selected {
|
|
39401
39104
|
margin-bottom: $chat-item-spacing-y;
|
|
39402
39105
|
border: 0;
|
|
@@ -39525,7 +39228,6 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
39525
39228
|
align-items: center;
|
|
39526
39229
|
|
|
39527
39230
|
&:focus,
|
|
39528
|
-
&.k-state-focus,
|
|
39529
39231
|
&.k-focus,
|
|
39530
39232
|
&:focus-within {
|
|
39531
39233
|
outline: 0;
|
|
@@ -39606,7 +39308,6 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
39606
39308
|
flex: 0 0 auto;
|
|
39607
39309
|
}
|
|
39608
39310
|
|
|
39609
|
-
&.k-state-selected,
|
|
39610
39311
|
&.k-selected {
|
|
39611
39312
|
background: none;
|
|
39612
39313
|
}
|
|
@@ -39843,7 +39544,6 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
39843
39544
|
.k-bubble:hover {
|
|
39844
39545
|
@include box-shadow( $chat-bubble-hover-shadow );
|
|
39845
39546
|
}
|
|
39846
|
-
.k-state-selected .k-bubble,
|
|
39847
39547
|
.k-selected .k-bubble {
|
|
39848
39548
|
@include box-shadow( $chat-bubble-selected-shadow );
|
|
39849
39549
|
}
|
|
@@ -39859,7 +39559,6 @@ $chat-quick-reply-hover-border: $primary !default;
|
|
|
39859
39559
|
.k-alt .k-bubble:hover {
|
|
39860
39560
|
@include box-shadow( $chat-alt-bubble-hover-shadow );
|
|
39861
39561
|
}
|
|
39862
|
-
.k-alt .k-state-selected .k-bubble,
|
|
39863
39562
|
.k-alt .k-selected .k-bubble {
|
|
39864
39563
|
@include box-shadow( $chat-alt-bubble-selected-shadow );
|
|
39865
39564
|
}
|
|
@@ -40658,7 +40357,6 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
40658
40357
|
color: $body-text;
|
|
40659
40358
|
}
|
|
40660
40359
|
|
|
40661
|
-
.k-timeline-arrow.k-state-disabled,
|
|
40662
40360
|
.k-timeline-arrow.k-disabled {
|
|
40663
40361
|
opacity: 1; // The arrow button in disabled mode should have a solid background
|
|
40664
40362
|
color: $timeline-track-arrow-disabled-text;
|
|
@@ -40679,7 +40377,6 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
40679
40377
|
background-color: $timeline-flag-bg;
|
|
40680
40378
|
}
|
|
40681
40379
|
|
|
40682
|
-
.k-timeline-track-item.k-state-focus .k-timeline-circle,
|
|
40683
40380
|
.k-timeline-track-item.k-focus .k-timeline-circle {
|
|
40684
40381
|
@include box-shadow( $timeline-track-item-focus-shadow );
|
|
40685
40382
|
}
|
|
@@ -40700,6 +40397,9 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
40700
40397
|
// #region @import "../common/_index.scss"; -> packages/classic/scss/common/_index.scss
|
|
40701
40398
|
// File already imported_once. Skipping output.
|
|
40702
40399
|
// #endregion
|
|
40400
|
+
// #region @import "../button/_variables.scss"; -> packages/classic/scss/button/_variables.scss
|
|
40401
|
+
// File already imported_once. Skipping output.
|
|
40402
|
+
// #endregion
|
|
40703
40403
|
// #region @import "../combobox/_index.scss"; -> packages/classic/scss/combobox/_index.scss
|
|
40704
40404
|
// File already imported_once. Skipping output.
|
|
40705
40405
|
// #endregion
|
|
@@ -40715,6 +40415,12 @@ $timeline-event-min-height-calc: calc(2 * (#{$timeline-track-event-offset} - #{$
|
|
|
40715
40415
|
// #region @import "../icons/_index.scss"; -> packages/classic/scss/icons/_index.scss
|
|
40716
40416
|
// File already imported_once. Skipping output.
|
|
40717
40417
|
// #endregion
|
|
40418
|
+
// #region @import "../dropzone/_index.scss"; -> packages/classic/scss/dropzone/_index.scss
|
|
40419
|
+
// File already imported_once. Skipping output.
|
|
40420
|
+
// #endregion
|
|
40421
|
+
// #region @import "../window/_index.scss"; -> packages/classic/scss/window/_index.scss
|
|
40422
|
+
// File already imported_once. Skipping output.
|
|
40423
|
+
// #endregion
|
|
40718
40424
|
|
|
40719
40425
|
|
|
40720
40426
|
// Component
|
|
@@ -40745,12 +40451,25 @@ $pdf-viewer-page-text: $component-text !default;
|
|
|
40745
40451
|
$pdf-viewer-page-border: $component-border !default;
|
|
40746
40452
|
$pdf-viewer-page-shadow: 0 0 ($pdf-viewer-page-spacing / 2) $pdf-viewer-page-border !default;
|
|
40747
40453
|
|
|
40748
|
-
$pdf-viewer-search-
|
|
40454
|
+
$pdf-viewer-search-panel-border-width: 1px !default;
|
|
40455
|
+
$pdf-viewer-search-panel-border-radius: map-get( $spacing, 1 ) !default;
|
|
40456
|
+
$pdf-viewer-search-panel-bg: $component-bg !default;
|
|
40457
|
+
$pdf-viewer-search-panel-text: $component-text !default;
|
|
40458
|
+
$pdf-viewer-search-panel-border: $component-border !default;
|
|
40459
|
+
$pdf-viewer-search-panel-shadow: $window-shadow !default;
|
|
40460
|
+
$pdf-viewer-search-panel-matches-spacing: $padding-x-sm !default;
|
|
40461
|
+
|
|
40462
|
+
$pdf-viewer-search-dialog-padding-x: $toolbar-padding-x !default;
|
|
40463
|
+
$pdf-viewer-search-dialog-padding-y: map-get( $spacing, 3 ) !default;
|
|
40749
40464
|
$pdf-viewer-search-dialog-spacing: $toolbar-spacing !default;
|
|
40750
40465
|
|
|
40751
40466
|
$pdf-viewer-selection-line-height: $line-height-sm !default;
|
|
40752
40467
|
|
|
40753
40468
|
$pdf-viewer-search-highlight-bg: $body-text !default;
|
|
40469
|
+
$pdf-viewer-search-highlight-mark-bg: yellow !default;
|
|
40470
|
+
|
|
40471
|
+
$pdf-viewer-icon-text: $dropzone-icon-text !default;
|
|
40472
|
+
$pdf-viewer-icon-size: calc( #{$icon-size} * 3 ) !default;
|
|
40754
40473
|
|
|
40755
40474
|
// #endregion
|
|
40756
40475
|
// #region @import "_layout.scss"; -> packages/classic/scss/pdf-viewer/_layout.scss
|
|
@@ -40761,6 +40480,7 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
40761
40480
|
border-width: $pdf-viewer-border-width;
|
|
40762
40481
|
border-style: solid;
|
|
40763
40482
|
box-sizing: border-box;
|
|
40483
|
+
position: relative;
|
|
40764
40484
|
outline: 0;
|
|
40765
40485
|
font-family: $pdf-viewer-font-family;
|
|
40766
40486
|
font-size: $pdf-viewer-font-size;
|
|
@@ -40791,11 +40511,14 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
40791
40511
|
|
|
40792
40512
|
|
|
40793
40513
|
// Canvas
|
|
40794
|
-
.k-
|
|
40514
|
+
.k-canvas {
|
|
40515
|
+
display: flex;
|
|
40516
|
+
flex-direction: column;
|
|
40795
40517
|
flex: 1 1 auto;
|
|
40796
40518
|
outline: none;
|
|
40797
40519
|
|
|
40798
|
-
.k-enable-text-select
|
|
40520
|
+
.k-enable-text-select,
|
|
40521
|
+
&.k-enable-text-select {
|
|
40799
40522
|
-webkit-user-select: text;
|
|
40800
40523
|
-moz-user-select: text;
|
|
40801
40524
|
-ms-user-select: text;
|
|
@@ -40803,16 +40526,22 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
40803
40526
|
cursor: text;
|
|
40804
40527
|
}
|
|
40805
40528
|
|
|
40806
|
-
.k-enable-panning
|
|
40529
|
+
.k-enable-panning,
|
|
40530
|
+
&.k-enable-panning {
|
|
40807
40531
|
cursor: grab;
|
|
40808
40532
|
}
|
|
40809
|
-
.k-enable-panning span::selection
|
|
40533
|
+
.k-enable-panning span::selection,
|
|
40534
|
+
&.k-enable-panning span::selection {
|
|
40810
40535
|
background-color: transparent;
|
|
40811
40536
|
}
|
|
40812
40537
|
}
|
|
40813
40538
|
|
|
40814
40539
|
|
|
40815
|
-
//
|
|
40540
|
+
// Pages
|
|
40541
|
+
.k-pdf-viewer-pages {
|
|
40542
|
+
flex: 1 1 auto;
|
|
40543
|
+
}
|
|
40544
|
+
|
|
40816
40545
|
.k-page {
|
|
40817
40546
|
position: relative;
|
|
40818
40547
|
margin: $pdf-viewer-page-spacing auto;
|
|
@@ -40838,46 +40567,88 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
40838
40567
|
mark {
|
|
40839
40568
|
color: transparent;
|
|
40840
40569
|
}
|
|
40570
|
+
|
|
40571
|
+
.k-search-highlight-mark {
|
|
40572
|
+
color: transparent;
|
|
40573
|
+
}
|
|
40841
40574
|
}
|
|
40842
40575
|
}
|
|
40576
|
+
|
|
40577
|
+
.k-blank-page {
|
|
40578
|
+
margin: 0;
|
|
40579
|
+
display: flex;
|
|
40580
|
+
flex-flow: column nowrap;
|
|
40581
|
+
width: 100%;
|
|
40582
|
+
height: 100%;
|
|
40583
|
+
align-items: center;
|
|
40584
|
+
justify-content: center;
|
|
40585
|
+
background-color: inherit !important; // sass-lint:disable-line no-important
|
|
40586
|
+
|
|
40587
|
+
.k-upload,
|
|
40588
|
+
.k-dropzone,
|
|
40589
|
+
.k-dropzone-inner {
|
|
40590
|
+
border: 0;
|
|
40591
|
+
background: none;
|
|
40592
|
+
}
|
|
40593
|
+
|
|
40594
|
+
> .k-icon {
|
|
40595
|
+
font-size: $pdf-viewer-icon-size;
|
|
40596
|
+
}
|
|
40597
|
+
}
|
|
40598
|
+
|
|
40843
40599
|
}
|
|
40844
40600
|
|
|
40845
40601
|
// Search
|
|
40846
40602
|
.k-pdf-viewer-search-dialog {
|
|
40847
|
-
padding:
|
|
40603
|
+
padding: 0 !important; // sass-lint:disable-line no-important
|
|
40604
|
+
}
|
|
40848
40605
|
|
|
40849
|
-
|
|
40850
|
-
|
|
40851
|
-
|
|
40852
|
-
|
|
40853
|
-
|
|
40854
|
-
|
|
40855
|
-
|
|
40606
|
+
.k-search-panel {
|
|
40607
|
+
padding: $pdf-viewer-search-dialog-padding-y $pdf-viewer-search-dialog-padding-x;
|
|
40608
|
+
display: flex;
|
|
40609
|
+
gap: $pdf-viewer-search-dialog-spacing;
|
|
40610
|
+
flex-flow: row nowrap;
|
|
40611
|
+
flex: 0 0 auto;
|
|
40612
|
+
justify-content: flex-start;
|
|
40613
|
+
align-items: center;
|
|
40856
40614
|
|
|
40857
|
-
|
|
40858
|
-
|
|
40859
|
-
|
|
40860
|
-
|
|
40615
|
+
.k-search-dialog-draghandle {
|
|
40616
|
+
cursor: move;
|
|
40617
|
+
margin-left: 0;
|
|
40618
|
+
}
|
|
40861
40619
|
|
|
40862
|
-
|
|
40863
|
-
|
|
40864
|
-
|
|
40620
|
+
.k-textbox {
|
|
40621
|
+
width: 10em;
|
|
40622
|
+
flex: none;
|
|
40865
40623
|
|
|
40866
|
-
|
|
40867
|
-
|
|
40868
|
-
}
|
|
40624
|
+
.k-button {
|
|
40625
|
+
border-width: 0;
|
|
40869
40626
|
}
|
|
40627
|
+
}
|
|
40870
40628
|
|
|
40871
|
-
|
|
40872
|
-
|
|
40873
|
-
|
|
40629
|
+
.k-search-matches {
|
|
40630
|
+
display: inline-flex;
|
|
40631
|
+
gap: $pdf-viewer-search-panel-matches-spacing;
|
|
40874
40632
|
}
|
|
40875
40633
|
}
|
|
40876
40634
|
|
|
40635
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
40636
|
+
width: max-content;
|
|
40637
|
+
margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$pdf-viewer-search-panel-border-width} ) + ( 2 * #{$pdf-viewer-search-dialog-padding-y} )) * -1 );
|
|
40638
|
+
border-width: $pdf-viewer-search-panel-border-width;
|
|
40639
|
+
border-style: solid;
|
|
40640
|
+
border-radius: $pdf-viewer-search-panel-border-radius;
|
|
40641
|
+
z-index: 10;
|
|
40642
|
+
}
|
|
40643
|
+
|
|
40644
|
+
// Alias
|
|
40645
|
+
.k-search-container {
|
|
40646
|
+
@extend .k-search-panel !optional;
|
|
40647
|
+
}
|
|
40648
|
+
|
|
40877
40649
|
|
|
40878
40650
|
// IE
|
|
40879
40651
|
.k-ie .k-pdf-viewer-search-dialog {
|
|
40880
|
-
|
|
40881
40652
|
.k-search-container > * + * {
|
|
40882
40653
|
margin-left: $pdf-viewer-search-dialog-spacing;
|
|
40883
40654
|
}
|
|
@@ -40932,12 +40703,33 @@ $pdf-viewer-search-highlight-bg: $body-text !default;
|
|
|
40932
40703
|
@include box-shadow( $pdf-viewer-page-shadow );
|
|
40933
40704
|
}
|
|
40934
40705
|
|
|
40706
|
+
.k-blank-page > .k-icon {
|
|
40707
|
+
@include fill( $color: $pdf-viewer-icon-text );
|
|
40708
|
+
}
|
|
40709
|
+
|
|
40935
40710
|
|
|
40936
40711
|
// Search
|
|
40937
40712
|
.k-search-highlight {
|
|
40938
40713
|
background-color: $pdf-viewer-search-highlight-bg;
|
|
40939
40714
|
}
|
|
40940
40715
|
|
|
40716
|
+
.k-search-highlight-mark {
|
|
40717
|
+
@include fill( $bg: $pdf-viewer-search-highlight-mark-bg );
|
|
40718
|
+
}
|
|
40719
|
+
|
|
40720
|
+
}
|
|
40721
|
+
|
|
40722
|
+
.k-pdf-viewer-canvas > .k-search-panel {
|
|
40723
|
+
@include fill(
|
|
40724
|
+
$pdf-viewer-search-panel-text,
|
|
40725
|
+
$pdf-viewer-search-panel-bg,
|
|
40726
|
+
$pdf-viewer-search-panel-border,
|
|
40727
|
+
);
|
|
40728
|
+
@include box-shadow( $pdf-viewer-search-panel-shadow );
|
|
40729
|
+
}
|
|
40730
|
+
|
|
40731
|
+
.k-search-container {
|
|
40732
|
+
@extend .k-search-panel !optional;
|
|
40941
40733
|
}
|
|
40942
40734
|
|
|
40943
40735
|
}
|
|
@@ -41391,7 +41183,6 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
41391
41183
|
-webkit-tap-highlight-color: $scrollview-arrow-tap-highlight-color;
|
|
41392
41184
|
|
|
41393
41185
|
&:focus,
|
|
41394
|
-
&.k-state-focus,
|
|
41395
41186
|
&.k-focus {
|
|
41396
41187
|
color: $scrollview-navigation-color;
|
|
41397
41188
|
opacity: $scrollview-navigation-hover-opacity;
|
|
@@ -41402,7 +41193,6 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
41402
41193
|
}
|
|
41403
41194
|
|
|
41404
41195
|
&:hover,
|
|
41405
|
-
&.k-state-hover,
|
|
41406
41196
|
&.k-hover {
|
|
41407
41197
|
color: $scrollview-navigation-color;
|
|
41408
41198
|
opacity: $scrollview-navigation-hover-opacity;
|
|
@@ -41422,14 +41212,12 @@ $scrollview-transition-timing-function: ease-in-out !default;
|
|
|
41422
41212
|
}
|
|
41423
41213
|
|
|
41424
41214
|
&:focus,
|
|
41425
|
-
&.k-state-focused,
|
|
41426
41215
|
&.k-focus {
|
|
41427
41216
|
box-shadow: $scrollview-pagebutton-shadow;
|
|
41428
41217
|
}
|
|
41429
41218
|
}
|
|
41430
41219
|
|
|
41431
41220
|
.k-scrollview-nav > .k-link:hover,
|
|
41432
|
-
.k-scrollview-nav > .k-link.k-state-hover,
|
|
41433
41221
|
.k-scrollview-nav > .k-link.k-hover {
|
|
41434
41222
|
box-shadow: $scrollview-pagebutton-shadow;
|
|
41435
41223
|
}
|
|
@@ -42248,7 +42036,7 @@ $treemap-line-height: $line-height !default;
|
|
|
42248
42036
|
.k-leaf.k-inverse {
|
|
42249
42037
|
color: $component-text;
|
|
42250
42038
|
}
|
|
42251
|
-
.k-leaf
|
|
42039
|
+
.k-leaf:hover,
|
|
42252
42040
|
.k-leaf.k-hover {
|
|
42253
42041
|
box-shadow: inset 0 0 0 3px $component-border;
|
|
42254
42042
|
}
|
|
@@ -42730,8 +42518,7 @@ $orgchart-line-v-height: 25px !default;
|
|
|
42730
42518
|
}
|
|
42731
42519
|
|
|
42732
42520
|
&:focus,
|
|
42733
|
-
&.k-focus
|
|
42734
|
-
&.k-state-focus {
|
|
42521
|
+
&.k-focus {
|
|
42735
42522
|
@include box-shadow( $orgchart-card-focus-shadow );
|
|
42736
42523
|
}
|
|
42737
42524
|
}
|
|
@@ -42745,9 +42532,6 @@ $orgchart-line-v-height: 25px !default;
|
|
|
42745
42532
|
);
|
|
42746
42533
|
}
|
|
42747
42534
|
.k-orgchart-node-group-container:focus,
|
|
42748
|
-
.k-orgchart-node-group-container.k-focus,
|
|
42749
|
-
.k-orgchart-node-group-container.k-state-focus,
|
|
42750
|
-
.k-orgchart-node-group-container.k-state-focused,
|
|
42751
42535
|
.k-orgchart-node-group-container.k-focus {
|
|
42752
42536
|
@include box-shadow( $orgchart-node-group-focus-shadow );
|
|
42753
42537
|
@include fill ( $border: $orgchart-node-group-focus-border );
|
|
@@ -42788,40 +42572,42 @@ $kendo-signature-height: 84px !default;
|
|
|
42788
42572
|
$kendo-signature-maximized-width: 750px !default;
|
|
42789
42573
|
$kendo-signature-maximized-height: 252px !default;
|
|
42790
42574
|
|
|
42791
|
-
$kendo-signature-padding: map-get( $spacing, 1 ) !default;
|
|
42792
|
-
$kendo-signature-padding-sm: map-get( $spacing, 1 ) - map-get(
|
|
42793
|
-
$kendo-signature-padding-md: $kendo-signature-padding !default;
|
|
42794
|
-
$kendo-signature-padding-lg: map-get( $spacing,
|
|
42575
|
+
$kendo-signature-padding-x: map-get( $spacing, 1 ) !default;
|
|
42576
|
+
$kendo-signature-padding-x-sm: map-get( $spacing, 1 ) - map-get($spacing, thin) !default;
|
|
42577
|
+
$kendo-signature-padding-x-md: $kendo-signature-padding-x !default;
|
|
42578
|
+
$kendo-signature-padding-x-lg: map-get( $spacing, 2 ) !default;
|
|
42579
|
+
|
|
42580
|
+
$kendo-signature-padding-y: $kendo-signature-padding-x !default;
|
|
42581
|
+
$kendo-signature-padding-y-sm: $kendo-signature-padding-x-sm !default;
|
|
42582
|
+
$kendo-signature-padding-y-md: $kendo-signature-padding-x-md !default;
|
|
42583
|
+
$kendo-signature-padding-y-lg: $kendo-signature-padding-x-lg !default;
|
|
42795
42584
|
|
|
42796
42585
|
$kendo-signature-line-width: 1px !default;
|
|
42797
42586
|
$kendo-signature-line-style: dashed !default;
|
|
42798
42587
|
$kendo-signature-line-color: rgba( $info, .24 ) !default;
|
|
42799
42588
|
|
|
42800
|
-
$kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding} ) !default;
|
|
42801
|
-
$kendo-signature-line-size-sm: calc( 100% - 2 * #{$kendo-signature-padding-sm} ) !default;
|
|
42802
|
-
$kendo-signature-line-size-md: calc( 100% - 2 * #{$kendo-signature-padding-md} ) !default;
|
|
42803
|
-
$kendo-signature-line-size-lg: calc( 100% - 2 * #{$kendo-signature-padding-lg} ) !default;
|
|
42589
|
+
$kendo-signature-line-size: calc( 100% - 2 * #{$kendo-signature-padding-x} ) !default;
|
|
42590
|
+
$kendo-signature-line-size-sm: calc( 100% - 2 * #{$kendo-signature-padding-x-sm} ) !default;
|
|
42591
|
+
$kendo-signature-line-size-md: calc( 100% - 2 * #{$kendo-signature-padding-x-md} ) !default;
|
|
42592
|
+
$kendo-signature-line-size-lg: calc( 100% - 2 * #{$kendo-signature-padding-x-lg} ) !default;
|
|
42804
42593
|
|
|
42805
|
-
$kendo-signature-line-bottom-offset:
|
|
42806
|
-
$kendo-signature-line-bottom-offset-sm: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-sm} ) !default;
|
|
42807
|
-
$kendo-signature-line-bottom-offset-md: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-md} ) !default;
|
|
42808
|
-
$kendo-signature-line-bottom-offset-lg: calc( #{$kendo-button-calc-size} + #{$kendo-signature-padding-lg} ) !default;
|
|
42594
|
+
$kendo-signature-line-bottom-offset: 33% !default;
|
|
42809
42595
|
|
|
42810
42596
|
$kendo-signature-sizes: (
|
|
42811
42597
|
sm: (
|
|
42812
|
-
padding: $kendo-signature-padding-sm,
|
|
42813
|
-
|
|
42814
|
-
line-
|
|
42598
|
+
padding-x: $kendo-signature-padding-x-sm,
|
|
42599
|
+
padding-y: $kendo-signature-padding-y-sm,
|
|
42600
|
+
line-size: $kendo-signature-line-size-sm
|
|
42815
42601
|
),
|
|
42816
42602
|
md: (
|
|
42817
|
-
padding: $kendo-signature-padding-md,
|
|
42818
|
-
|
|
42819
|
-
line-
|
|
42603
|
+
padding-x: $kendo-signature-padding-x-md,
|
|
42604
|
+
padding-y: $kendo-signature-padding-y-md,
|
|
42605
|
+
line-size: $kendo-signature-line-size-md
|
|
42820
42606
|
),
|
|
42821
42607
|
lg: (
|
|
42822
|
-
padding: $kendo-signature-padding-lg,
|
|
42823
|
-
|
|
42824
|
-
line-
|
|
42608
|
+
padding-x: $kendo-signature-padding-x-lg,
|
|
42609
|
+
padding-y: $kendo-signature-padding-y-lg,
|
|
42610
|
+
line-size: $kendo-signature-line-size-lg
|
|
42825
42611
|
)
|
|
42826
42612
|
) !default;
|
|
42827
42613
|
|
|
@@ -42835,7 +42621,7 @@ $kendo-signature-maximized-line-width: map-get( $spacing, 1 ) - map-get( $spacin
|
|
|
42835
42621
|
|
|
42836
42622
|
.k-signature {
|
|
42837
42623
|
width: $kendo-signature-width;
|
|
42838
|
-
height: $kendo-signature-height;
|
|
42624
|
+
min-height: $kendo-signature-height;
|
|
42839
42625
|
position: relative;
|
|
42840
42626
|
box-sizing: border-box;
|
|
42841
42627
|
display: flex;
|
|
@@ -42872,27 +42658,30 @@ $kendo-signature-maximized-line-width: map-get( $spacing, 1 ) - map-get( $spacin
|
|
|
42872
42658
|
|
|
42873
42659
|
.k-signature-line {
|
|
42874
42660
|
position: absolute;
|
|
42875
|
-
|
|
42661
|
+
bottom: $kendo-signature-line-bottom-offset;
|
|
42662
|
+
z-index: 2;
|
|
42663
|
+
pointer-events: none;
|
|
42876
42664
|
border-bottom-width: $kendo-signature-line-width;
|
|
42877
42665
|
border-bottom-style: $kendo-signature-line-style;
|
|
42878
42666
|
}
|
|
42879
42667
|
|
|
42880
42668
|
// Sizes
|
|
42881
42669
|
@each $size, $size-props in $kendo-signature-sizes {
|
|
42882
|
-
$_padding: map-get($size-props, padding);
|
|
42670
|
+
$_padding-x: map-get($size-props, padding-x);
|
|
42671
|
+
$_padding-y: map-get($size-props, padding-y);
|
|
42883
42672
|
$_line-size: map-get($size-props, line-size);
|
|
42884
42673
|
$_line-offset: map-get($size-props, line-offset);
|
|
42885
42674
|
|
|
42886
42675
|
.k-signature-#{$size} {
|
|
42887
|
-
padding: $_padding;
|
|
42676
|
+
padding-inline: $_padding-x;
|
|
42677
|
+
padding-block: $_padding-y;
|
|
42888
42678
|
|
|
42889
42679
|
.k-signature-line {
|
|
42890
42680
|
width: $_line-size;
|
|
42891
|
-
bottom: $_line-offset;
|
|
42892
42681
|
}
|
|
42893
42682
|
}
|
|
42894
|
-
|
|
42895
42683
|
}
|
|
42684
|
+
|
|
42896
42685
|
}
|
|
42897
42686
|
|
|
42898
42687
|
// #endregion
|