@progress/kendo-theme-bootstrap 5.1.1 → 5.1.2-dev.0
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.scss
CHANGED
|
@@ -10983,6 +10983,12 @@ $kendo-input-focus-text: $input-focus-color !default;
|
|
|
10983
10983
|
$kendo-input-focus-border: $input-focus-border-color !default;
|
|
10984
10984
|
$kendo-input-focus-shadow: $input-focus-box-shadow !default;
|
|
10985
10985
|
|
|
10986
|
+
$kendo-input-disabled-bg: null !default;
|
|
10987
|
+
$kendo-input-disabled-text: null !default;
|
|
10988
|
+
$kendo-input-disabled-border: null !default;
|
|
10989
|
+
$kendo-input-disabled-gradient: null !default;
|
|
10990
|
+
$kendo-input-disabled-shadow: null !default;
|
|
10991
|
+
|
|
10986
10992
|
$kendo-picker-bg: $kendo-button-bg !default;
|
|
10987
10993
|
$kendo-picker-text: $kendo-button-text !default;
|
|
10988
10994
|
$kendo-picker-border: $kendo-button-border !default;
|
|
@@ -11001,6 +11007,12 @@ $kendo-picker-focus-border: $kendo-button-focus-border !default;
|
|
|
11001
11007
|
$kendo-picker-focus-gradient: $kendo-button-focus-gradient !default;
|
|
11002
11008
|
$kendo-picker-focus-shadow: $kendo-button-focus-shadow !default;
|
|
11003
11009
|
|
|
11010
|
+
$kendo-picker-disabled-bg: null !default;
|
|
11011
|
+
$kendo-picker-disabled-text: null !default;
|
|
11012
|
+
$kendo-picker-disabled-border: null !default;
|
|
11013
|
+
$kendo-picker-disabled-gradient: null !default;
|
|
11014
|
+
$kendo-picker-disabled-shadow: null !default;
|
|
11015
|
+
|
|
11004
11016
|
$kendo-input-placeholder-text: $input-placeholder-color !default;
|
|
11005
11017
|
$kendo-input-placeholder-opacity: 1 !default;
|
|
11006
11018
|
|
|
@@ -11503,6 +11515,19 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
11503
11515
|
@include box-shadow( $kendo-input-focus-shadow );
|
|
11504
11516
|
}
|
|
11505
11517
|
|
|
11518
|
+
//Disabled
|
|
11519
|
+
&:disabled,
|
|
11520
|
+
&[disabled],
|
|
11521
|
+
&.k-disabled {
|
|
11522
|
+
@include fill(
|
|
11523
|
+
$kendo-input-disabled-text,
|
|
11524
|
+
$kendo-input-disabled-bg,
|
|
11525
|
+
$kendo-input-disabled-border,
|
|
11526
|
+
$kendo-input-disabled-gradient
|
|
11527
|
+
);
|
|
11528
|
+
@include box-shadow( $kendo-input-disabled-shadow );
|
|
11529
|
+
}
|
|
11530
|
+
|
|
11506
11531
|
// Invalid
|
|
11507
11532
|
&.k-invalid,
|
|
11508
11533
|
&.ng-invalid.ng-touched,
|
|
@@ -11566,6 +11591,19 @@ $kendo-input-invalid-shadow: $invalid-shadow !default;
|
|
|
11566
11591
|
@include box-shadow( $kendo-picker-focus-shadow );
|
|
11567
11592
|
}
|
|
11568
11593
|
|
|
11594
|
+
//Disabled
|
|
11595
|
+
&:disabled,
|
|
11596
|
+
&[disabled],
|
|
11597
|
+
&.k-disabled {
|
|
11598
|
+
@include fill(
|
|
11599
|
+
$kendo-picker-disabled-text,
|
|
11600
|
+
$kendo-picker-disabled-bg,
|
|
11601
|
+
$kendo-picker-disabled-border,
|
|
11602
|
+
$kendo-picker-disabled-gradient
|
|
11603
|
+
);
|
|
11604
|
+
@include box-shadow( $kendo-picker-disabled-shadow );
|
|
11605
|
+
}
|
|
11606
|
+
|
|
11569
11607
|
// Invalid
|
|
11570
11608
|
&.k-invalid,
|
|
11571
11609
|
&.ng-invalid.ng-touched,
|
|
@@ -20414,6 +20452,7 @@ $coloreditor-views-gap: $coloreditor-spacer !default;
|
|
|
20414
20452
|
// DateTime
|
|
20415
20453
|
$datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-padding-x * 2}) !default;
|
|
20416
20454
|
|
|
20455
|
+
|
|
20417
20456
|
// #endregion
|
|
20418
20457
|
// #region @import "_layout.scss"; -> packages/bootstrap/scss/datetimepicker/_layout.scss
|
|
20419
20458
|
// #region @import "~@progress/kendo-theme-default/scss/datetimepicker/_layout.scss"; -> packages/bootstrap/node_modules/@progress/kendo-theme-default/scss/datetimepicker/_layout.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": "5.1.
|
|
4
|
+
"version": "5.1.2-dev.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"postpublish": "echo 'no postpublish for bootstrap theme'"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@progress/kendo-theme-default": "^5.1.
|
|
52
|
+
"@progress/kendo-theme-default": "^5.1.2-dev.0",
|
|
53
53
|
"bootstrap": "^5.1.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "c492bbaeca2d104534c4b4329c41afd762bb563b"
|
|
56
56
|
}
|
|
@@ -71,6 +71,12 @@ $kendo-input-focus-text: $input-focus-color !default;
|
|
|
71
71
|
$kendo-input-focus-border: $input-focus-border-color !default;
|
|
72
72
|
$kendo-input-focus-shadow: $input-focus-box-shadow !default;
|
|
73
73
|
|
|
74
|
+
$kendo-input-disabled-bg: null !default;
|
|
75
|
+
$kendo-input-disabled-text: null !default;
|
|
76
|
+
$kendo-input-disabled-border: null !default;
|
|
77
|
+
$kendo-input-disabled-gradient: null !default;
|
|
78
|
+
$kendo-input-disabled-shadow: null !default;
|
|
79
|
+
|
|
74
80
|
$kendo-picker-bg: $kendo-button-bg !default;
|
|
75
81
|
$kendo-picker-text: $kendo-button-text !default;
|
|
76
82
|
$kendo-picker-border: $kendo-button-border !default;
|
|
@@ -89,6 +95,12 @@ $kendo-picker-focus-border: $kendo-button-focus-border !default;
|
|
|
89
95
|
$kendo-picker-focus-gradient: $kendo-button-focus-gradient !default;
|
|
90
96
|
$kendo-picker-focus-shadow: $kendo-button-focus-shadow !default;
|
|
91
97
|
|
|
98
|
+
$kendo-picker-disabled-bg: null !default;
|
|
99
|
+
$kendo-picker-disabled-text: null !default;
|
|
100
|
+
$kendo-picker-disabled-border: null !default;
|
|
101
|
+
$kendo-picker-disabled-gradient: null !default;
|
|
102
|
+
$kendo-picker-disabled-shadow: null !default;
|
|
103
|
+
|
|
92
104
|
$kendo-input-placeholder-text: $input-placeholder-color !default;
|
|
93
105
|
$kendo-input-placeholder-opacity: 1 !default;
|
|
94
106
|
|