@progress/kendo-theme-bootstrap 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 +90 -12
- package/modules/@progress/kendo-theme-default/package.json +2 -2
- package/modules/@progress/kendo-theme-default/scss/_layout.scss +0 -0
- package/modules/@progress/kendo-theme-default/scss/color-preview/_layout.scss +1 -1
- package/modules/@progress/kendo-theme-default/scss/color-preview/_theme.scss +3 -3
- package/modules/@progress/kendo-theme-default/scss/color-preview/_variables.scss +2 -2
- package/modules/@progress/kendo-theme-default/scss/forms/_layout.scss +4 -2
- package/modules/@progress/kendo-theme-default/scss/index.scss +1 -0
- package/modules/@progress/kendo-theme-default/scss/slider/_layout.scss +2 -0
- package/modules/@progress/kendo-theme-default/scss/tabstrip/_layout.scss +1 -1
- package/modules/@progress/kendo-theme-default/scss/utils/_flex.scss +11 -3
- package/modules/@progress/kendo-theme-default/scss/virtual-scroller/_index.scss +10 -0
- package/modules/@progress/kendo-theme-default/scss/virtual-scroller/_layout.scss +35 -0
- package/modules/@progress/kendo-theme-default/scss/virtual-scroller/_theme.scss +3 -0
- package/modules/@progress/kendo-theme-default/scss/virtual-scroller/_variables.scss +1 -0
- package/package.json +3 -3
- package/scss/color-preview/_variables.scss +2 -2
- package/scss/index.scss +1 -0
- package/scss/virtual-scroller/_index.scss +10 -0
- package/scss/virtual-scroller/_layout.scss +1 -0
- package/scss/virtual-scroller/_theme.scss +1 -0
- package/scss/virtual-scroller/_variables.scss +1 -0
package/dist/all.css
CHANGED
|
@@ -2035,40 +2035,54 @@ kendo-sortable {
|
|
|
2035
2035
|
display: none !important;
|
|
2036
2036
|
}
|
|
2037
2037
|
|
|
2038
|
-
.k-d-flex {
|
|
2038
|
+
.k-d-flex, .k-d-flex-row, .k-d-flex-col {
|
|
2039
2039
|
display: flex;
|
|
2040
2040
|
}
|
|
2041
2041
|
|
|
2042
|
+
.\!k-d-flex, .\!k-d-flex-row, .\!k-d-flex-col {
|
|
2043
|
+
display: flex !important;
|
|
2044
|
+
}
|
|
2045
|
+
|
|
2042
2046
|
.k-d-inline-flex {
|
|
2043
2047
|
display: inline-flex;
|
|
2044
2048
|
}
|
|
2045
2049
|
|
|
2046
|
-
|
|
2047
|
-
display: flex;
|
|
2048
|
-
flex-direction: row;
|
|
2050
|
+
.\!k-d-inline-flex {
|
|
2051
|
+
display: inline-flex !important;
|
|
2049
2052
|
}
|
|
2050
2053
|
|
|
2051
|
-
.k-d-flex-
|
|
2052
|
-
|
|
2053
|
-
flex-direction: column;
|
|
2054
|
+
.k-flex-row, .k-d-flex-row {
|
|
2055
|
+
flex-direction: row;
|
|
2054
2056
|
}
|
|
2055
2057
|
|
|
2056
|
-
|
|
2057
|
-
flex-direction: row;
|
|
2058
|
+
.\!k-flex-row, .\!k-d-flex-row, .\!k-d-flex-col {
|
|
2059
|
+
flex-direction: row !important;
|
|
2058
2060
|
}
|
|
2059
2061
|
|
|
2060
2062
|
.k-flex-row-reverse {
|
|
2061
2063
|
flex-direction: row-reverse;
|
|
2062
2064
|
}
|
|
2063
2065
|
|
|
2064
|
-
|
|
2066
|
+
.\!k-flex-row-reverse {
|
|
2067
|
+
flex-direction: row-reverse !important;
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
.k-flex-col, .k-d-flex-col, .k-flex-column {
|
|
2065
2071
|
flex-direction: column;
|
|
2066
2072
|
}
|
|
2067
2073
|
|
|
2074
|
+
.\!k-flex-col {
|
|
2075
|
+
flex-direction: column !important;
|
|
2076
|
+
}
|
|
2077
|
+
|
|
2068
2078
|
.k-flex-col-reverse, .k-flex-column-reverse {
|
|
2069
2079
|
flex-direction: column-reverse;
|
|
2070
2080
|
}
|
|
2071
2081
|
|
|
2082
|
+
.\!k-flex-col-reverse {
|
|
2083
|
+
flex-direction: column-reverse;
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2072
2086
|
.k-flex-wrap {
|
|
2073
2087
|
flex-wrap: wrap;
|
|
2074
2088
|
}
|
|
@@ -11872,6 +11886,31 @@ kendo-list > .k-group-header,
|
|
|
11872
11886
|
background-color: rgba(13, 110, 253, 0.25);
|
|
11873
11887
|
}
|
|
11874
11888
|
|
|
11889
|
+
.k-virtual-scroller {
|
|
11890
|
+
width: 100%;
|
|
11891
|
+
height: 100%;
|
|
11892
|
+
flex: 1 1 auto;
|
|
11893
|
+
overflow: auto;
|
|
11894
|
+
position: relative;
|
|
11895
|
+
}
|
|
11896
|
+
|
|
11897
|
+
.k-virtual-scroller-wrap {
|
|
11898
|
+
position: relative;
|
|
11899
|
+
z-index: 1;
|
|
11900
|
+
}
|
|
11901
|
+
|
|
11902
|
+
.k-virtual-scroller-content {
|
|
11903
|
+
position: absolute;
|
|
11904
|
+
width: 100%;
|
|
11905
|
+
top: 0;
|
|
11906
|
+
inset-inline-start: 0;
|
|
11907
|
+
}
|
|
11908
|
+
|
|
11909
|
+
.k-virtual-scroller-size {
|
|
11910
|
+
position: relative;
|
|
11911
|
+
z-index: 0;
|
|
11912
|
+
}
|
|
11913
|
+
|
|
11875
11914
|
.k-avatar {
|
|
11876
11915
|
border-width: 0;
|
|
11877
11916
|
border-style: solid;
|
|
@@ -12729,7 +12768,7 @@ kendo-badge-container {
|
|
|
12729
12768
|
cursor: pointer;
|
|
12730
12769
|
}
|
|
12731
12770
|
|
|
12732
|
-
.k-no-color::
|
|
12771
|
+
.k-no-color::before {
|
|
12733
12772
|
content: "";
|
|
12734
12773
|
width: 100%;
|
|
12735
12774
|
height: 100%;
|
|
@@ -12752,10 +12791,10 @@ kendo-badge-container {
|
|
|
12752
12791
|
border-color: #d6d9dc;
|
|
12753
12792
|
}
|
|
12754
12793
|
|
|
12755
|
-
.k-no-color::
|
|
12794
|
+
.k-no-color::before {
|
|
12756
12795
|
background-color: #ffffff;
|
|
12757
|
-
background-image: url("data:image/
|
|
12758
|
-
background-size:
|
|
12796
|
+
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='%23dc3545' stroke-width='1'/%3e%3c/svg%3e");
|
|
12797
|
+
background-size: 100% 100%;
|
|
12759
12798
|
background-position: 0 0;
|
|
12760
12799
|
}
|
|
12761
12800
|
|
|
@@ -14093,7 +14132,8 @@ kendo-label > .k-label {
|
|
|
14093
14132
|
border: 0;
|
|
14094
14133
|
}
|
|
14095
14134
|
|
|
14096
|
-
.k-form .k-form-fieldset > *:first-child
|
|
14135
|
+
.k-form .k-form-fieldset > *:not(.k-hidden):first-child,
|
|
14136
|
+
.k-form .k-form-fieldset > *.k-hidden + :not(.k-hidden) {
|
|
14097
14137
|
margin-top: 0;
|
|
14098
14138
|
}
|
|
14099
14139
|
|
|
@@ -14116,8 +14156,10 @@ kendo-label > .k-label {
|
|
|
14116
14156
|
margin-top: 1rem;
|
|
14117
14157
|
}
|
|
14118
14158
|
|
|
14119
|
-
.k-form > *:first-child,
|
|
14120
|
-
.k-form
|
|
14159
|
+
.k-form > *:not(.k-hidden):first-child,
|
|
14160
|
+
.k-form > *.k-hidden + :not(.k-hidden),
|
|
14161
|
+
.k-form .k-daterangepicker .k-textbox-container:not(.k-hidden):first-child,
|
|
14162
|
+
.k-form .k-daterangepicker .k-textbox-container.k-hidden + :not(.k-hidden) {
|
|
14121
14163
|
margin-top: 0;
|
|
14122
14164
|
}
|
|
14123
14165
|
|
|
@@ -15726,11 +15768,13 @@ kendo-label.k-radio-label > .k-label {
|
|
|
15726
15768
|
}
|
|
15727
15769
|
|
|
15728
15770
|
.k-slider .k-button-increase {
|
|
15771
|
+
position: absolute;
|
|
15729
15772
|
right: 0;
|
|
15730
15773
|
top: 0;
|
|
15731
15774
|
}
|
|
15732
15775
|
|
|
15733
15776
|
.k-slider .k-button-decrease {
|
|
15777
|
+
position: absolute;
|
|
15734
15778
|
left: 0;
|
|
15735
15779
|
top: 0;
|
|
15736
15780
|
}
|
|
@@ -24090,7 +24134,7 @@ kendo-card-footer {
|
|
|
24090
24134
|
.k-tabstrip-items {
|
|
24091
24135
|
outline: 0;
|
|
24092
24136
|
display: flex;
|
|
24093
|
-
flex-
|
|
24137
|
+
flex-flow: row wrap;
|
|
24094
24138
|
flex: 0 0 auto;
|
|
24095
24139
|
}
|
|
24096
24140
|
|
|
@@ -27603,7 +27647,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
27603
27647
|
display: block;
|
|
27604
27648
|
}
|
|
27605
27649
|
|
|
27606
|
-
.k-listview-content.k-d-flex::after,
|
|
27650
|
+
.k-listview-content.k-d-flex::after, .k-listview-content.k-d-flex-row::after, .k-listview-content.k-d-flex-col::after,
|
|
27607
27651
|
.k-listview-content.k-d-grid::after {
|
|
27608
27652
|
display: none;
|
|
27609
27653
|
}
|
|
@@ -28982,19 +29026,19 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
28982
29026
|
user-select: none;
|
|
28983
29027
|
}
|
|
28984
29028
|
|
|
28985
|
-
.k-flex-row .k-pivotgrid-configurator-button,
|
|
29029
|
+
.k-flex-row .k-pivotgrid-configurator-button, .k-d-flex-row .k-pivotgrid-configurator-button,
|
|
28986
29030
|
.k-flex-row-reverse .k-pivotgrid-configurator-button {
|
|
28987
29031
|
display: flex;
|
|
28988
29032
|
align-items: center;
|
|
28989
29033
|
}
|
|
28990
29034
|
|
|
28991
|
-
.k-flex-row .k-pivotgrid-configurator-button span,
|
|
29035
|
+
.k-flex-row .k-pivotgrid-configurator-button span, .k-d-flex-row .k-pivotgrid-configurator-button span,
|
|
28992
29036
|
.k-flex-row-reverse .k-pivotgrid-configurator-button span {
|
|
28993
29037
|
-ms-writing-mode: tb-rl;
|
|
28994
29038
|
writing-mode: vertical-rl;
|
|
28995
29039
|
}
|
|
28996
29040
|
|
|
28997
|
-
.k-flex-row .k-pivotgrid-configurator-button .k-icon,
|
|
29041
|
+
.k-flex-row .k-pivotgrid-configurator-button .k-icon, .k-d-flex-row .k-pivotgrid-configurator-button .k-icon,
|
|
28998
29042
|
.k-flex-row-reverse .k-pivotgrid-configurator-button .k-icon {
|
|
28999
29043
|
vertical-align: baseline;
|
|
29000
29044
|
}
|
|
@@ -29003,7 +29047,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
29003
29047
|
transform: rotate(-180deg);
|
|
29004
29048
|
}
|
|
29005
29049
|
|
|
29006
|
-
.k-flex-col .k-pivotgrid-configurator-button, .k-flex-column .k-pivotgrid-configurator-button,
|
|
29050
|
+
.k-flex-col .k-pivotgrid-configurator-button, .k-d-flex-col .k-pivotgrid-configurator-button, .k-flex-column .k-pivotgrid-configurator-button,
|
|
29007
29051
|
.k-flex-col-reverse .k-pivotgrid-configurator-button,
|
|
29008
29052
|
.k-flex-column-reverse .k-pivotgrid-configurator-button {
|
|
29009
29053
|
text-align: center;
|
|
@@ -29015,7 +29059,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
29015
29059
|
z-index: 2;
|
|
29016
29060
|
}
|
|
29017
29061
|
|
|
29018
|
-
.k-flex-row .k-pivotgrid-configurator-overlay {
|
|
29062
|
+
.k-flex-row .k-pivotgrid-configurator-overlay, .k-d-flex-row .k-pivotgrid-configurator-overlay {
|
|
29019
29063
|
right: calc(1.5em + 0.5rem + 2px);
|
|
29020
29064
|
}
|
|
29021
29065
|
|
|
@@ -29023,7 +29067,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
29023
29067
|
left: calc(1.5em + 0.5rem + 2px);
|
|
29024
29068
|
}
|
|
29025
29069
|
|
|
29026
|
-
.k-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
|
|
29070
|
+
.k-flex-col .k-pivotgrid-configurator-overlay, .k-d-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
|
|
29027
29071
|
bottom: calc(1.5em + 0.5rem + 2px);
|
|
29028
29072
|
}
|
|
29029
29073
|
|
|
@@ -29161,7 +29205,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
29161
29205
|
min-width: 320px;
|
|
29162
29206
|
}
|
|
29163
29207
|
|
|
29164
|
-
.k-flex-row .k-pivotgrid-configurator-vertical.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel,
|
|
29208
|
+
.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,
|
|
29165
29209
|
.k-flex-row-reverse .k-pivotgrid-configurator-vertical.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel {
|
|
29166
29210
|
border-right-width: 0;
|
|
29167
29211
|
border-left-width: 0;
|
|
@@ -29215,7 +29259,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
29215
29259
|
overflow-y: auto;
|
|
29216
29260
|
}
|
|
29217
29261
|
|
|
29218
|
-
.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,
|
|
29262
|
+
.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,
|
|
29219
29263
|
.k-flex-col-reverse .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel,
|
|
29220
29264
|
.k-flex-column-reverse .k-pivotgrid-configurator-horizontal.k-pivotgrid-configurator-push .k-pivotgrid-configurator-panel {
|
|
29221
29265
|
border-top-width: 0;
|
|
@@ -29565,7 +29609,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
29565
29609
|
border-color: #dee2e6;
|
|
29566
29610
|
}
|
|
29567
29611
|
|
|
29568
|
-
.k-flex-row .k-pivotgrid-configurator-overlay {
|
|
29612
|
+
.k-flex-row .k-pivotgrid-configurator-overlay, .k-d-flex-row .k-pivotgrid-configurator-overlay {
|
|
29569
29613
|
box-shadow: -3px 0px 6px rgba(0, 0, 0, 0.16);
|
|
29570
29614
|
}
|
|
29571
29615
|
|
|
@@ -29573,7 +29617,7 @@ kendo-grid tr.k-state-hover .k-grid-content-sticky.k-state-selected {
|
|
|
29573
29617
|
box-shadow: 3px 0px 6px rgba(0, 0, 0, 0.16);
|
|
29574
29618
|
}
|
|
29575
29619
|
|
|
29576
|
-
.k-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
|
|
29620
|
+
.k-flex-col .k-pivotgrid-configurator-overlay, .k-d-flex-col .k-pivotgrid-configurator-overlay, .k-flex-column .k-pivotgrid-configurator-overlay {
|
|
29577
29621
|
box-shadow: 0px -3px 6px rgba(0, 0, 0, 0.16);
|
|
29578
29622
|
}
|
|
29579
29623
|
|
package/dist/all.scss
CHANGED
|
@@ -5541,34 +5541,42 @@ $utils-border-radius: (
|
|
|
5541
5541
|
/// @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.
|
|
5542
5542
|
/// @group flex-layout
|
|
5543
5543
|
.k-d-flex { display: flex; }
|
|
5544
|
+
.\!k-d-flex { display: flex !important; } // sass-lint:disable-line no-important class-name-format
|
|
5544
5545
|
/// @name k-d-inline-flex
|
|
5545
5546
|
/// @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.
|
|
5546
5547
|
/// @group flex-layout
|
|
5547
5548
|
.k-d-inline-flex { display: inline-flex; }
|
|
5549
|
+
.\!k-d-inline-flex { display: inline-flex !important; } // sass-lint:disable-line no-important class-name-format
|
|
5548
5550
|
/// @name k-d-flex-row
|
|
5549
5551
|
/// @description This is equivalent to `display: inline-flex` and `flex-direction: row`.
|
|
5550
5552
|
/// @group flex-layout
|
|
5551
|
-
.k-d-flex-row {
|
|
5553
|
+
.k-d-flex-row { @extend .k-d-flex, .k-flex-row; }
|
|
5554
|
+
.\!k-d-flex-row { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
|
|
5552
5555
|
/// @name k-d-flex-col
|
|
5553
5556
|
/// @description This is equivalent to `display: inline-flex` and `flex-direction: column`.
|
|
5554
5557
|
/// @group flex-layout
|
|
5555
|
-
.k-d-flex-col {
|
|
5558
|
+
.k-d-flex-col { @extend .k-d-flex, .k-flex-col; }
|
|
5559
|
+
.\!k-d-flex-col { @extend .\!k-d-flex, .\!k-flex-row; } // sass-lint:disable-line class-name-format
|
|
5556
5560
|
/// @name k-flex-row
|
|
5557
5561
|
/// @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`.
|
|
5558
5562
|
/// @group flex-layout
|
|
5559
5563
|
.k-flex-row { flex-direction: row; }
|
|
5564
|
+
.\!k-flex-row { flex-direction: row !important; } // sass-lint:disable-line no-important class-name-format
|
|
5560
5565
|
/// @name k-flex-row-reverse
|
|
5561
5566
|
/// @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`.
|
|
5562
5567
|
/// @group flex-layout
|
|
5563
5568
|
.k-flex-row-reverse { flex-direction: row-reverse; }
|
|
5569
|
+
.\!k-flex-row-reverse { flex-direction: row-reverse !important; } // sass-lint:disable-line no-important class-name-format
|
|
5564
5570
|
/// @name k-flex-col
|
|
5565
5571
|
/// @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.
|
|
5566
5572
|
/// @group flex-layout
|
|
5567
5573
|
.k-flex-col { flex-direction: column; }
|
|
5574
|
+
.\!k-flex-col { flex-direction: column !important; } // sass-lint:disable-line no-important class-name-format
|
|
5568
5575
|
/// @name k-flex-col-reverse
|
|
5569
5576
|
/// @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.
|
|
5570
5577
|
/// @group flex-layout
|
|
5571
5578
|
.k-flex-col-reverse { flex-direction: column-reverse; }
|
|
5579
|
+
.\!k-flex-col-reverse { flex-direction: column-reverse; } // sass-lint:disable-line no-important class-name-format
|
|
5572
5580
|
|
|
5573
5581
|
|
|
5574
5582
|
// Aliases
|
|
@@ -5623,7 +5631,7 @@ $utils-border-radius: (
|
|
|
5623
5631
|
/// @group flex-layout
|
|
5624
5632
|
.k-flex-shrink { flex-shrink: 1; }
|
|
5625
5633
|
/// @name k-flex-shrink-0
|
|
5626
|
-
/// @description This is equivalent to `flex-shrink: 0`. The item will not
|
|
5634
|
+
/// @description This is equivalent to `flex-shrink: 0`. The item will not shrink.
|
|
5627
5635
|
/// @group flex-layout
|
|
5628
5636
|
.k-flex-shrink-0 { flex-shrink: 0; }
|
|
5629
5637
|
/// @name k-flex-basis-auto
|
|
@@ -10707,6 +10715,72 @@ $table-selected-border: $grid-selected-border !default;
|
|
|
10707
10715
|
// #endregion
|
|
10708
10716
|
|
|
10709
10717
|
|
|
10718
|
+
// #endregion
|
|
10719
|
+
// #region @import "virtual-scroller/_index.scss"; -> packages/bootstrap/scss/virtual-scroller/_index.scss
|
|
10720
|
+
// #region @import "../core/_index.scss"; -> packages/bootstrap/scss/core/_index.scss
|
|
10721
|
+
// File already imported_once. Skipping output.
|
|
10722
|
+
// #endregion
|
|
10723
|
+
|
|
10724
|
+
|
|
10725
|
+
// Dependencies
|
|
10726
|
+
|
|
10727
|
+
|
|
10728
|
+
// Component
|
|
10729
|
+
// #region @import "_variables.scss"; -> packages/bootstrap/scss/virtual-scroller/_variables.scss
|
|
10730
|
+
// Virtual-scroller
|
|
10731
|
+
|
|
10732
|
+
// #endregion
|
|
10733
|
+
// #region @import "_layout.scss"; -> packages/bootstrap/scss/virtual-scroller/_layout.scss
|
|
10734
|
+
// #region @import "~@progress/kendo-theme-default/scss/virtual-scroller/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/virtual-scroller/_layout.scss
|
|
10735
|
+
@include exports( "virtual-scroller/layout" ) {
|
|
10736
|
+
|
|
10737
|
+
// Virtual scroller
|
|
10738
|
+
.k-virtual-scroller {
|
|
10739
|
+
width: 100%;
|
|
10740
|
+
height: 100%;
|
|
10741
|
+
flex: 1 1 auto;
|
|
10742
|
+
overflow: auto;
|
|
10743
|
+
position: relative;
|
|
10744
|
+
}
|
|
10745
|
+
|
|
10746
|
+
|
|
10747
|
+
// Virtual scroller wrap
|
|
10748
|
+
.k-virtual-scroller-wrap {
|
|
10749
|
+
position: relative;
|
|
10750
|
+
z-index: 1;
|
|
10751
|
+
}
|
|
10752
|
+
|
|
10753
|
+
|
|
10754
|
+
// Virtual scroller content
|
|
10755
|
+
.k-virtual-scroller-content {
|
|
10756
|
+
position: absolute;
|
|
10757
|
+
width: 100%;
|
|
10758
|
+
top: 0;
|
|
10759
|
+
inset-inline-start: 0;
|
|
10760
|
+
}
|
|
10761
|
+
|
|
10762
|
+
|
|
10763
|
+
// Virtual scroller size
|
|
10764
|
+
.k-virtual-scroller-size {
|
|
10765
|
+
position: relative;
|
|
10766
|
+
z-index: 0;
|
|
10767
|
+
}
|
|
10768
|
+
|
|
10769
|
+
}
|
|
10770
|
+
|
|
10771
|
+
// #endregion
|
|
10772
|
+
|
|
10773
|
+
// #endregion
|
|
10774
|
+
// #region @import "_theme.scss"; -> packages/bootstrap/scss/virtual-scroller/_theme.scss
|
|
10775
|
+
// #region @import "~@progress/kendo-theme-default/scss/virtual-scroller/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/virtual-scroller/_theme.scss
|
|
10776
|
+
@include exports( "virtual-scroller/theme" ) {
|
|
10777
|
+
|
|
10778
|
+
}
|
|
10779
|
+
|
|
10780
|
+
// #endregion
|
|
10781
|
+
|
|
10782
|
+
// #endregion
|
|
10783
|
+
|
|
10710
10784
|
// #endregion
|
|
10711
10785
|
|
|
10712
10786
|
|
|
@@ -11946,8 +12020,8 @@ $color-preview-no-color-bg: $white !default;
|
|
|
11946
12020
|
$color-preview-no-color-text: $error !default;
|
|
11947
12021
|
$color-preview-no-color-border: null !default;
|
|
11948
12022
|
|
|
11949
|
-
|
|
11950
|
-
$color-preview-
|
|
12023
|
+
$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;
|
|
12024
|
+
$color-preview-transparent-color-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAuSURBVHgBxYyxDQAwDMJIL+YT+DjtzFRliUfLcklqBCRT4eCTxbD6kdL2/LgYXqpvCbs3kBv/AAAAAElFTkSuQmCC") !default;
|
|
11951
12025
|
|
|
11952
12026
|
// #endregion
|
|
11953
12027
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/color-preview/_layout.scss
|
|
@@ -11980,7 +12054,7 @@ $color-preview-no-color-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUg
|
|
|
11980
12054
|
}
|
|
11981
12055
|
|
|
11982
12056
|
// No Color
|
|
11983
|
-
.k-no-color::
|
|
12057
|
+
.k-no-color::before {
|
|
11984
12058
|
content: "";
|
|
11985
12059
|
width: 100%;
|
|
11986
12060
|
height: 100%;
|
|
@@ -12007,7 +12081,7 @@ $color-preview-no-color-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUg
|
|
|
12007
12081
|
);
|
|
12008
12082
|
|
|
12009
12083
|
&::before {
|
|
12010
|
-
background:
|
|
12084
|
+
background: $color-preview-transparent-color-image;
|
|
12011
12085
|
background-size: contain;
|
|
12012
12086
|
background-position: 0;
|
|
12013
12087
|
}
|
|
@@ -12020,10 +12094,10 @@ $color-preview-no-color-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUg
|
|
|
12020
12094
|
}
|
|
12021
12095
|
|
|
12022
12096
|
// No Color
|
|
12023
|
-
.k-no-color::
|
|
12097
|
+
.k-no-color::before {
|
|
12024
12098
|
background-color: $color-preview-no-color-bg;
|
|
12025
12099
|
background-image: $color-preview-no-color-image;
|
|
12026
|
-
background-size:
|
|
12100
|
+
background-size: 100% 100%;
|
|
12027
12101
|
background-position: 0 0;
|
|
12028
12102
|
}
|
|
12029
12103
|
|
|
@@ -14238,7 +14312,8 @@ $fieldset-legend-border: null !default;
|
|
|
14238
14312
|
border: 0;
|
|
14239
14313
|
|
|
14240
14314
|
> * {
|
|
14241
|
-
&:first-child
|
|
14315
|
+
&:not(.k-hidden):first-child,
|
|
14316
|
+
&.k-hidden + :not(.k-hidden) {
|
|
14242
14317
|
margin-top: 0;
|
|
14243
14318
|
}
|
|
14244
14319
|
}
|
|
@@ -14267,7 +14342,8 @@ $fieldset-legend-border: null !default;
|
|
|
14267
14342
|
|
|
14268
14343
|
> *,
|
|
14269
14344
|
.k-daterangepicker .k-textbox-container {
|
|
14270
|
-
&:first-child
|
|
14345
|
+
&:not(.k-hidden):first-child,
|
|
14346
|
+
&.k-hidden + :not(.k-hidden) {
|
|
14271
14347
|
margin-top: 0;
|
|
14272
14348
|
}
|
|
14273
14349
|
}
|
|
@@ -16972,11 +17048,13 @@ $slider-disabled-opacity: null !default;
|
|
|
16972
17048
|
}
|
|
16973
17049
|
|
|
16974
17050
|
.k-button-increase {
|
|
17051
|
+
position: absolute;
|
|
16975
17052
|
right: 0;
|
|
16976
17053
|
top: 0;
|
|
16977
17054
|
}
|
|
16978
17055
|
|
|
16979
17056
|
.k-button-decrease {
|
|
17057
|
+
position: absolute;
|
|
16980
17058
|
left: 0;
|
|
16981
17059
|
top: 0;
|
|
16982
17060
|
}
|
|
@@ -29426,7 +29504,7 @@ $tabstrip-content-border-focused: $component-text !default;
|
|
|
29426
29504
|
.k-tabstrip-items {
|
|
29427
29505
|
outline: 0;
|
|
29428
29506
|
display: flex;
|
|
29429
|
-
flex-
|
|
29507
|
+
flex-flow: row wrap;
|
|
29430
29508
|
flex: 0 0 auto;
|
|
29431
29509
|
|
|
29432
29510
|
.k-item {
|
|
@@ -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;
|
|
@@ -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
|
}
|
|
@@ -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
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-bootstrap",
|
|
3
3
|
"description": "Bootstrap theme for Kendo UI",
|
|
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": [
|
|
@@ -50,8 +50,8 @@
|
|
|
50
50
|
"postpublish": "rm -rf modules && git checkout scss"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@progress/kendo-theme-default": "^4.43.1-dev.
|
|
53
|
+
"@progress/kendo-theme-default": "^4.43.1-dev.3",
|
|
54
54
|
"bootstrap": "^5.1.0"
|
|
55
55
|
},
|
|
56
|
-
"gitHead": "
|
|
56
|
+
"gitHead": "17b6139d64d5dab2c8687e0f2e50fda466679766"
|
|
57
57
|
}
|
|
@@ -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/index.scss
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "../../modules/@progress/kendo-theme-default/scss/virtual-scroller/_layout.scss";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import "../../modules/@progress/kendo-theme-default/scss/virtual-scroller/_theme.scss";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// Virtual-scroller
|