@progress/kendo-theme-material 7.2.1-dev.8 → 7.2.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 +8 -1
- package/dist/all.scss +5 -1
- package/lib/swatches/material-aqua-dark.json +1 -1
- package/lib/swatches/material-arctic.json +1 -1
- package/lib/swatches/material-burnt-teal.json +1 -1
- package/lib/swatches/material-dataviz-v4.json +1 -1
- package/lib/swatches/material-eggplant.json +1 -1
- package/lib/swatches/material-lime-dark.json +1 -1
- package/lib/swatches/material-lime.json +1 -1
- package/lib/swatches/material-main-dark.json +1 -1
- package/lib/swatches/material-main.json +1 -1
- package/lib/swatches/material-nova.json +1 -1
- package/lib/swatches/material-pacific-dark.json +1 -1
- package/lib/swatches/material-pacific.json +1 -1
- package/lib/swatches/material-sky-dark.json +1 -1
- package/lib/swatches/material-sky.json +1 -1
- package/lib/swatches/material-smoke.json +1 -1
- package/package.json +5 -5
package/dist/all.css
CHANGED
|
@@ -27571,12 +27571,15 @@ kendo-sortable {
|
|
|
27571
27571
|
outline: none;
|
|
27572
27572
|
}
|
|
27573
27573
|
|
|
27574
|
+
.k-table-list .k-table-row {
|
|
27575
|
+
position: relative;
|
|
27576
|
+
}
|
|
27577
|
+
|
|
27574
27578
|
.k-table-list .k-table-row,
|
|
27575
27579
|
.k-table-list .k-table-group-row {
|
|
27576
27580
|
width: 100%;
|
|
27577
27581
|
box-sizing: border-box;
|
|
27578
27582
|
display: table-row;
|
|
27579
|
-
position: relative;
|
|
27580
27583
|
}
|
|
27581
27584
|
|
|
27582
27585
|
.k-table-list .k-table-row.k-first {
|
|
@@ -27588,6 +27591,10 @@ kendo-sortable {
|
|
|
27588
27591
|
vertical-align: middle;
|
|
27589
27592
|
}
|
|
27590
27593
|
|
|
27594
|
+
.k-table-list .k-table-group-row {
|
|
27595
|
+
position: sticky;
|
|
27596
|
+
}
|
|
27597
|
+
|
|
27591
27598
|
.k-table-list .k-table-group-row::before {
|
|
27592
27599
|
content: "\200b";
|
|
27593
27600
|
padding-inline: 0;
|
package/dist/all.scss
CHANGED
|
@@ -19151,12 +19151,15 @@ $kendo-table-selected-border: null !default;
|
|
|
19151
19151
|
list-style: none;
|
|
19152
19152
|
outline: none;
|
|
19153
19153
|
|
|
19154
|
+
.k-table-row {
|
|
19155
|
+
position: relative;
|
|
19156
|
+
}
|
|
19157
|
+
|
|
19154
19158
|
.k-table-row,
|
|
19155
19159
|
.k-table-group-row {
|
|
19156
19160
|
width: 100%;
|
|
19157
19161
|
box-sizing: border-box;
|
|
19158
19162
|
display: table-row;
|
|
19159
|
-
position: relative;
|
|
19160
19163
|
}
|
|
19161
19164
|
.k-table-row.k-first {
|
|
19162
19165
|
border-top: 1px solid currentColor;
|
|
@@ -19168,6 +19171,7 @@ $kendo-table-selected-border: null !default;
|
|
|
19168
19171
|
}
|
|
19169
19172
|
|
|
19170
19173
|
.k-table-group-row {
|
|
19174
|
+
position: sticky;
|
|
19171
19175
|
|
|
19172
19176
|
&::before {
|
|
19173
19177
|
content: "\200b";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-material",
|
|
3
3
|
"description": "Material theme for Kendo UI",
|
|
4
|
-
"version": "7.2.1
|
|
4
|
+
"version": "7.2.1",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -54,13 +54,13 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@progress/kendo-svg-icons": "2.1.0",
|
|
57
|
-
"@progress/kendo-theme-core": "7.2.1
|
|
58
|
-
"@progress/kendo-theme-default": "7.2.1
|
|
59
|
-
"@progress/kendo-theme-utils": "7.2.1
|
|
57
|
+
"@progress/kendo-theme-core": "7.2.1",
|
|
58
|
+
"@progress/kendo-theme-default": "7.2.1",
|
|
59
|
+
"@progress/kendo-theme-utils": "7.2.1"
|
|
60
60
|
},
|
|
61
61
|
"directories": {
|
|
62
62
|
"doc": "docs",
|
|
63
63
|
"lib": "lib"
|
|
64
64
|
},
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "d84d6dd15dc96b01d20ce0a202650d237e5c200c"
|
|
66
66
|
}
|