@progress/kendo-theme-material 5.1.2-dev.7 → 5.2.1-dev.1
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 +123 -12
- package/dist/all.scss +86 -17
- package/lib/swatches/material-aqua-dark.json +202 -41
- package/lib/swatches/material-arctic.json +202 -41
- package/lib/swatches/material-burnt-teal.json +202 -41
- package/lib/swatches/material-dataviz-v4.json +2 -1
- package/lib/swatches/material-eggplant.json +202 -41
- package/lib/swatches/material-lime-dark.json +202 -41
- package/lib/swatches/material-lime.json +202 -41
- package/lib/swatches/material-main-dark.json +202 -41
- package/lib/swatches/material-main.json +202 -41
- package/lib/swatches/material-nova.json +202 -41
- package/lib/swatches/material-pacific-dark.json +202 -41
- package/lib/swatches/material-pacific.json +202 -41
- package/lib/swatches/material-sky-dark.json +202 -41
- package/lib/swatches/material-sky.json +202 -41
- package/lib/swatches/material-smoke.json +202 -41
- package/package.json +4 -4
- package/scss/_variables.scss +4 -1
- package/scss/button/_variables.scss +11 -0
- package/scss/chip/_theme.scss +19 -1
- package/scss/chip/_variables.scss +1 -1
package/dist/all.css
CHANGED
|
@@ -995,15 +995,17 @@ kendo-sortable {
|
|
|
995
995
|
text-indent: -4000px;
|
|
996
996
|
text-align: center;
|
|
997
997
|
position: absolute;
|
|
998
|
+
color: currentColor;
|
|
998
999
|
}
|
|
999
1000
|
|
|
1000
1001
|
.k-loading-image {
|
|
1001
1002
|
z-index: 2;
|
|
1003
|
+
color: currentColor;
|
|
1002
1004
|
}
|
|
1003
1005
|
|
|
1004
1006
|
.k-loading-color {
|
|
1005
1007
|
background-color: white;
|
|
1006
|
-
opacity: .3;
|
|
1008
|
+
opacity: 0.3;
|
|
1007
1009
|
}
|
|
1008
1010
|
|
|
1009
1011
|
.k-i-loading {
|
|
@@ -12218,6 +12220,18 @@ kendo-badge-container {
|
|
|
12218
12220
|
flex: none;
|
|
12219
12221
|
}
|
|
12220
12222
|
|
|
12223
|
+
.k-split-button .k-split-button-arrow.k-button-sm {
|
|
12224
|
+
padding: 6px 4px;
|
|
12225
|
+
}
|
|
12226
|
+
|
|
12227
|
+
.k-split-button .k-split-button-arrow.k-button-md {
|
|
12228
|
+
padding: 8px 4px;
|
|
12229
|
+
}
|
|
12230
|
+
|
|
12231
|
+
.k-split-button .k-split-button-arrow.k-button-lg {
|
|
12232
|
+
padding: 10px 4px;
|
|
12233
|
+
}
|
|
12234
|
+
|
|
12221
12235
|
.k-split-button .k-split-button-arrow .k-button-icon {
|
|
12222
12236
|
min-width: 0;
|
|
12223
12237
|
}
|
|
@@ -13711,6 +13725,38 @@ kendo-badge-container {
|
|
|
13711
13725
|
margin: 0;
|
|
13712
13726
|
}
|
|
13713
13727
|
|
|
13728
|
+
.k-input:disabled, .k-input[disabled], .k-input.k-disabled,
|
|
13729
|
+
.k-picker:disabled,
|
|
13730
|
+
.k-picker[disabled],
|
|
13731
|
+
.k-picker.k-disabled {
|
|
13732
|
+
outline: none;
|
|
13733
|
+
cursor: default;
|
|
13734
|
+
opacity: 0.6;
|
|
13735
|
+
filter: grayscale(0.1);
|
|
13736
|
+
pointer-events: none;
|
|
13737
|
+
box-shadow: none;
|
|
13738
|
+
}
|
|
13739
|
+
|
|
13740
|
+
.k-input:disabled [disabled],
|
|
13741
|
+
.k-input:disabled .k-disabled,
|
|
13742
|
+
.k-input:disabled .k-state-disabled, .k-input[disabled] [disabled],
|
|
13743
|
+
.k-input[disabled] .k-disabled,
|
|
13744
|
+
.k-input[disabled] .k-state-disabled, .k-input.k-disabled [disabled],
|
|
13745
|
+
.k-input.k-disabled .k-disabled,
|
|
13746
|
+
.k-input.k-disabled .k-state-disabled,
|
|
13747
|
+
.k-picker:disabled [disabled],
|
|
13748
|
+
.k-picker:disabled .k-disabled,
|
|
13749
|
+
.k-picker:disabled .k-state-disabled,
|
|
13750
|
+
.k-picker[disabled] [disabled],
|
|
13751
|
+
.k-picker[disabled] .k-disabled,
|
|
13752
|
+
.k-picker[disabled] .k-state-disabled,
|
|
13753
|
+
.k-picker.k-disabled [disabled],
|
|
13754
|
+
.k-picker.k-disabled .k-disabled,
|
|
13755
|
+
.k-picker.k-disabled .k-state-disabled {
|
|
13756
|
+
opacity: 1;
|
|
13757
|
+
filter: grayscale(0);
|
|
13758
|
+
}
|
|
13759
|
+
|
|
13714
13760
|
input.k-input {
|
|
13715
13761
|
padding: 8px 16px;
|
|
13716
13762
|
}
|
|
@@ -13737,7 +13783,7 @@ select.k-picker {
|
|
|
13737
13783
|
position: relative;
|
|
13738
13784
|
z-index: 1;
|
|
13739
13785
|
overflow: hidden;
|
|
13740
|
-
text-overflow:
|
|
13786
|
+
text-overflow: ellipsis;
|
|
13741
13787
|
-webkit-appearance: none;
|
|
13742
13788
|
}
|
|
13743
13789
|
|
|
@@ -13786,7 +13832,7 @@ textarea.k-input-inner {
|
|
|
13786
13832
|
.k-input-value-text {
|
|
13787
13833
|
flex: 1;
|
|
13788
13834
|
overflow: hidden;
|
|
13789
|
-
text-overflow:
|
|
13835
|
+
text-overflow: ellipsis;
|
|
13790
13836
|
}
|
|
13791
13837
|
|
|
13792
13838
|
.k-input-value-text::before {
|
|
@@ -15161,7 +15207,7 @@ textarea.k-input-inner {
|
|
|
15161
15207
|
.k-chip-solid-base {
|
|
15162
15208
|
border-color: rgba(192, 192, 192, 0.961);
|
|
15163
15209
|
color: rgba(0, 0, 0, 0.87);
|
|
15164
|
-
background-color: rgba(
|
|
15210
|
+
background-color: rgba(235, 235, 235, 0.987);
|
|
15165
15211
|
}
|
|
15166
15212
|
|
|
15167
15213
|
.k-chip-solid-base:focus, .k-chip-solid-base.k-focus {
|
|
@@ -15352,28 +15398,83 @@ textarea.k-input-inner {
|
|
|
15352
15398
|
border-color: transparent;
|
|
15353
15399
|
}
|
|
15354
15400
|
|
|
15401
|
+
.k-chip-solid-base:hover, .k-chip-solid-base.k-hover {
|
|
15402
|
+
color: rgba(0, 0, 0, 0.87);
|
|
15403
|
+
background-color: rgba(0, 0, 0, 0.16);
|
|
15404
|
+
}
|
|
15405
|
+
|
|
15355
15406
|
.k-chip-solid-base:focus, .k-chip-solid-base.k-focus {
|
|
15356
15407
|
box-shadow: none;
|
|
15408
|
+
color: rgba(0, 0, 0, 0.87);
|
|
15357
15409
|
background-color: rgba(0, 0, 0, 0.24);
|
|
15358
15410
|
}
|
|
15359
15411
|
|
|
15412
|
+
.k-chip-solid-base.k-selected {
|
|
15413
|
+
color: rgba(0, 0, 0, 0.87);
|
|
15414
|
+
background-color: rgba(0, 0, 0, 0.24);
|
|
15415
|
+
}
|
|
15416
|
+
|
|
15417
|
+
.k-chip-solid-error:hover, .k-chip-solid-error.k-hover {
|
|
15418
|
+
color: #f31700;
|
|
15419
|
+
background-color: rgba(243, 23, 0, 0.16);
|
|
15420
|
+
}
|
|
15421
|
+
|
|
15360
15422
|
.k-chip-solid-error:focus, .k-chip-solid-error.k-focus {
|
|
15361
15423
|
box-shadow: none;
|
|
15424
|
+
color: #f31700;
|
|
15362
15425
|
background-color: rgba(243, 23, 0, 0.24);
|
|
15363
15426
|
}
|
|
15364
15427
|
|
|
15428
|
+
.k-chip-solid-error.k-selected {
|
|
15429
|
+
color: #f31700;
|
|
15430
|
+
background-color: rgba(243, 23, 0, 0.24);
|
|
15431
|
+
}
|
|
15432
|
+
|
|
15433
|
+
.k-chip-solid-info:hover, .k-chip-solid-info.k-hover {
|
|
15434
|
+
color: #0058e9;
|
|
15435
|
+
background-color: rgba(0, 88, 233, 0.16);
|
|
15436
|
+
}
|
|
15437
|
+
|
|
15365
15438
|
.k-chip-solid-info:focus, .k-chip-solid-info.k-focus {
|
|
15366
15439
|
box-shadow: none;
|
|
15440
|
+
color: #0058e9;
|
|
15441
|
+
background-color: rgba(0, 88, 233, 0.24);
|
|
15442
|
+
}
|
|
15443
|
+
|
|
15444
|
+
.k-chip-solid-info.k-selected {
|
|
15445
|
+
color: #0058e9;
|
|
15367
15446
|
background-color: rgba(0, 88, 233, 0.24);
|
|
15368
15447
|
}
|
|
15369
15448
|
|
|
15449
|
+
.k-chip-solid-warning:hover, .k-chip-solid-warning.k-hover {
|
|
15450
|
+
color: #ffc000;
|
|
15451
|
+
background-color: rgba(255, 192, 0, 0.16);
|
|
15452
|
+
}
|
|
15453
|
+
|
|
15370
15454
|
.k-chip-solid-warning:focus, .k-chip-solid-warning.k-focus {
|
|
15371
15455
|
box-shadow: none;
|
|
15456
|
+
color: #ffc000;
|
|
15372
15457
|
background-color: rgba(255, 192, 0, 0.24);
|
|
15373
15458
|
}
|
|
15374
15459
|
|
|
15460
|
+
.k-chip-solid-warning.k-selected {
|
|
15461
|
+
color: #ffc000;
|
|
15462
|
+
background-color: rgba(255, 192, 0, 0.24);
|
|
15463
|
+
}
|
|
15464
|
+
|
|
15465
|
+
.k-chip-solid-success:hover, .k-chip-solid-success.k-hover {
|
|
15466
|
+
color: #37b400;
|
|
15467
|
+
background-color: rgba(55, 180, 0, 0.16);
|
|
15468
|
+
}
|
|
15469
|
+
|
|
15375
15470
|
.k-chip-solid-success:focus, .k-chip-solid-success.k-focus {
|
|
15376
15471
|
box-shadow: none;
|
|
15472
|
+
color: #37b400;
|
|
15473
|
+
background-color: rgba(55, 180, 0, 0.24);
|
|
15474
|
+
}
|
|
15475
|
+
|
|
15476
|
+
.k-chip-solid-success.k-selected {
|
|
15477
|
+
color: #37b400;
|
|
15377
15478
|
background-color: rgba(55, 180, 0, 0.24);
|
|
15378
15479
|
}
|
|
15379
15480
|
|
|
@@ -19843,6 +19944,10 @@ kendo-label > .k-label {
|
|
|
19843
19944
|
width: 50px;
|
|
19844
19945
|
}
|
|
19845
19946
|
|
|
19947
|
+
.k-colorgradient-inputs .k-input-inner {
|
|
19948
|
+
text-overflow: clip;
|
|
19949
|
+
}
|
|
19950
|
+
|
|
19846
19951
|
.k-colorgradient-color-contrast > div {
|
|
19847
19952
|
display: flex;
|
|
19848
19953
|
flex-flow: row nowrap;
|
|
@@ -20612,7 +20717,7 @@ kendo-label > .k-label {
|
|
|
20612
20717
|
}
|
|
20613
20718
|
|
|
20614
20719
|
.k-popup-dropdowntree .k-check-all {
|
|
20615
|
-
padding: 8px 8px;
|
|
20720
|
+
padding: 8px 8px 0;
|
|
20616
20721
|
}
|
|
20617
20722
|
|
|
20618
20723
|
.k-popup-dropdowntree .k-treeview {
|
|
@@ -24423,6 +24528,11 @@ kendo-card-footer {
|
|
|
24423
24528
|
width: 5em;
|
|
24424
24529
|
}
|
|
24425
24530
|
|
|
24531
|
+
.k-pager-sizes .k-input-inner,
|
|
24532
|
+
.k-pager-sizes .k-input-value-text {
|
|
24533
|
+
text-overflow: clip;
|
|
24534
|
+
}
|
|
24535
|
+
|
|
24426
24536
|
.k-rtl .k-pager-sizes .k-dropdown-list, .k-rtl .k-pager-sizes .k-dropdown,
|
|
24427
24537
|
.k-rtl .k-pager-sizes .k-dropdownlist,
|
|
24428
24538
|
.k-rtl .k-pager-sizes > select,
|
|
@@ -24626,6 +24736,7 @@ kendo-card-footer {
|
|
|
24626
24736
|
display: flex;
|
|
24627
24737
|
align-items: center;
|
|
24628
24738
|
justify-content: center;
|
|
24739
|
+
flex: none;
|
|
24629
24740
|
position: relative;
|
|
24630
24741
|
z-index: 1;
|
|
24631
24742
|
overflow: visible;
|
|
@@ -24656,7 +24767,7 @@ kendo-card-footer {
|
|
|
24656
24767
|
}
|
|
24657
24768
|
|
|
24658
24769
|
.k-stepper .k-step-label {
|
|
24659
|
-
max-width:
|
|
24770
|
+
max-width: clamp(100%, 10em, 100%);
|
|
24660
24771
|
display: inline-flex;
|
|
24661
24772
|
flex-wrap: wrap;
|
|
24662
24773
|
align-items: center;
|
|
@@ -29044,11 +29155,6 @@ thead.k-grid-header > tr:not(:only-child) > th {
|
|
|
29044
29155
|
min-width: 2em;
|
|
29045
29156
|
}
|
|
29046
29157
|
|
|
29047
|
-
.k-spreadsheet-toolbar .k-input,
|
|
29048
|
-
.k-spreadsheet-toolbar .k-picker {
|
|
29049
|
-
width: 5em;
|
|
29050
|
-
}
|
|
29051
|
-
|
|
29052
29158
|
.k-spreadsheet-toolbar .k-color-picker, .k-spreadsheet-toolbar .k-colorpicker {
|
|
29053
29159
|
width: min-content;
|
|
29054
29160
|
}
|
|
@@ -32504,6 +32610,11 @@ td.k-editor-content {
|
|
|
32504
32610
|
overflow-y: auto;
|
|
32505
32611
|
}
|
|
32506
32612
|
|
|
32613
|
+
.k-imageeditor-action-pane .k-input-inner,
|
|
32614
|
+
.k-imageeditor-action-pane .k-input-value-text {
|
|
32615
|
+
text-overflow: clip;
|
|
32616
|
+
}
|
|
32617
|
+
|
|
32507
32618
|
.k-imageeditor-crop-overlay {
|
|
32508
32619
|
width: 100%;
|
|
32509
32620
|
height: 100%;
|
|
@@ -33328,7 +33439,7 @@ td.k-editor-content {
|
|
|
33328
33439
|
}
|
|
33329
33440
|
|
|
33330
33441
|
.k-gantt-tooltip-validation::before {
|
|
33331
|
-
content:
|
|
33442
|
+
content: "";
|
|
33332
33443
|
width: 4px;
|
|
33333
33444
|
height: 100%;
|
|
33334
33445
|
position: absolute;
|
package/dist/all.scss
CHANGED
|
@@ -2132,7 +2132,10 @@ $placeholder-bg: rgba(0, 0, 0, .1) !default;
|
|
|
2132
2132
|
|
|
2133
2133
|
|
|
2134
2134
|
// Loading
|
|
2135
|
-
|
|
2135
|
+
$loading-bg: $component-bg !default;
|
|
2136
|
+
$loading-text: currentColor !default;
|
|
2137
|
+
$loading-opacity: .3 !default;
|
|
2138
|
+
$zindex-loading: 100 !default;
|
|
2136
2139
|
|
|
2137
2140
|
// Table
|
|
2138
2141
|
|
|
@@ -3589,7 +3592,7 @@ $display4-letter-spacing: null !default;
|
|
|
3589
3592
|
}
|
|
3590
3593
|
|
|
3591
3594
|
.k-loading-mask {
|
|
3592
|
-
z-index:
|
|
3595
|
+
z-index: $zindex-loading;
|
|
3593
3596
|
|
|
3594
3597
|
&.k-opaque {
|
|
3595
3598
|
.k-loading-color {
|
|
@@ -3601,13 +3604,15 @@ $display4-letter-spacing: null !default;
|
|
|
3601
3604
|
text-indent: -4000px;
|
|
3602
3605
|
text-align: center;
|
|
3603
3606
|
position: absolute;
|
|
3607
|
+
color: $loading-text;
|
|
3604
3608
|
}
|
|
3605
3609
|
.k-loading-image {
|
|
3606
3610
|
z-index: 2;
|
|
3611
|
+
color: $loading-text;
|
|
3607
3612
|
}
|
|
3608
3613
|
.k-loading-color {
|
|
3609
|
-
background-color: $
|
|
3610
|
-
opacity:
|
|
3614
|
+
background-color: $loading-bg;
|
|
3615
|
+
opacity: $loading-opacity;
|
|
3611
3616
|
}
|
|
3612
3617
|
|
|
3613
3618
|
// Loading indicator
|
|
@@ -3615,7 +3620,7 @@ $display4-letter-spacing: null !default;
|
|
|
3615
3620
|
position: relative;
|
|
3616
3621
|
background-color: transparent;
|
|
3617
3622
|
box-sizing: border-box;
|
|
3618
|
-
color:
|
|
3623
|
+
color: $loading-text;
|
|
3619
3624
|
|
|
3620
3625
|
&::before,
|
|
3621
3626
|
&::after {
|
|
@@ -8952,8 +8957,19 @@ $kendo-button-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-but
|
|
|
8952
8957
|
/// @group button
|
|
8953
8958
|
$kendo-button-inner-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-button-padding-y * 2} ) !default;
|
|
8954
8959
|
|
|
8960
|
+
/// Horizontal padding of the arrow button.
|
|
8961
|
+
/// @group button
|
|
8955
8962
|
$kendo-button-arrow-padding-x: map-get( $spacing, 1 ) !default;
|
|
8963
|
+
$kendo-button-arrow-padding-x-sm: map-get( $spacing, 1 ) !default;
|
|
8964
|
+
$kendo-button-arrow-padding-x-md: map-get( $spacing, 1 ) !default;
|
|
8965
|
+
$kendo-button-arrow-padding-x-lg: map-get( $spacing, 1 ) !default;
|
|
8966
|
+
|
|
8967
|
+
/// Vertical padding of the arrow button.
|
|
8968
|
+
/// @group button
|
|
8956
8969
|
$kendo-button-arrow-padding-y: $kendo-button-padding-y !default;
|
|
8970
|
+
$kendo-button-arrow-padding-y-sm: $kendo-button-padding-y-sm !default;
|
|
8971
|
+
$kendo-button-arrow-padding-y-md: $kendo-button-padding-y-md !default;
|
|
8972
|
+
$kendo-button-arrow-padding-y-lg: $kendo-button-padding-y-lg !default;
|
|
8957
8973
|
|
|
8958
8974
|
/// Theme colors map for the button.
|
|
8959
8975
|
/// @group button
|
|
@@ -9332,6 +9348,18 @@ $kendo-button-transition: box-shadow 280ms cubic-bezier( .4, 0, .2, 1 ) !default
|
|
|
9332
9348
|
aspect-ratio: auto;
|
|
9333
9349
|
flex: none;
|
|
9334
9350
|
|
|
9351
|
+
&.k-button-sm {
|
|
9352
|
+
padding: $kendo-button-arrow-padding-y-sm $kendo-button-arrow-padding-x-sm;
|
|
9353
|
+
}
|
|
9354
|
+
|
|
9355
|
+
&.k-button-md {
|
|
9356
|
+
padding: $kendo-button-arrow-padding-y-md $kendo-button-arrow-padding-x-md;
|
|
9357
|
+
}
|
|
9358
|
+
|
|
9359
|
+
&.k-button-lg {
|
|
9360
|
+
padding: $kendo-button-arrow-padding-y-lg $kendo-button-arrow-padding-x-lg;
|
|
9361
|
+
}
|
|
9362
|
+
|
|
9335
9363
|
.k-button-icon {
|
|
9336
9364
|
min-width: 0;
|
|
9337
9365
|
}
|
|
@@ -10194,8 +10222,20 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
10194
10222
|
& > * {
|
|
10195
10223
|
margin: 0;
|
|
10196
10224
|
}
|
|
10197
|
-
}
|
|
10198
10225
|
|
|
10226
|
+
&:disabled,
|
|
10227
|
+
&[disabled],
|
|
10228
|
+
&.k-disabled {
|
|
10229
|
+
@include disabled( $disabled-styling );
|
|
10230
|
+
|
|
10231
|
+
[disabled],
|
|
10232
|
+
.k-disabled,
|
|
10233
|
+
.k-state-disabled {
|
|
10234
|
+
opacity: 1;
|
|
10235
|
+
filter: grayscale(0);
|
|
10236
|
+
}
|
|
10237
|
+
}
|
|
10238
|
+
}
|
|
10199
10239
|
|
|
10200
10240
|
// Input
|
|
10201
10241
|
.k-input {}
|
|
@@ -10227,7 +10267,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
10227
10267
|
position: relative;
|
|
10228
10268
|
z-index: 1;
|
|
10229
10269
|
overflow: hidden;
|
|
10230
|
-
text-overflow:
|
|
10270
|
+
text-overflow: ellipsis;
|
|
10231
10271
|
-webkit-appearance: none;
|
|
10232
10272
|
|
|
10233
10273
|
// Hide clear icon
|
|
@@ -10266,7 +10306,7 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
10266
10306
|
.k-input-value-text {
|
|
10267
10307
|
flex: 1;
|
|
10268
10308
|
overflow: hidden;
|
|
10269
|
-
text-overflow:
|
|
10309
|
+
text-overflow: ellipsis;
|
|
10270
10310
|
}
|
|
10271
10311
|
.k-input-value-text::before {
|
|
10272
10312
|
content: "\200b";
|
|
@@ -12268,7 +12308,7 @@ $kendo-chip-theme-colors: (
|
|
|
12268
12308
|
|
|
12269
12309
|
/// The base background color of solid chip.
|
|
12270
12310
|
/// @group chip
|
|
12271
|
-
$kendo-chip-solid-bg: try-tint( $kendo-chip-base-bg,
|
|
12311
|
+
$kendo-chip-solid-bg: try-tint( $kendo-chip-base-bg, 90% ) !default;
|
|
12272
12312
|
/// The base text color of solid chip.
|
|
12273
12313
|
/// @group chip
|
|
12274
12314
|
$kendo-chip-solid-text: $kendo-chip-base-bg !default;
|
|
@@ -12643,10 +12683,28 @@ $kendo-chip-list-sizes: (
|
|
|
12643
12683
|
}
|
|
12644
12684
|
@each $name, $color in $kendo-chip-theme-colors {
|
|
12645
12685
|
.k-chip-solid-#{$name} {
|
|
12686
|
+
&:hover,
|
|
12687
|
+
&.k-hover {
|
|
12688
|
+
@include fill(
|
|
12689
|
+
$bg: rgba($color, .16 ),
|
|
12690
|
+
$color: $color
|
|
12691
|
+
);
|
|
12692
|
+
}
|
|
12693
|
+
|
|
12646
12694
|
&:focus,
|
|
12647
12695
|
&.k-focus {
|
|
12648
12696
|
@include box-shadow( none );
|
|
12649
|
-
@include fill(
|
|
12697
|
+
@include fill(
|
|
12698
|
+
$bg: rgba($color, .24),
|
|
12699
|
+
$color: $color
|
|
12700
|
+
);
|
|
12701
|
+
}
|
|
12702
|
+
|
|
12703
|
+
&.k-selected {
|
|
12704
|
+
@include fill(
|
|
12705
|
+
$bg: rgba( $color, .24 ),
|
|
12706
|
+
$color: $color
|
|
12707
|
+
);
|
|
12650
12708
|
}
|
|
12651
12709
|
}
|
|
12652
12710
|
}
|
|
@@ -19548,6 +19606,10 @@ $colorgradient-contrast-spacer: map-get( $spacing, 2 ) !default;
|
|
|
19548
19606
|
.k-numerictextbox {
|
|
19549
19607
|
width: $colorgradient-input-width;
|
|
19550
19608
|
}
|
|
19609
|
+
|
|
19610
|
+
.k-input-inner {
|
|
19611
|
+
text-overflow: clip;
|
|
19612
|
+
}
|
|
19551
19613
|
}
|
|
19552
19614
|
|
|
19553
19615
|
// Contrast
|
|
@@ -21314,7 +21376,7 @@ $dropdowntree-popup-padding-y: map-get( $spacing, 2 ) !default;
|
|
|
21314
21376
|
padding: 0;
|
|
21315
21377
|
|
|
21316
21378
|
.k-check-all {
|
|
21317
|
-
padding: $dropdowntree-popup-padding-y $dropdowntree-popup-padding-x;
|
|
21379
|
+
padding: $dropdowntree-popup-padding-y $dropdowntree-popup-padding-x 0;
|
|
21318
21380
|
}
|
|
21319
21381
|
|
|
21320
21382
|
.k-treeview {
|
|
@@ -26750,6 +26812,11 @@ $pager-dropdown-width: 5em !default;
|
|
|
26750
26812
|
width: $pager-dropdown-width;
|
|
26751
26813
|
}
|
|
26752
26814
|
|
|
26815
|
+
.k-input-inner,
|
|
26816
|
+
.k-input-value-text {
|
|
26817
|
+
text-overflow: clip;
|
|
26818
|
+
}
|
|
26819
|
+
|
|
26753
26820
|
.k-rtl &,
|
|
26754
26821
|
[dir="rtl"] & {
|
|
26755
26822
|
.k-dropdown-list,
|
|
@@ -27210,6 +27277,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
27210
27277
|
display: flex;
|
|
27211
27278
|
align-items: center;
|
|
27212
27279
|
justify-content: center;
|
|
27280
|
+
flex: none;
|
|
27213
27281
|
position: relative;
|
|
27214
27282
|
z-index: 1;
|
|
27215
27283
|
overflow: visible;
|
|
@@ -27243,7 +27311,7 @@ $stepper-content-transition-timing-function: cubic-bezier(.4, 0, .2, 1) 0ms !def
|
|
|
27243
27311
|
|
|
27244
27312
|
// Step label
|
|
27245
27313
|
.k-step-label {
|
|
27246
|
-
max-width:
|
|
27314
|
+
max-width: clamp(100%, 10em, 100%);
|
|
27247
27315
|
display: inline-flex;
|
|
27248
27316
|
flex-wrap: wrap;
|
|
27249
27317
|
align-items: center;
|
|
@@ -33110,10 +33178,6 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
33110
33178
|
min-width: $form-line-height * 1em;
|
|
33111
33179
|
}
|
|
33112
33180
|
|
|
33113
|
-
.k-input,
|
|
33114
|
-
.k-picker {
|
|
33115
|
-
width: 5em;
|
|
33116
|
-
}
|
|
33117
33181
|
.k-color-picker {
|
|
33118
33182
|
width: min-content;
|
|
33119
33183
|
}
|
|
@@ -37873,6 +37937,11 @@ $imageeditor-crop-overlay-bg: rgba(black, .3) !default;
|
|
|
37873
37937
|
box-sizing: border-box;
|
|
37874
37938
|
flex: none;
|
|
37875
37939
|
overflow-y: auto;
|
|
37940
|
+
|
|
37941
|
+
.k-input-inner,
|
|
37942
|
+
.k-input-value-text {
|
|
37943
|
+
text-overflow: clip;
|
|
37944
|
+
}
|
|
37876
37945
|
}
|
|
37877
37946
|
|
|
37878
37947
|
|
|
@@ -38885,7 +38954,7 @@ $gantt-validation-tooltip-invalid-border: $error !default;
|
|
|
38885
38954
|
display: block;
|
|
38886
38955
|
|
|
38887
38956
|
&::before {
|
|
38888
|
-
content:
|
|
38957
|
+
content: "";
|
|
38889
38958
|
width: 4px;
|
|
38890
38959
|
height: 100%;
|
|
38891
38960
|
position: absolute;
|