@progress/kendo-theme-bootstrap 10.6.0-dev.4 → 10.6.0-dev.6
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/variables.json +16 -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/column-menu/_variables.scss +12 -1
- package/scss/grid/_theme.scss +4 -4
package/dist/meta/variables.json
CHANGED
|
@@ -15540,5 +15540,21 @@
|
|
|
15540
15540
|
"line-height": "var(--kendo-line-height, normal)"
|
|
15541
15541
|
}
|
|
15542
15542
|
}
|
|
15543
|
+
},
|
|
15544
|
+
"kendo-group-menu-item-action-hover-bg": {
|
|
15545
|
+
"type": "String",
|
|
15546
|
+
"value": "color-mix(in srgb, currentColor 4%, transparent)"
|
|
15547
|
+
},
|
|
15548
|
+
"kendo-group-menu-item-action-selected-bg": {
|
|
15549
|
+
"type": "String",
|
|
15550
|
+
"value": "color-mix(in srgb, currentColor 16%, transparent)"
|
|
15551
|
+
},
|
|
15552
|
+
"kendo-group-menu-item-add-action-text": {
|
|
15553
|
+
"type": "String",
|
|
15554
|
+
"value": "var(--kendo-color-primary, #0d6efd)"
|
|
15555
|
+
},
|
|
15556
|
+
"kendo-group-menu-item-border": {
|
|
15557
|
+
"type": "String",
|
|
15558
|
+
"value": "var(--kendo-color-border, rgba(33, 37, 41, 0.13))"
|
|
15543
15559
|
}
|
|
15544
15560
|
}
|
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": "10.6.0-dev.
|
|
4
|
+
"version": "10.6.0-dev.6",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -53,12 +53,12 @@
|
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@progress/kendo-svg-icons": "^4.1.0",
|
|
56
|
-
"@progress/kendo-theme-core": "10.6.0-dev.
|
|
57
|
-
"@progress/kendo-theme-utils": "10.6.0-dev.
|
|
56
|
+
"@progress/kendo-theme-core": "10.6.0-dev.6",
|
|
57
|
+
"@progress/kendo-theme-utils": "10.6.0-dev.6"
|
|
58
58
|
},
|
|
59
59
|
"directories": {
|
|
60
60
|
"doc": "docs",
|
|
61
61
|
"lib": "lib"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "736f58cf56972a4000f69f6b49077fc13b67ca39"
|
|
64
64
|
}
|
|
@@ -46,6 +46,12 @@ $kendo-column-menu-sizes: (
|
|
|
46
46
|
)
|
|
47
47
|
) !default;
|
|
48
48
|
|
|
49
|
+
// Group Menu
|
|
50
|
+
$kendo-group-menu-item-action-hover-bg: color-mix(in srgb, currentColor 4%, transparent) !default;
|
|
51
|
+
$kendo-group-menu-item-action-selected-bg: color-mix(in srgb, currentColor 16%, transparent) !default;
|
|
52
|
+
$kendo-group-menu-item-add-action-text: k-color(primary) !default;
|
|
53
|
+
$kendo-group-menu-item-border: k-color(border) !default;
|
|
54
|
+
|
|
49
55
|
|
|
50
56
|
@forward "@progress/kendo-theme-core/scss/components/column-menu/_variables.scss" with (
|
|
51
57
|
$kendo-column-menu-font-size: $kendo-column-menu-font-size,
|
|
@@ -65,5 +71,10 @@ $kendo-column-menu-sizes: (
|
|
|
65
71
|
$kendo-column-menu-item-md-padding-y: $kendo-column-menu-item-md-padding-y,
|
|
66
72
|
$kendo-column-menu-item-lg-padding-x: $kendo-column-menu-item-lg-padding-x,
|
|
67
73
|
$kendo-column-menu-item-lg-padding-y: $kendo-column-menu-item-lg-padding-y,
|
|
68
|
-
$kendo-column-menu-sizes: $kendo-column-menu-sizes
|
|
74
|
+
$kendo-column-menu-sizes: $kendo-column-menu-sizes,
|
|
75
|
+
// Group Menu
|
|
76
|
+
$kendo-group-menu-item-action-hover-bg: $kendo-group-menu-item-action-hover-bg,
|
|
77
|
+
$kendo-group-menu-item-action-selected-bg: $kendo-group-menu-item-action-selected-bg,
|
|
78
|
+
$kendo-group-menu-item-add-action-text: $kendo-group-menu-item-add-action-text,
|
|
79
|
+
$kendo-group-menu-item-border: $kendo-group-menu-item-border
|
|
69
80
|
);
|
package/scss/grid/_theme.scss
CHANGED
|
@@ -74,9 +74,12 @@
|
|
|
74
74
|
|
|
75
75
|
.k-grid-header-locked,
|
|
76
76
|
.k-grid-content-locked,
|
|
77
|
+
.k-grid-footer-locked,
|
|
77
78
|
.k-grid-header-locked .k-header,
|
|
78
79
|
.k-grid-content-locked td,
|
|
79
|
-
.k-grid-content-locked .k-table-td
|
|
80
|
+
.k-grid-content-locked .k-table-td,
|
|
81
|
+
.k-grid-footer-locked td,
|
|
82
|
+
.k-grid-footer-locked .k-table-td {
|
|
80
83
|
border-color: $kendo-grid-sticky-header-border;
|
|
81
84
|
}
|
|
82
85
|
|
|
@@ -305,9 +308,6 @@
|
|
|
305
308
|
$kendo-grid-footer-bg,
|
|
306
309
|
$kendo-grid-footer-border
|
|
307
310
|
);
|
|
308
|
-
.k-grid-footer-locked {
|
|
309
|
-
border-color: inherit;
|
|
310
|
-
}
|
|
311
311
|
.k-grid-footer-sticky {
|
|
312
312
|
border-color: $kendo-grid-sticky-border;
|
|
313
313
|
background-color: $kendo-grid-sticky-footer-bg;
|