@progress/kendo-theme-bootstrap 13.1.0-dev.1 → 13.1.0-dev.2
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 +1 -1
- package/dist/bootstrap-3-dark.css +1 -1
- package/dist/bootstrap-3.css +1 -1
- package/dist/bootstrap-4-dark.css +1 -1
- package/dist/bootstrap-4.css +1 -1
- package/dist/bootstrap-dataviz-v4.css +1 -1
- package/dist/bootstrap-main-dark.css +1 -1
- package/dist/bootstrap-main.css +1 -1
- package/dist/bootstrap-nordic.css +1 -1
- package/dist/bootstrap-turquoise-dark.css +1 -1
- package/dist/bootstrap-turquoise.css +1 -1
- package/dist/bootstrap-urban.css +1 -1
- package/dist/bootstrap-vintage.css +1 -1
- package/dist/meta/sassdoc-data.json +380 -326
- package/dist/meta/sassdoc-raw-data.json +188 -163
- package/dist/meta/variables.json +4 -0
- package/lib/swatches/bootstrap-3-dark.json +1 -1
- package/lib/swatches/bootstrap-3.json +1 -1
- package/lib/swatches/bootstrap-4-dark.json +1 -1
- package/lib/swatches/bootstrap-4.json +1 -1
- package/lib/swatches/bootstrap-dataviz-v4.json +1 -1
- package/lib/swatches/bootstrap-main-dark.json +1 -1
- package/lib/swatches/bootstrap-main.json +1 -1
- package/lib/swatches/bootstrap-nordic.json +1 -1
- package/lib/swatches/bootstrap-turquoise-dark.json +1 -1
- package/lib/swatches/bootstrap-turquoise.json +1 -1
- package/lib/swatches/bootstrap-urban.json +1 -1
- package/lib/swatches/bootstrap-vintage.json +1 -1
- package/package.json +4 -4
- package/scss/grid/_theme.scss +15 -9
- package/scss/grid/_variables.scss +6 -1
package/dist/meta/variables.json
CHANGED
|
@@ -12262,6 +12262,10 @@
|
|
|
12262
12262
|
"type": "String",
|
|
12263
12263
|
"value": "var(--kendo-elevation-2, 0px 2px 7px rgba(0, 0, 0, 0.075))"
|
|
12264
12264
|
},
|
|
12265
|
+
"kendo-grid-pinned-container-shadow": {
|
|
12266
|
+
"type": "String",
|
|
12267
|
+
"value": "var(--kendo-elevation-3, 0px 4px 10px rgba(0, 0, 0, 0.1))"
|
|
12268
|
+
},
|
|
12265
12269
|
"kendo-grid-column-menu-width": {
|
|
12266
12270
|
"type": "Number",
|
|
12267
12271
|
"value": "250px"
|
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": "13.1.0-dev.
|
|
4
|
+
"version": "13.1.0-dev.2",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -54,12 +54,12 @@
|
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
56
|
"@progress/kendo-svg-icons": "^4.8.0",
|
|
57
|
-
"@progress/kendo-theme-core": "13.1.0-dev.
|
|
58
|
-
"@progress/kendo-theme-utils": "13.1.0-dev.
|
|
57
|
+
"@progress/kendo-theme-core": "13.1.0-dev.2",
|
|
58
|
+
"@progress/kendo-theme-utils": "13.1.0-dev.2"
|
|
59
59
|
},
|
|
60
60
|
"directories": {
|
|
61
61
|
"doc": "docs",
|
|
62
62
|
"lib": "lib"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "feda774a2c88006abd77d1e709272d33792a49b3"
|
|
65
65
|
}
|
package/scss/grid/_theme.scss
CHANGED
|
@@ -204,6 +204,21 @@
|
|
|
204
204
|
}
|
|
205
205
|
}
|
|
206
206
|
|
|
207
|
+
.k-grid-pinned-container {
|
|
208
|
+
background-color: $kendo-grid-header-bg;
|
|
209
|
+
}
|
|
210
|
+
.k-grid-pinned-wrap {
|
|
211
|
+
> .k-table {
|
|
212
|
+
background-color: $kendo-grid-bg;
|
|
213
|
+
box-shadow: $kendo-grid-cell-vertical-border-width 0 0 0 $kendo-grid-border;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.k-grid-sticky-container {
|
|
218
|
+
background-color: $kendo-grid-bg;
|
|
219
|
+
border-color: $kendo-grid-sticky-border;
|
|
220
|
+
}
|
|
221
|
+
|
|
207
222
|
|
|
208
223
|
// Toolbar
|
|
209
224
|
.k-grid-toolbar {
|
|
@@ -309,15 +324,6 @@
|
|
|
309
324
|
@include fill( $kendo-grid-header-text, $kendo-grid-header-bg, $kendo-grid-header-border );
|
|
310
325
|
}
|
|
311
326
|
|
|
312
|
-
.k-grid-sticky-container {
|
|
313
|
-
background-color: inherit;
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
.k-grid-sticky-top-container:has(> .k-grid-group-sticky-header-table),
|
|
317
|
-
.k-grid-sticky-bottom-container:has(> .k-grid-group-sticky-footer-table) {
|
|
318
|
-
border-color: $kendo-grid-sticky-border;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
327
|
.k-column-list-item:hover,
|
|
322
328
|
.k-columnmenu-item:hover {
|
|
323
329
|
@include fill(
|
|
@@ -355,6 +355,10 @@ $kendo-grid-sticky-footer-hover-bg: $kendo-grid-sticky-footer-bg !default;
|
|
|
355
355
|
/// @group grid
|
|
356
356
|
$kendo-grid-sticky-container-shadow: k-elevation(2) !default;
|
|
357
357
|
|
|
358
|
+
/// The box shadow of the pinned container in the Grid.
|
|
359
|
+
/// @group grid
|
|
360
|
+
$kendo-grid-pinned-container-shadow: k-elevation(3) !default;
|
|
361
|
+
|
|
358
362
|
/// The width of the Grid column menu.
|
|
359
363
|
/// @group grid
|
|
360
364
|
$kendo-grid-column-menu-width: 250px !default;
|
|
@@ -642,5 +646,6 @@ $kendo-grid-pinned-source-font-weight: var( --kendo-font-weight-bold, 700 ) !def
|
|
|
642
646
|
$kendo-grid-stack-focus-outline: $kendo-grid-stack-focus-outline,
|
|
643
647
|
$kendo-grid-stack-expandable-shadow: $kendo-grid-stack-expandable-shadow,
|
|
644
648
|
$kendo-grid-pinned-source-font-weight: $kendo-grid-pinned-source-font-weight,
|
|
645
|
-
$kendo-grid-sticky-container-shadow: $kendo-grid-sticky-container-shadow
|
|
649
|
+
$kendo-grid-sticky-container-shadow: $kendo-grid-sticky-container-shadow,
|
|
650
|
+
$kendo-grid-pinned-container-shadow: $kendo-grid-pinned-container-shadow
|
|
646
651
|
);
|