@progress/kendo-theme-core 13.2.0-dev.0 → 13.2.0-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/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-core",
|
|
3
3
|
"description": "A collection of functions and mixins used for building themes for Kendo UI",
|
|
4
|
-
"version": "13.2.0-dev.
|
|
4
|
+
"version": "13.2.0-dev.1",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"directories": {
|
|
47
47
|
"doc": "docs"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "0898cb4c2955f92610c5766da2c849ab3e12b11c"
|
|
50
50
|
}
|
|
@@ -728,6 +728,9 @@
|
|
|
728
728
|
// Pinned rows container
|
|
729
729
|
.k-grid-pinned-container {
|
|
730
730
|
padding-inline-end: var(--kendo-scrollbar-width, #{$kendo-scrollbar-width});
|
|
731
|
+
border-width: 0;
|
|
732
|
+
border-block-end-width: 1px;
|
|
733
|
+
border-style: solid;
|
|
731
734
|
box-shadow: $kendo-grid-pinned-container-shadow;
|
|
732
735
|
z-index: k-z-index("base", 4);
|
|
733
736
|
position: relative;
|
|
@@ -737,8 +740,12 @@
|
|
|
737
740
|
display: flex;
|
|
738
741
|
flex-direction: row;
|
|
739
742
|
align-items: stretch;
|
|
743
|
+
font-weight: $kendo-grid-pinned-source-font-weight;
|
|
740
744
|
|
|
741
745
|
&.k-pos-bottom {
|
|
746
|
+
border-block-end-width: 0;
|
|
747
|
+
border-block-start-width: 1px;
|
|
748
|
+
box-shadow: $kendo-grid-pinned-container-bottom-shadow;
|
|
742
749
|
clip-path: inset(-50px 0 0 0);
|
|
743
750
|
}
|
|
744
751
|
}
|
|
@@ -779,6 +786,7 @@
|
|
|
779
786
|
&.k-pos-bottom {
|
|
780
787
|
border-block-end-width: 0;
|
|
781
788
|
border-block-start-width: 1px;
|
|
789
|
+
box-shadow: $kendo-grid-sticky-container-bottom-shadow;
|
|
782
790
|
inset-block-start: auto;
|
|
783
791
|
inset-block-end: 0;
|
|
784
792
|
clip-path: inset(-50px 0 0 0);
|
|
@@ -173,8 +173,10 @@ $kendo-grid-sticky-header-border: null !default;
|
|
|
173
173
|
$kendo-grid-sticky-footer-bg: null !default;
|
|
174
174
|
|
|
175
175
|
$kendo-grid-sticky-container-shadow: null !default;
|
|
176
|
+
$kendo-grid-sticky-container-bottom-shadow: null !default;
|
|
176
177
|
|
|
177
178
|
$kendo-grid-pinned-container-shadow: null !default;
|
|
179
|
+
$kendo-grid-pinned-container-bottom-shadow: null !default;
|
|
178
180
|
|
|
179
181
|
$kendo-grid-column-menu-width: null !default;
|
|
180
182
|
$kendo-grid-column-menu-max-width: null !default;
|