@progress/kendo-theme-material 6.0.2-dev.0 → 6.0.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 +4428 -3387
- package/dist/all.scss +2379 -1887
- 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 +6 -6
- package/scss/core/_index.scss +5 -0
- package/scss/grid/_theme.scss +8 -5
- package/scss/utils/_index.scss +6 -1
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": "6.0.
|
|
4
|
+
"version": "6.0.3",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
"postpublish": "echo 'no postpublish for material theme'"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-font-icons": "
|
|
53
|
-
"@progress/kendo-theme-core": "^6.0.
|
|
54
|
-
"@progress/kendo-theme-default": "^6.0.
|
|
55
|
-
"@progress/kendo-theme-utils": "^6.0.
|
|
52
|
+
"@progress/kendo-font-icons": "1.2.0",
|
|
53
|
+
"@progress/kendo-theme-core": "^6.0.3",
|
|
54
|
+
"@progress/kendo-theme-default": "^6.0.3",
|
|
55
|
+
"@progress/kendo-theme-utils": "^6.0.3"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "3957a3b72c082bc29d023ed9c3cb9c7a5b5c5e59"
|
|
58
58
|
}
|
package/scss/core/_index.scss
CHANGED
package/scss/grid/_theme.scss
CHANGED
|
@@ -161,15 +161,18 @@
|
|
|
161
161
|
|
|
162
162
|
.k-table-thead > .k-table-row:not(:only-child) > .k-table-th {
|
|
163
163
|
&.k-grid-header-sticky {
|
|
164
|
-
border-
|
|
165
|
-
border-left-color: $kendo-grid-sticky-header-border;
|
|
164
|
+
border-inline-color: $kendo-grid-sticky-header-border;
|
|
166
165
|
}
|
|
167
166
|
}
|
|
168
167
|
|
|
169
|
-
|
|
168
|
+
.k-table-thead > .k-table-row:not(:only-child) > .k-table-th {
|
|
169
|
+
border-inline-start-color: $kendo-grid-border;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.k-grid-header-locked .k-table-thead .k-table-row .k-table-th {
|
|
173
|
+
border-inline-color: $kendo-grid-sticky-header-border;
|
|
174
|
+
}
|
|
170
175
|
|
|
171
|
-
.k-table-thead.k-grid-header > .k-table-row:not(:only-child) > .k-table-th {
|
|
172
|
-
border-inline-start-color: $kendo-grid-border;
|
|
173
176
|
}
|
|
174
177
|
|
|
175
178
|
.k-group-footer {
|