@progress/kendo-theme-default 4.43.1-dev.2 → 4.43.1-dev.3
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 +73 -29
- package/dist/all.scss +84 -12
- package/package.json +2 -2
- package/scss/_layout.scss +0 -0
- package/scss/color-preview/_layout.scss +1 -1
- package/scss/color-preview/_theme.scss +3 -3
- package/scss/color-preview/_variables.scss +2 -2
- package/scss/forms/_layout.scss +4 -2
- package/scss/index.scss +1 -0
- package/scss/slider/_layout.scss +2 -0
- package/scss/tabstrip/_layout.scss +1 -1
- package/scss/utils/_flex.scss +11 -3
- package/scss/virtual-scroller/_index.scss +10 -0
- package/scss/virtual-scroller/_layout.scss +35 -0
- package/scss/virtual-scroller/_theme.scss +3 -0
- package/scss/virtual-scroller/_variables.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -2031,40 +2031,54 @@ kendo-sortable {
|
|
|
2031
2031
|
display: none !important;
|
|
2032
2032
|
}
|
|
2033
2033
|
|
|
2034
|
-
.k-d-flex {
|
|
2034
|
+
.k-d-flex, .k-d-flex-row, .k-d-flex-col {
|
|
2035
2035
|
display: flex;
|
|
2036
2036
|
}
|
|
2037
2037
|
|
|
2038
|
+
.\!k-d-flex, .\!k-d-flex-row, .\!k-d-flex-col {
|
|
2039
|
+
display: flex !important;
|
|
2040
|
+
}
|
|
2041
|
+
|
|
2038
2042
|
.k-d-inline-flex {
|
|
2039
2043
|
display: inline-flex;
|
|
2040
2044
|
}
|
|
2041
2045
|
|
|
2042
|
-
|
|
2043
|
-
display: flex;
|
|
2044
|
-
flex-direction: row;
|
|
2046
|
+
.\!k-d-inline-flex {
|
|
2047
|
+
display: inline-flex !important;
|
|
2045
2048
|
}
|
|
2046
2049
|
|
|
2047
|
-
.k-d-flex-
|
|
2048
|
-
|
|
2049
|
-
flex-direction: column;
|
|
2050
|
+
.k-flex-row, .k-d-flex-row {
|
|
2051
|
+
flex-direction: row;
|
|
2050
2052
|
}
|
|
2051
2053
|
|
|
2052
|
-
|
|
2053
|
-
flex-direction: row;
|
|
2054
|
+
.\!k-flex-row, .\!k-d-flex-row, .\!k-d-flex-col {
|
|
2055
|
+
flex-direction: row !important;
|
|
2054
2056
|
}
|
|
2055
2057
|
|
|
2056
2058
|
.k-flex-row-reverse {
|
|
2057
2059
|
flex-direction: row-reverse;
|
|
2058
2060
|
}
|
|
2059
2061
|
|
|
2060
|
-
|
|
2062
|
+
.\!k-flex-row-reverse {
|
|
2063
|
+
flex-direction: row-reverse !important;
|
|
2064
|
+
}
|
|
2065
|
+
|
|
2066
|
+
.k-flex-col, .k-d-flex-col, .k-flex-column {
|
|
2061
2067
|
flex-direction: column;
|
|
2062
2068
|
}
|
|
2063
2069
|
|
|
2070
|
+
.\!k-flex-col {
|
|
2071
|
+
flex-direction: column !important;
|
|
2072
|
+
}
|
|
2073
|
+
|
|
2064
2074
|
.k-flex-col-reverse, .k-flex-column-reverse {
|
|
2065
2075
|
flex-direction: column-reverse;
|
|
2066
2076
|
}
|
|
2067
2077
|
|
|
2078
|
+
.\!k-flex-col-reverse {
|
|
2079
|
+
flex-direction: column-reverse;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2068
2082
|
.k-flex-wrap {
|
|
2069
2083
|
flex-wrap: wrap;
|
|
2070
2084
|
}
|
|
@@ -11783,6 +11797,31 @@ kendo-list > .k-group-header,
|
|
|
11783
11797
|
background-color: rgba(255, 99, 88, 0.25);
|
|
11784
11798
|
}
|
|
11785
11799
|
|
|
11800
|
+
.k-virtual-scroller {
|
|
11801
|
+
width: 100%;
|
|
11802
|
+
height: 100%;
|
|
11803
|
+
flex: 1 1 auto;
|
|
11804
|
+
overflow: auto;
|
|
11805
|
+
position: relative;
|
|
11806
|
+
}
|
|
11807
|
+
|
|
11808
|
+
.k-virtual-scroller-wrap {
|
|
11809
|
+
position: relative;
|
|
11810
|
+
z-index: 1;
|
|
11811
|
+
}
|
|
11812
|
+
|
|
11813
|
+
.k-virtual-scroller-content {
|
|
11814
|
+
position: absolute;
|
|
11815
|
+
width: 100%;
|
|
11816
|
+
top: 0;
|
|
11817
|
+
inset-inline-start: 0;
|
|
11818
|
+
}
|
|
11819
|
+
|
|
11820
|
+
.k-virtual-scroller-size {
|
|
11821
|
+
position: relative;
|
|
11822
|
+
z-index: 0;
|
|
11823
|
+
}
|
|
11824
|
+
|
|
11786
11825
|
.k-avatar {
|
|
11787
11826
|
border-width: 0;
|
|
11788
11827
|
border-style: solid;
|
|
@@ -12640,7 +12679,7 @@ kendo-badge-container {
|
|
|
12640
12679
|
cursor: pointer;
|
|
12641
12680
|
}
|
|
12642
12681
|
|
|
12643
|
-
.k-no-color::
|
|
12682
|
+
.k-no-color::before {
|
|
12644
12683
|
content: "";
|
|
12645
12684
|
width: 100%;
|
|
12646
12685
|
height: 100%;
|
|
@@ -12663,10 +12702,10 @@ kendo-badge-container {
|
|
|
12663
12702
|
border-color: rgba(0, 0, 0, 0.08);
|
|
12664
12703
|
}
|
|
12665
12704
|
|
|
12666
|
-
.k-no-color::
|
|
12705
|
+
.k-no-color::before {
|
|
12667
12706
|
background-color: #ffffff;
|
|
12668
|
-
background-image: url("data:image/
|
|
12669
|
-
background-size:
|
|
12707
|
+
background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' version='1.1'%3e%3cline x1='0' x2='20' y1='0' y2='20' stroke='%23f31700' stroke-width='1'/%3e%3c/svg%3e");
|
|
12708
|
+
background-size: 100% 100%;
|
|
12670
12709
|
background-position: 0 0;
|
|
12671
12710
|
}
|
|
12672
12711
|
|
|
@@ -14015,7 +14054,8 @@ kendo-label > .k-label {
|
|
|
14015
14054
|
border: 0;
|
|
14016
14055
|
}
|
|
14017
14056
|
|
|
14018
|
-
.k-form .k-form-fieldset > *:first-child
|
|
14057
|
+
.k-form .k-form-fieldset > *:not(.k-hidden):first-child,
|
|
14058
|
+
.k-form .k-form-fieldset > *.k-hidden + :not(.k-hidden) {
|
|
14019
14059
|
margin-top: 0;
|
|
14020
14060
|
}
|
|
14021
14061
|
|
|
@@ -14038,8 +14078,10 @@ kendo-label > .k-label {
|
|
|
14038
14078
|
margin-top: 1em;
|
|
14039
14079
|
}
|
|
14040
14080
|
|
|
14041
|
-
.k-form > *:first-child,
|
|
14042
|
-
.k-form
|
|
14081
|
+
.k-form > *:not(.k-hidden):first-child,
|
|
14082
|
+
.k-form > *.k-hidden + :not(.k-hidden),
|
|
14083
|
+
.k-form .k-daterangepicker .k-textbox-container:not(.k-hidden):first-child,
|
|
14084
|
+
.k-form .k-daterangepicker .k-textbox-container.k-hidden + :not(.k-hidden) {
|
|
14043
14085
|
margin-top: 0;
|
|
14044
14086
|
}
|
|
14045
14087
|
|
|
@@ -15641,11 +15683,13 @@ kendo-label.k-radio-label > .k-label {
|
|
|
15641
15683
|
}
|
|
15642
15684
|
|
|
15643
15685
|
.k-slider .k-button-increase {
|
|
15686
|
+
position: absolute;
|
|
15644
15687
|
right: 0;
|
|
15645
15688
|
top: 0;
|
|
15646
15689
|
}
|
|
15647
15690
|
|
|
15648
15691
|
.k-slider .k-button-decrease {
|
|
15692
|
+
position: absolute;
|
|
15649
15693
|
left: 0;
|
|
15650
15694
|
top: 0;
|
|
15651
15695
|
}
|
|
@@ -23729,7 +23773,7 @@ kendo-card-footer {
|
|
|
23729
23773
|
.k-tabstrip-items {
|
|
23730
23774
|
outline: 0;
|
|
23731
23775
|
display: flex;
|
|
23732
|
-
flex-
|
|
23776
|
+
flex-flow: row wrap;
|
|
23733
23777
|
flex: 0 0 auto;
|
|
23734
23778
|
}
|
|
23735
23779
|
|
|
@@ -27225,7 +27269,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
27225
27269
|
display: block;
|
|
27226
27270
|
}
|
|
27227
27271
|
|
|
27228
|
-
.k-listview-content.k-d-flex::after,
|
|
27272
|
+
.k-listview-content.k-d-flex::after, .k-listview-content.k-d-flex-row::after, .k-listview-content.k-d-flex-col::after,
|
|
27229
27273
|
.k-listview-content.k-d-grid::after {
|
|
27230
27274
|
display: none;
|
|
27231
27275
|
}
|
|
@@ -28595,19 +28639,19 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
28595
28639
|
user-select: none;
|
|
28596
28640
|
}
|
|
28597
28641
|
|
|
28598
|
-
.k-flex-row .k-pivotgrid-configurator-button,
|
|
28642
|
+
.k-flex-row .k-pivotgrid-configurator-button, .k-d-flex-row .k-pivotgrid-configurator-button,
|
|
28599
28643
|
.k-flex-row-reverse .k-pivotgrid-configurator-button {
|
|
28600
28644
|
display: flex;
|
|
28601
28645
|
align-items: center;
|
|
28602
28646
|
}
|
|
28603
28647
|
|
|
28604
|
-
.k-flex-row .k-pivotgrid-configurator-button span,
|
|
28648
|
+
.k-flex-row .k-pivotgrid-configurator-button span, .k-d-flex-row .k-pivotgrid-configurator-button span,
|
|
28605
28649
|
.k-flex-row-reverse .k-pivotgrid-configurator-button span {
|
|
28606
28650
|
-ms-writing-mode: tb-rl;
|
|
28607
28651
|
writing-mode: vertical-rl;
|
|
28608
28652
|
}
|
|
28609
28653
|
|
|
28610
|
-
.k-flex-row .k-pivotgrid-configurator-button .k-icon,
|
|
28654
|
+
.k-flex-row .k-pivotgrid-configurator-button .k-icon, .k-d-flex-row .k-pivotgrid-configurator-button .k-icon,
|
|
28611
28655
|
.k-flex-row-reverse .k-pivotgrid-configurator-button .k-icon {
|
|
28612
28656
|
vertical-align: baseline;
|
|
28613
28657
|
}
|
|
@@ -28616,7 +28660,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
28616
28660
|
transform: rotate(-180deg);
|
|
28617
28661
|
}
|
|
28618
28662
|
|
|
28619
|
-
.k-flex-col .k-pivotgrid-configurator-button, .k-flex-column .k-pivotgrid-configurator-button,
|
|
28663
|
+
.k-flex-col .k-pivotgrid-configurator-button, .k-d-flex-col .k-pivotgrid-configurator-button, .k-flex-column .k-pivotgrid-configurator-button,
|
|
28620
28664
|
.k-flex-col-reverse .k-pivotgrid-configurator-button,
|
|
28621
28665
|
.k-flex-column-reverse .k-pivotgrid-configurator-button {
|
|
28622
28666
|
text-align: center;
|
|
@@ -28628,7 +28672,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
28628
28672
|
z-index: 2;
|
|
28629
28673
|
}
|
|
28630
28674
|
|
|
28631
|
-
.k-flex-row .k-pivotgrid-configurator-overlay {
|
|
28675
|
+
.k-flex-row .k-pivotgrid-configurator-overlay, .k-d-flex-row .k-pivotgrid-configurator-overlay {
|
|
28632
28676
|
right: calc(1.4285714286em + 10px);
|
|
28633
28677
|
}
|
|
28634
28678
|
|
|
@@ -28636,7 +28680,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
28636
28680
|
left: calc(1.4285714286em + 10px);
|
|
28637
28681
|
}
|
|
28638
28682
|
|
|
28639
|
-
.k-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
|
|
28683
|
+
.k-flex-col .k-pivotgrid-configurator-overlay, .k-d-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
|
|
28640
28684
|
bottom: calc(1.4285714286em + 10px);
|
|
28641
28685
|
}
|
|
28642
28686
|
|
|
@@ -28774,7 +28818,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
28774
28818
|
min-width: 320px;
|
|
28775
28819
|
}
|
|
28776
28820
|
|
|
28777
|
-
.k-flex-row .k-pivotgrid-configurator-vertical.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel,
|
|
28821
|
+
.k-flex-row .k-pivotgrid-configurator-vertical.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel, .k-d-flex-row .k-pivotgrid-configurator-vertical.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel,
|
|
28778
28822
|
.k-flex-row-reverse .k-pivotgrid-configurator-vertical.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel {
|
|
28779
28823
|
border-right-width: 0;
|
|
28780
28824
|
border-left-width: 0;
|
|
@@ -28828,7 +28872,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
28828
28872
|
overflow-y: auto;
|
|
28829
28873
|
}
|
|
28830
28874
|
|
|
28831
|
-
.k-flex-col .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel, .k-flex-column .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel,
|
|
28875
|
+
.k-flex-col .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel, .k-d-flex-col .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel, .k-flex-column .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel,
|
|
28832
28876
|
.k-flex-col-reverse .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel,
|
|
28833
28877
|
.k-flex-column-reverse .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel {
|
|
28834
28878
|
border-top-width: 0;
|
|
@@ -29178,7 +29222,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
29178
29222
|
border-color: rgba(0, 0, 0, 0.08);
|
|
29179
29223
|
}
|
|
29180
29224
|
|
|
29181
|
-
.k-flex-row .k-pivotgrid-configurator-overlay {
|
|
29225
|
+
.k-flex-row .k-pivotgrid-configurator-overlay, .k-d-flex-row .k-pivotgrid-configurator-overlay {
|
|
29182
29226
|
box-shadow: -3px 0px 6px rgba(0, 0, 0, 0.16);
|
|
29183
29227
|
}
|
|
29184
29228
|
|
|
@@ -29186,7 +29230,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
29186
29230
|
box-shadow: 3px 0px 6px rgba(0, 0, 0, 0.16);
|
|
29187
29231
|
}
|
|
29188
29232
|
|
|
29189
|
-
.k-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
|
|
29233
|
+
.k-flex-col .k-pivotgrid-configurator-overlay, .k-d-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
|
|
29190
29234
|
box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.16);
|
|
29191
29235
|
}
|
|
29192
29236
|
|
package/dist/all.scss
CHANGED
|
@@ -3454,34 +3454,42 @@ $display4-letter-spacing: null !default;
|
|
|
3454
3454
|
/// @description This is equivalent to `display: flex`. It defines a flex container and enables a flex context for all its direct children. Think of flex items as primarily laying out either in horizontal rows or vertical columns.
|
|
3455
3455
|
/// @group flex-layout
|
|
3456
3456
|
.k-d-flex { display: flex; }
|
|
3457
|
+
.\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
|
|
3457
3458
|
/// @name k-d-inline-flex
|
|
3458
3459
|
/// @description This is equivalent to `display: inline-flex`. It defines a flex container and enables a flex context for all its direct children. Think of flex items as primarily laying out either in horizontal rows or vertical columns.
|
|
3459
3460
|
/// @group flex-layout
|
|
3460
3461
|
.k-d-inline-flex { display: inline-flex; }
|
|
3462
|
+
.\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
|
|
3461
3463
|
/// @name k-d-flex-row
|
|
3462
3464
|
/// @description This is equivalent to `display: inline-flex` and `flex-direction: row`.
|
|
3463
3465
|
/// @group flex-layout
|
|
3464
|
-
.k-d-flex-row {
|
|
3466
|
+
.k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
|
|
3467
|
+
.\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
|
|
3465
3468
|
/// @name k-d-flex-col
|
|
3466
3469
|
/// @description This is equivalent to `display: inline-flex` and `flex-direction: column`.
|
|
3467
3470
|
/// @group flex-layout
|
|
3468
|
-
.k-d-flex-col {
|
|
3471
|
+
.k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
|
|
3472
|
+
.\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
|
|
3469
3473
|
/// @name k-flex-row
|
|
3470
3474
|
/// @description This is equivalent to `flex-direction: row`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: left to right in `ltr`; right to left in `rtl`.
|
|
3471
3475
|
/// @group flex-layout
|
|
3472
3476
|
.k-flex-row { flex-direction: row; }
|
|
3477
|
+
.\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
|
|
3473
3478
|
/// @name k-flex-row-reverse
|
|
3474
3479
|
/// @description This is equivalent to `flex-direction: row-reverse`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: right to left in `ltr`; left to right in `rtl`.
|
|
3475
3480
|
/// @group flex-layout
|
|
3476
3481
|
.k-flex-row-reverse { flex-direction: row-reverse; }
|
|
3482
|
+
.\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
|
|
3477
3483
|
/// @name k-flex-col
|
|
3478
3484
|
/// @description This is equivalent to `flex-direction: column`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: top to bottom.
|
|
3479
3485
|
/// @group flex-layout
|
|
3480
3486
|
.k-flex-col { flex-direction: column; }
|
|
3487
|
+
.\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
|
|
3481
3488
|
/// @name k-flex-col-reverse
|
|
3482
3489
|
/// @description This is equivalent to `flex-direction: column-reverse`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: bottom to top.
|
|
3483
3490
|
/// @group flex-layout
|
|
3484
3491
|
.k-flex-col-reverse { flex-direction: column-reverse; }
|
|
3492
|
+
.\!k-flex-col-reverse { flex-direction: column-reverse; } // sass-lint:disable-line no-important class-name-format
|
|
3485
3493
|
|
|
3486
3494
|
|
|
3487
3495
|
// Aliases
|
|
@@ -3536,7 +3544,7 @@ $display4-letter-spacing: null !default;
|
|
|
3536
3544
|
/// @group flex-layout
|
|
3537
3545
|
.k-flex-shrink { flex-shrink: 1; }
|
|
3538
3546
|
/// @name k-flex-shrink-0
|
|
3539
|
-
/// @description This is equivalent to `flex-shrink: 0`. The item will not
|
|
3547
|
+
/// @description This is equivalent to `flex-shrink: 0`. The item will not shrink.
|
|
3540
3548
|
/// @group flex-layout
|
|
3541
3549
|
.k-flex-shrink-0 { flex-shrink: 0; }
|
|
3542
3550
|
/// @name k-flex-basis-auto
|
|
@@ -8415,6 +8423,66 @@ $table-selected-border: $grid-selected-border !default;
|
|
|
8415
8423
|
// #endregion
|
|
8416
8424
|
|
|
8417
8425
|
|
|
8426
|
+
// #endregion
|
|
8427
|
+
// #region @import "virtual-scroller/_index.scss"; -> packages/default/scss/virtual-scroller/_index.scss
|
|
8428
|
+
// #region @import "../core/_index.scss"; -> packages/default/scss/core/_index.scss
|
|
8429
|
+
// File already imported_once. Skipping output.
|
|
8430
|
+
// #endregion
|
|
8431
|
+
|
|
8432
|
+
|
|
8433
|
+
// Dependencies
|
|
8434
|
+
|
|
8435
|
+
|
|
8436
|
+
// Component
|
|
8437
|
+
// #region @import "_variables.scss"; -> packages/default/scss/virtual-scroller/_variables.scss
|
|
8438
|
+
// Virtual-scroller
|
|
8439
|
+
|
|
8440
|
+
// #endregion
|
|
8441
|
+
// #region @import "_layout.scss"; -> packages/default/scss/virtual-scroller/_layout.scss
|
|
8442
|
+
@include exports( "virtual-scroller/layout" ) {
|
|
8443
|
+
|
|
8444
|
+
// Virtual scroller
|
|
8445
|
+
.k-virtual-scroller {
|
|
8446
|
+
width: 100%;
|
|
8447
|
+
height: 100%;
|
|
8448
|
+
flex: 1 1 auto;
|
|
8449
|
+
overflow: auto;
|
|
8450
|
+
position: relative;
|
|
8451
|
+
}
|
|
8452
|
+
|
|
8453
|
+
|
|
8454
|
+
// Virtual scroller wrap
|
|
8455
|
+
.k-virtual-scroller-wrap {
|
|
8456
|
+
position: relative;
|
|
8457
|
+
z-index: 1;
|
|
8458
|
+
}
|
|
8459
|
+
|
|
8460
|
+
|
|
8461
|
+
// Virtual scroller content
|
|
8462
|
+
.k-virtual-scroller-content {
|
|
8463
|
+
position: absolute;
|
|
8464
|
+
width: 100%;
|
|
8465
|
+
top: 0;
|
|
8466
|
+
inset-inline-start: 0;
|
|
8467
|
+
}
|
|
8468
|
+
|
|
8469
|
+
|
|
8470
|
+
// Virtual scroller size
|
|
8471
|
+
.k-virtual-scroller-size {
|
|
8472
|
+
position: relative;
|
|
8473
|
+
z-index: 0;
|
|
8474
|
+
}
|
|
8475
|
+
|
|
8476
|
+
}
|
|
8477
|
+
|
|
8478
|
+
// #endregion
|
|
8479
|
+
// #region @import "_theme.scss"; -> packages/default/scss/virtual-scroller/_theme.scss
|
|
8480
|
+
@include exports( "virtual-scroller/theme" ) {
|
|
8481
|
+
|
|
8482
|
+
}
|
|
8483
|
+
|
|
8484
|
+
// #endregion
|
|
8485
|
+
|
|
8418
8486
|
// #endregion
|
|
8419
8487
|
|
|
8420
8488
|
|
|
@@ -9632,8 +9700,8 @@ $color-preview-no-color-bg: $white !default;
|
|
|
9632
9700
|
$color-preview-no-color-text: $error !default;
|
|
9633
9701
|
$color-preview-no-color-border: null !default;
|
|
9634
9702
|
|
|
9635
|
-
|
|
9636
|
-
$color-preview-
|
|
9703
|
+
$color-preview-no-color-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' version='1.1'><line x1='0' x2='20' y1='0' y2='20' stroke='#{$color-preview-no-color-text}' stroke-width='1'/></svg>") ) !default;
|
|
9704
|
+
$color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAuSURBVHgBxYyxDQAwDMJIL+YT+DjtzFRliUfLcklqBCRT4eCTxbD6kdL2/LgYXqpvCbs3kBv/AAAAAElFTkSuQmCC") !default;
|
|
9637
9705
|
|
|
9638
9706
|
// #endregion
|
|
9639
9707
|
// #region @import "_layout.scss"; -> packages/default/scss/color-preview/_layout.scss
|
|
@@ -9665,7 +9733,7 @@ $color-preview-no-color-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUg
|
|
|
9665
9733
|
}
|
|
9666
9734
|
|
|
9667
9735
|
// No Color
|
|
9668
|
-
.k-no-color::
|
|
9736
|
+
.k-no-color::before {
|
|
9669
9737
|
content: "";
|
|
9670
9738
|
width: 100%;
|
|
9671
9739
|
height: 100%;
|
|
@@ -9689,7 +9757,7 @@ $color-preview-no-color-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUg
|
|
|
9689
9757
|
);
|
|
9690
9758
|
|
|
9691
9759
|
&::before {
|
|
9692
|
-
background:
|
|
9760
|
+
background: $color-preview-transparent-color-image;
|
|
9693
9761
|
background-size: contain;
|
|
9694
9762
|
background-position: 0;
|
|
9695
9763
|
}
|
|
@@ -9702,10 +9770,10 @@ $color-preview-no-color-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUg
|
|
|
9702
9770
|
}
|
|
9703
9771
|
|
|
9704
9772
|
// No Color
|
|
9705
|
-
.k-no-color::
|
|
9773
|
+
.k-no-color::before {
|
|
9706
9774
|
background-color: $color-preview-no-color-bg;
|
|
9707
9775
|
background-image: $color-preview-no-color-image;
|
|
9708
|
-
background-size:
|
|
9776
|
+
background-size: 100% 100%;
|
|
9709
9777
|
background-position: 0 0;
|
|
9710
9778
|
}
|
|
9711
9779
|
|
|
@@ -11878,7 +11946,8 @@ $fieldset-legend-border: null !default;
|
|
|
11878
11946
|
border: 0;
|
|
11879
11947
|
|
|
11880
11948
|
> * {
|
|
11881
|
-
&:first-child
|
|
11949
|
+
&:not(.k-hidden):first-child,
|
|
11950
|
+
&.k-hidden + :not(.k-hidden) {
|
|
11882
11951
|
margin-top: 0;
|
|
11883
11952
|
}
|
|
11884
11953
|
}
|
|
@@ -11907,7 +11976,8 @@ $fieldset-legend-border: null !default;
|
|
|
11907
11976
|
|
|
11908
11977
|
> *,
|
|
11909
11978
|
.k-daterangepicker .k-textbox-container {
|
|
11910
|
-
&:first-child
|
|
11979
|
+
&:not(.k-hidden):first-child,
|
|
11980
|
+
&.k-hidden + :not(.k-hidden) {
|
|
11911
11981
|
margin-top: 0;
|
|
11912
11982
|
}
|
|
11913
11983
|
}
|
|
@@ -14492,11 +14562,13 @@ $slider-disabled-opacity: null !default;
|
|
|
14492
14562
|
}
|
|
14493
14563
|
|
|
14494
14564
|
.k-button-increase {
|
|
14565
|
+
position: absolute;
|
|
14495
14566
|
right: 0;
|
|
14496
14567
|
top: 0;
|
|
14497
14568
|
}
|
|
14498
14569
|
|
|
14499
14570
|
.k-button-decrease {
|
|
14571
|
+
position: absolute;
|
|
14500
14572
|
left: 0;
|
|
14501
14573
|
top: 0;
|
|
14502
14574
|
}
|
|
@@ -26398,7 +26470,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
26398
26470
|
.k-tabstrip-items {
|
|
26399
26471
|
outline: 0;
|
|
26400
26472
|
display: flex;
|
|
26401
|
-
flex-
|
|
26473
|
+
flex-flow: row wrap;
|
|
26402
26474
|
flex: 0 0 auto;
|
|
26403
26475
|
|
|
26404
26476
|
.k-item {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-default",
|
|
3
3
|
"description": "SASS resources for the default Kendo UI theme",
|
|
4
|
-
"version": "4.43.1-dev.
|
|
4
|
+
"version": "4.43.1-dev.3",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"dart:flat": "gulp dart:flat",
|
|
48
48
|
"prepublishOnly": "echo 'no prebublish for default theme'"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "17b6139d64d5dab2c8687e0f2e50fda466679766"
|
|
51
51
|
}
|
|
File without changes
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
);
|
|
10
10
|
|
|
11
11
|
&::before {
|
|
12
|
-
background:
|
|
12
|
+
background: $color-preview-transparent-color-image;
|
|
13
13
|
background-size: contain;
|
|
14
14
|
background-position: 0;
|
|
15
15
|
}
|
|
@@ -22,10 +22,10 @@
|
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
// No Color
|
|
25
|
-
.k-no-color::
|
|
25
|
+
.k-no-color::before {
|
|
26
26
|
background-color: $color-preview-no-color-bg;
|
|
27
27
|
background-image: $color-preview-no-color-image;
|
|
28
|
-
background-size:
|
|
28
|
+
background-size: 100% 100%;
|
|
29
29
|
background-position: 0 0;
|
|
30
30
|
}
|
|
31
31
|
|
|
@@ -10,5 +10,5 @@ $color-preview-no-color-bg: $white !default;
|
|
|
10
10
|
$color-preview-no-color-text: $error !default;
|
|
11
11
|
$color-preview-no-color-border: null !default;
|
|
12
12
|
|
|
13
|
-
|
|
14
|
-
$color-preview-
|
|
13
|
+
$color-preview-no-color-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' version='1.1'><line x1='0' x2='20' y1='0' y2='20' stroke='#{$color-preview-no-color-text}' stroke-width='1'/></svg>") ) !default;
|
|
14
|
+
$color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAuSURBVHgBxYyxDQAwDMJIL+YT+DjtzFRliUfLcklqBCRT4eCTxbD6kdL2/LgYXqpvCbs3kBv/AAAAAElFTkSuQmCC") !default;
|
package/scss/forms/_layout.scss
CHANGED
|
@@ -83,7 +83,8 @@
|
|
|
83
83
|
border: 0;
|
|
84
84
|
|
|
85
85
|
> * {
|
|
86
|
-
&:first-child
|
|
86
|
+
&:not(.k-hidden):first-child,
|
|
87
|
+
&.k-hidden + :not(.k-hidden) {
|
|
87
88
|
margin-top: 0;
|
|
88
89
|
}
|
|
89
90
|
}
|
|
@@ -112,7 +113,8 @@
|
|
|
112
113
|
|
|
113
114
|
> *,
|
|
114
115
|
.k-daterangepicker .k-textbox-container {
|
|
115
|
-
&:first-child
|
|
116
|
+
&:not(.k-hidden):first-child,
|
|
117
|
+
&.k-hidden + :not(.k-hidden) {
|
|
116
118
|
margin-top: 0;
|
|
117
119
|
}
|
|
118
120
|
}
|
package/scss/index.scss
CHANGED
package/scss/slider/_layout.scss
CHANGED
package/scss/utils/_flex.scss
CHANGED
|
@@ -8,34 +8,42 @@
|
|
|
8
8
|
/// @description This is equivalent to `display: flex`. It defines a flex container and enables a flex context for all its direct children. Think of flex items as primarily laying out either in horizontal rows or vertical columns.
|
|
9
9
|
/// @group flex-layout
|
|
10
10
|
.k-d-flex { display: flex; }
|
|
11
|
+
.\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
|
|
11
12
|
/// @name k-d-inline-flex
|
|
12
13
|
/// @description This is equivalent to `display: inline-flex`. It defines a flex container and enables a flex context for all its direct children. Think of flex items as primarily laying out either in horizontal rows or vertical columns.
|
|
13
14
|
/// @group flex-layout
|
|
14
15
|
.k-d-inline-flex { display: inline-flex; }
|
|
16
|
+
.\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
|
|
15
17
|
/// @name k-d-flex-row
|
|
16
18
|
/// @description This is equivalent to `display: inline-flex` and `flex-direction: row`.
|
|
17
19
|
/// @group flex-layout
|
|
18
|
-
.k-d-flex-row {
|
|
20
|
+
.k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
|
|
21
|
+
.\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
|
|
19
22
|
/// @name k-d-flex-col
|
|
20
23
|
/// @description This is equivalent to `display: inline-flex` and `flex-direction: column`.
|
|
21
24
|
/// @group flex-layout
|
|
22
|
-
.k-d-flex-col {
|
|
25
|
+
.k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
|
|
26
|
+
.\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
|
|
23
27
|
/// @name k-flex-row
|
|
24
28
|
/// @description This is equivalent to `flex-direction: row`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: left to right in `ltr`; right to left in `rtl`.
|
|
25
29
|
/// @group flex-layout
|
|
26
30
|
.k-flex-row { flex-direction: row; }
|
|
31
|
+
.\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
|
|
27
32
|
/// @name k-flex-row-reverse
|
|
28
33
|
/// @description This is equivalent to `flex-direction: row-reverse`. This establishes the main-axis to be horizontal, thus defining the direction flex items are placed in the flex container: right to left in `ltr`; left to right in `rtl`.
|
|
29
34
|
/// @group flex-layout
|
|
30
35
|
.k-flex-row-reverse { flex-direction: row-reverse; }
|
|
36
|
+
.\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
|
|
31
37
|
/// @name k-flex-col
|
|
32
38
|
/// @description This is equivalent to `flex-direction: column`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: top to bottom.
|
|
33
39
|
/// @group flex-layout
|
|
34
40
|
.k-flex-col { flex-direction: column; }
|
|
41
|
+
.\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
|
|
35
42
|
/// @name k-flex-col-reverse
|
|
36
43
|
/// @description This is equivalent to `flex-direction: column-reverse`. This establishes the main-axis to be vertical, thus defining the direction flex items are placed in the flex container: bottom to top.
|
|
37
44
|
/// @group flex-layout
|
|
38
45
|
.k-flex-col-reverse { flex-direction: column-reverse; }
|
|
46
|
+
.\!k-flex-col-reverse { flex-direction: column-reverse; } // sass-lint:disable-line no-important class-name-format
|
|
39
47
|
|
|
40
48
|
|
|
41
49
|
// Aliases
|
|
@@ -90,7 +98,7 @@
|
|
|
90
98
|
/// @group flex-layout
|
|
91
99
|
.k-flex-shrink { flex-shrink: 1; }
|
|
92
100
|
/// @name k-flex-shrink-0
|
|
93
|
-
/// @description This is equivalent to `flex-shrink: 0`. The item will not
|
|
101
|
+
/// @description This is equivalent to `flex-shrink: 0`. The item will not shrink.
|
|
94
102
|
/// @group flex-layout
|
|
95
103
|
.k-flex-shrink-0 { flex-shrink: 0; }
|
|
96
104
|
/// @name k-flex-basis-auto
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
@include exports( "virtual-scroller/layout" ) {
|
|
2
|
+
|
|
3
|
+
// Virtual scroller
|
|
4
|
+
.k-virtual-scroller {
|
|
5
|
+
width: 100%;
|
|
6
|
+
height: 100%;
|
|
7
|
+
flex: 1 1 auto;
|
|
8
|
+
overflow: auto;
|
|
9
|
+
position: relative;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
// Virtual scroller wrap
|
|
14
|
+
.k-virtual-scroller-wrap {
|
|
15
|
+
position: relative;
|
|
16
|
+
z-index: 1;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
// Virtual scroller content
|
|
21
|
+
.k-virtual-scroller-content {
|
|
22
|
+
position: absolute;
|
|
23
|
+
width: 100%;
|
|
24
|
+
top: 0;
|
|
25
|
+
inset-inline-start: 0;
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
// Virtual scroller size
|
|
30
|
+
.k-virtual-scroller-size {
|
|
31
|
+
position: relative;
|
|
32
|
+
z-index: 0;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// Virtual-scroller
|