@progress/kendo-theme-bootstrap 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/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 +456 -348
- package/dist/meta/sassdoc-raw-data.json +220 -170
- package/dist/meta/variables.json +12 -4
- 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 +1 -0
- package/scss/grid/_variables.scss +11 -3
package/dist/meta/variables.json
CHANGED
|
@@ -11986,12 +11986,20 @@
|
|
|
11986
11986
|
"value": "var(--kendo-color-surface)"
|
|
11987
11987
|
},
|
|
11988
11988
|
"kendo-grid-sticky-container-shadow": {
|
|
11989
|
-
"type": "
|
|
11990
|
-
"value": "
|
|
11989
|
+
"type": "List",
|
|
11990
|
+
"value": "(0 2px 4px 0 rgba(0, 0, 0, 0.08))"
|
|
11991
|
+
},
|
|
11992
|
+
"kendo-grid-sticky-container-bottom-shadow": {
|
|
11993
|
+
"type": "List",
|
|
11994
|
+
"value": "(0 -2px 4px 0 rgba(0, 0, 0, 0.08))"
|
|
11991
11995
|
},
|
|
11992
11996
|
"kendo-grid-pinned-container-shadow": {
|
|
11993
|
-
"type": "
|
|
11994
|
-
"value": "
|
|
11997
|
+
"type": "List",
|
|
11998
|
+
"value": "(0 4px 8px 0 rgba(0, 0, 0, 0.08))"
|
|
11999
|
+
},
|
|
12000
|
+
"kendo-grid-pinned-container-bottom-shadow": {
|
|
12001
|
+
"type": "List",
|
|
12002
|
+
"value": "(0 -4px 8px 0 rgba(0, 0, 0, 0.08))"
|
|
11995
12003
|
},
|
|
11996
12004
|
"kendo-grid-column-menu-width": {
|
|
11997
12005
|
"type": "Number",
|
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.2.0-dev.
|
|
4
|
+
"version": "13.2.0-dev.1",
|
|
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.2.0-dev.
|
|
58
|
-
"@progress/kendo-theme-utils": "13.2.0-dev.
|
|
57
|
+
"@progress/kendo-theme-core": "13.2.0-dev.1",
|
|
58
|
+
"@progress/kendo-theme-utils": "13.2.0-dev.1"
|
|
59
59
|
},
|
|
60
60
|
"directories": {
|
|
61
61
|
"doc": "docs",
|
|
62
62
|
"lib": "lib"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "0898cb4c2955f92610c5766da2c849ab3e12b11c"
|
|
65
65
|
}
|
package/scss/grid/_theme.scss
CHANGED
|
@@ -353,11 +353,17 @@ $kendo-grid-sticky-footer-hover-bg: $kendo-grid-sticky-footer-bg !default;
|
|
|
353
353
|
|
|
354
354
|
/// The box shadow of the sticky container in the Grid.
|
|
355
355
|
/// @group grid
|
|
356
|
-
$kendo-grid-sticky-container-shadow:
|
|
356
|
+
$kendo-grid-sticky-container-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08) !default;
|
|
357
|
+
/// The box shadow of the sticky container positioned at the bottom in the Grid.
|
|
358
|
+
/// @group grid
|
|
359
|
+
$kendo-grid-sticky-container-bottom-shadow: 0 -2px 4px 0 rgba(0, 0, 0, 0.08) !default;
|
|
357
360
|
|
|
358
361
|
/// The box shadow of the pinned container in the Grid.
|
|
359
362
|
/// @group grid
|
|
360
|
-
$kendo-grid-pinned-container-shadow:
|
|
363
|
+
$kendo-grid-pinned-container-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.08) !default;
|
|
364
|
+
/// The box shadow of the pinned container positioned at the bottom in the Grid.
|
|
365
|
+
/// @group grid
|
|
366
|
+
$kendo-grid-pinned-container-bottom-shadow: 0 -4px 8px 0 rgba(0, 0, 0, 0.08) !default;
|
|
361
367
|
|
|
362
368
|
/// The width of the Grid column menu.
|
|
363
369
|
/// @group grid
|
|
@@ -647,5 +653,7 @@ $kendo-grid-pinned-source-font-weight: var(--kendo-font-weight-bold) !default;
|
|
|
647
653
|
$kendo-grid-stack-expandable-shadow: $kendo-grid-stack-expandable-shadow,
|
|
648
654
|
$kendo-grid-pinned-source-font-weight: $kendo-grid-pinned-source-font-weight,
|
|
649
655
|
$kendo-grid-sticky-container-shadow: $kendo-grid-sticky-container-shadow,
|
|
650
|
-
$kendo-grid-
|
|
656
|
+
$kendo-grid-sticky-container-bottom-shadow: $kendo-grid-sticky-container-bottom-shadow,
|
|
657
|
+
$kendo-grid-pinned-container-shadow: $kendo-grid-pinned-container-shadow,
|
|
658
|
+
$kendo-grid-pinned-container-bottom-shadow: $kendo-grid-pinned-container-bottom-shadow
|
|
651
659
|
);
|