@progress/kendo-theme-bootstrap 6.0.1 → 6.0.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 +12 -0
- package/dist/all.scss +15 -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 +5 -5
- package/scss/checkbox/_layout.scss +15 -0
package/dist/all.css
CHANGED
|
@@ -24676,6 +24676,18 @@ kendo-sortable {
|
|
|
24676
24676
|
height: 300%;
|
|
24677
24677
|
}
|
|
24678
24678
|
|
|
24679
|
+
.k-checkbox.k-rounded-sm {
|
|
24680
|
+
border-radius: 0.125rem;
|
|
24681
|
+
}
|
|
24682
|
+
|
|
24683
|
+
.k-checkbox.k-rounded-md {
|
|
24684
|
+
border-radius: 0.25rem;
|
|
24685
|
+
}
|
|
24686
|
+
|
|
24687
|
+
.k-checkbox.k-rounded-lg {
|
|
24688
|
+
border-radius: 0.375rem;
|
|
24689
|
+
}
|
|
24690
|
+
|
|
24679
24691
|
.k-checkbox {
|
|
24680
24692
|
border-color: #ced4da;
|
|
24681
24693
|
background-color: #ffffff;
|
package/dist/all.scss
CHANGED
|
@@ -11479,6 +11479,21 @@ $kendo-checkbox-ripple-opacity: .25 !default;
|
|
|
11479
11479
|
|
|
11480
11480
|
// #endregion
|
|
11481
11481
|
|
|
11482
|
+
@include exports( "checkbox/layout/bootstrap" ) {
|
|
11483
|
+
|
|
11484
|
+
// Override inherited bootstrap border radius
|
|
11485
|
+
.k-checkbox.k-rounded-sm {
|
|
11486
|
+
border-radius: k-math-div( $kendo-border-radius-sm, 2 );
|
|
11487
|
+
}
|
|
11488
|
+
.k-checkbox.k-rounded-md {
|
|
11489
|
+
border-radius: $kendo-border-radius-sm;
|
|
11490
|
+
}
|
|
11491
|
+
.k-checkbox.k-rounded-lg {
|
|
11492
|
+
border-radius: $kendo-border-radius-md;
|
|
11493
|
+
}
|
|
11494
|
+
|
|
11495
|
+
}
|
|
11496
|
+
|
|
11482
11497
|
// #endregion
|
|
11483
11498
|
// #region @import "./_theme.scss"; -> packages/bootstrap/scss/checkbox/_theme.scss
|
|
11484
11499
|
// #region @import "@progress/kendo-theme-default/scss/checkbox/_theme.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/checkbox/_theme.scss
|
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": "6.0.
|
|
4
|
+
"version": "6.0.2",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -49,10 +49,10 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@progress/kendo-font-icons": "^1.0.0",
|
|
52
|
-
"@progress/kendo-theme-core": "^6.0.
|
|
53
|
-
"@progress/kendo-theme-default": "^6.0.
|
|
54
|
-
"@progress/kendo-theme-utils": "^6.0.
|
|
52
|
+
"@progress/kendo-theme-core": "^6.0.2",
|
|
53
|
+
"@progress/kendo-theme-default": "^6.0.2",
|
|
54
|
+
"@progress/kendo-theme-utils": "^6.0.2",
|
|
55
55
|
"bootstrap": "5.2.1"
|
|
56
56
|
},
|
|
57
|
-
"gitHead": "
|
|
57
|
+
"gitHead": "ba4938b03e5055885c80f922a872f6d7031e5c61"
|
|
58
58
|
}
|
|
@@ -1 +1,16 @@
|
|
|
1
1
|
@import "@progress/kendo-theme-default/scss/checkbox/_layout.scss";
|
|
2
|
+
|
|
3
|
+
@include exports( "checkbox/layout/bootstrap" ) {
|
|
4
|
+
|
|
5
|
+
// Override inherited bootstrap border radius
|
|
6
|
+
.k-checkbox.k-rounded-sm {
|
|
7
|
+
border-radius: k-math-div( $kendo-border-radius-sm, 2 );
|
|
8
|
+
}
|
|
9
|
+
.k-checkbox.k-rounded-md {
|
|
10
|
+
border-radius: $kendo-border-radius-sm;
|
|
11
|
+
}
|
|
12
|
+
.k-checkbox.k-rounded-lg {
|
|
13
|
+
border-radius: $kendo-border-radius-md;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
}
|