@progress/kendo-theme-bootstrap 6.4.0-dev.1 → 6.4.0-dev.3
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 +42 -97
- package/dist/all.scss +410 -253
- package/dist/meta/sassdoc-data.json +20492 -14102
- package/dist/meta/sassdoc-raw-data.json +9259 -6309
- package/dist/meta/variables.json +11 -55
- 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 +7 -6
- package/scss/action-sheet/_variables.scss +0 -2
- package/scss/avatar/_variables.scss +6 -6
- package/scss/badge/_variables.scss +38 -8
- package/scss/bottom-navigation/_variables.scss +0 -1
- package/scss/breadcrumb/_variables.scss +0 -2
- package/scss/button/_variables.scss +4 -4
- package/scss/drawer/_variables.scss +1 -2
- package/scss/dropdowntree/_variables.scss +5 -0
- package/scss/dropzone/_variables.scss +0 -1
- package/scss/fab/_variables.scss +40 -28
- package/scss/filemanager/_variables.scss +0 -2
- package/scss/floating-label/_variables.scss +31 -0
- package/scss/forms/_variables.scss +91 -4
- package/scss/grid/_theme.scss +10 -10
- package/scss/list/_variables.scss +8 -0
- package/scss/map/_variables.scss +0 -1
- package/scss/menu-button/_variables.scss +1 -1
- package/scss/pager/_variables.scss +57 -33
- package/scss/pdf-viewer/_variables.scss +0 -1
- package/scss/rating/_variables.scss +0 -2
- package/scss/scheduler/_layout.scss +1 -1
- package/scss/scrollview/_variables.scss +0 -1
- package/scss/splitter/_variables.scss +1 -2
- package/scss/toolbar/_variables.scss +35 -17
- package/scss/treeview/_variables.scss +56 -32
- package/scss/upload/_variables.scss +0 -2
|
@@ -1,46 +1,70 @@
|
|
|
1
|
-
//
|
|
1
|
+
// TreeView
|
|
2
2
|
|
|
3
|
-
///
|
|
3
|
+
/// The font family of the TreeView.
|
|
4
4
|
/// @group treeview
|
|
5
5
|
$kendo-treeview-font-family: $kendo-font-family !default;
|
|
6
|
-
///
|
|
6
|
+
/// The font size of the TreeView.
|
|
7
7
|
/// @group treeview
|
|
8
8
|
$kendo-treeview-font-size: $kendo-font-size-md !default;
|
|
9
|
+
/// The font size of the small TreeView.
|
|
10
|
+
/// @group treeview
|
|
9
11
|
$kendo-treeview-sm-font-size: $kendo-font-size-sm !default;
|
|
12
|
+
/// The font size of the medium TreeView.
|
|
13
|
+
/// @group treeview
|
|
10
14
|
$kendo-treeview-md-font-size: $kendo-font-size-md !default;
|
|
15
|
+
/// The font size of the large TreeView.
|
|
16
|
+
/// @group treeview
|
|
11
17
|
$kendo-treeview-lg-font-size: $kendo-font-size-md !default;
|
|
12
|
-
///
|
|
18
|
+
/// The line height of the TreeView.
|
|
13
19
|
/// @group treeview
|
|
14
20
|
$kendo-treeview-line-height: $kendo-line-height-md !default;
|
|
21
|
+
/// The line height of the small TreeView.
|
|
22
|
+
/// @group treeview
|
|
15
23
|
$kendo-treeview-sm-line-height: k-math-div( 20, 14 ) !default;
|
|
24
|
+
/// The line height of the medium TreeView.
|
|
25
|
+
/// @group treeview
|
|
16
26
|
$kendo-treeview-md-line-height: $kendo-line-height-md !default;
|
|
27
|
+
/// The line height of the large TreeView.
|
|
28
|
+
/// @group treeview
|
|
17
29
|
$kendo-treeview-lg-line-height: $kendo-line-height-md !default;
|
|
18
30
|
|
|
19
|
-
///
|
|
31
|
+
/// The indentation of child groups in the TreeView.
|
|
20
32
|
/// @group treeview
|
|
21
33
|
$kendo-treeview-indent: 16px !default;
|
|
22
34
|
|
|
23
|
-
///
|
|
35
|
+
/// The horizontal padding of the TreeView items.
|
|
24
36
|
/// @group treeview
|
|
25
37
|
$kendo-treeview-item-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
38
|
+
/// The horizontal padding of the small TreeView items.
|
|
39
|
+
/// @group treeview
|
|
26
40
|
$kendo-treeview-sm-item-padding-x: k-map-get( $kendo-spacing, 2 ) !default;
|
|
41
|
+
/// The horizontal padding of the medium TreeView items.
|
|
42
|
+
/// @group treeview
|
|
27
43
|
$kendo-treeview-md-item-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
44
|
+
/// The horizontal padding of the large TreeView items.
|
|
45
|
+
/// @group treeview
|
|
28
46
|
$kendo-treeview-lg-item-padding-x: k-map-get( $kendo-spacing, 3 ) !default;
|
|
29
|
-
///
|
|
47
|
+
/// The vertical padding of the TreeView items.
|
|
30
48
|
/// @group treeview
|
|
31
49
|
$kendo-treeview-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
50
|
+
/// The vertical padding of the small TreeView items.
|
|
51
|
+
/// @group treeview
|
|
32
52
|
$kendo-treeview-sm-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
53
|
+
/// The vertical padding of the medium TreeView items.
|
|
54
|
+
/// @group treeview
|
|
33
55
|
$kendo-treeview-md-item-padding-y: k-map-get( $kendo-spacing, 1 ) !default;
|
|
56
|
+
/// The vertical padding of the large TreeView items.
|
|
57
|
+
/// @group treeview
|
|
34
58
|
$kendo-treeview-lg-item-padding-y: k-map-get( $kendo-spacing, 2 ) !default;
|
|
35
|
-
///
|
|
59
|
+
/// The border width of the TreeView items.
|
|
36
60
|
/// @group treeview
|
|
37
61
|
$kendo-treeview-item-border-width: 0px !default;
|
|
38
|
-
///
|
|
62
|
+
/// The border radius of the TreeView items.
|
|
39
63
|
/// @group treeview
|
|
40
64
|
$kendo-treeview-item-border-radius: k-map-get( $kendo-spacing, 1 ) !default;
|
|
41
65
|
|
|
42
66
|
|
|
43
|
-
/// The sizes of the
|
|
67
|
+
/// The sizes map of the TreeView.
|
|
44
68
|
/// @group treeview
|
|
45
69
|
$kendo-treeview-sizes: (
|
|
46
70
|
sm: (
|
|
@@ -64,75 +88,75 @@ $kendo-treeview-sizes: (
|
|
|
64
88
|
) !default;
|
|
65
89
|
|
|
66
90
|
|
|
67
|
-
///
|
|
91
|
+
/// The background color of the TreeView.
|
|
68
92
|
/// @group treeview
|
|
69
93
|
$kendo-treeview-bg: null !default;
|
|
70
|
-
///
|
|
94
|
+
/// The text color of the TreeView.
|
|
71
95
|
/// @group treeview
|
|
72
96
|
$kendo-treeview-text: $kendo-component-text !default;
|
|
73
|
-
///
|
|
97
|
+
/// The border color of the TreeView.
|
|
74
98
|
/// @group treeview
|
|
75
99
|
$kendo-treeview-border: null !default;
|
|
76
100
|
|
|
77
|
-
///
|
|
101
|
+
/// The background color of hovered TreeView items.
|
|
78
102
|
/// @group treeview
|
|
79
103
|
$kendo-treeview-item-hover-bg: $kendo-hover-bg !default;
|
|
80
|
-
///
|
|
104
|
+
/// The text color of hovered TreeView items.
|
|
81
105
|
/// @group treeview
|
|
82
106
|
$kendo-treeview-item-hover-text: $kendo-hover-text !default;
|
|
83
|
-
///
|
|
107
|
+
/// The border color of hovered TreeView items.
|
|
84
108
|
/// @group treeview
|
|
85
109
|
$kendo-treeview-item-hover-border: $kendo-treeview-item-hover-bg !default;
|
|
86
|
-
///
|
|
110
|
+
/// The background gradient of hovered TreeView items.
|
|
87
111
|
/// @group treeview
|
|
88
112
|
$kendo-treeview-item-hover-gradient: null !default;
|
|
89
113
|
|
|
90
|
-
///
|
|
114
|
+
/// The background color of selected TreeView items.
|
|
91
115
|
/// @group treeview
|
|
92
116
|
$kendo-treeview-item-selected-bg: $kendo-selected-bg !default;
|
|
93
|
-
///
|
|
117
|
+
/// The text color of selected TreeView items.
|
|
94
118
|
/// @group treeview
|
|
95
119
|
$kendo-treeview-item-selected-text: $kendo-selected-text !default;
|
|
96
|
-
///
|
|
120
|
+
/// The border color of selected TreeView items.
|
|
97
121
|
/// @group treeview
|
|
98
122
|
$kendo-treeview-item-selected-border: $kendo-treeview-item-selected-bg !default;
|
|
99
|
-
///
|
|
123
|
+
/// The background gradient of selected TreeView items.
|
|
100
124
|
/// @group treeview
|
|
101
125
|
$kendo-treeview-item-selected-gradient: null !default;
|
|
102
126
|
|
|
103
|
-
///
|
|
127
|
+
/// The box shadow of focused TreeView items.
|
|
104
128
|
/// @group treeview
|
|
105
129
|
$kendo-treeview-item-focus-shadow: inset 0 0 0 2px rgba( $kendo-treeview-text, .15 ) !default;
|
|
106
130
|
|
|
107
|
-
///
|
|
131
|
+
/// The background color of the Load More button in the TreeView.
|
|
108
132
|
/// @group treeview
|
|
109
133
|
$kendo-treeview-loadmore-bg: transparent !default;
|
|
110
|
-
///
|
|
134
|
+
/// The text color of the Load More button in the TreeView.
|
|
111
135
|
/// @group treeview
|
|
112
136
|
$kendo-treeview-loadmore-text: $kendo-link-text !default;
|
|
113
|
-
///
|
|
137
|
+
/// The border color of the Load More button in the TreeView.
|
|
114
138
|
/// @group treeview
|
|
115
139
|
$kendo-treeview-loadmore-border: null !default;
|
|
116
140
|
|
|
117
|
-
///
|
|
141
|
+
/// The background color of the hovered Load More button in the TreeView.
|
|
118
142
|
/// @group treeview
|
|
119
143
|
$kendo-treeview-loadmore-hover-bg: transparent !default;
|
|
120
|
-
///
|
|
144
|
+
/// The text color of the hovered Load More button in the TreeView.
|
|
121
145
|
/// @group treeview
|
|
122
146
|
$kendo-treeview-loadmore-hover-text: $kendo-link-hover-text !default;
|
|
123
|
-
///
|
|
147
|
+
/// The border color of the hovered Load More button in the TreeView.
|
|
124
148
|
/// @group treeview
|
|
125
149
|
$kendo-treeview-loadmore-hover-border: null !default;
|
|
126
150
|
|
|
127
|
-
///
|
|
151
|
+
/// The background color of the focused Load More button in the TreeView.
|
|
128
152
|
/// @group treeview
|
|
129
153
|
$kendo-treeview-loadmore-focus-bg: transparent !default;
|
|
130
|
-
///
|
|
154
|
+
/// The text color of the focused Load More button in the TreeView.
|
|
131
155
|
/// @group treeview
|
|
132
156
|
$kendo-treeview-loadmore-focus-text: $kendo-link-hover-text !default;
|
|
133
|
-
///
|
|
157
|
+
/// The border color of the focused Load More button in the TreeView.
|
|
134
158
|
/// @group treeview
|
|
135
159
|
$kendo-treeview-loadmore-focus-border: null !default;
|
|
136
|
-
///
|
|
160
|
+
/// The box shadow of the focused Load More button in the TreeView.
|
|
137
161
|
/// @group treeview
|
|
138
162
|
$kendo-treeview-loadmore-focus-shadow: $kendo-treeview-item-focus-shadow !default;
|
|
@@ -33,8 +33,6 @@ $kendo-upload-item-image-width: 24px !default;
|
|
|
33
33
|
$kendo-upload-item-image-height: 34px !default;
|
|
34
34
|
$kendo-upload-item-image-border: 2px !default;
|
|
35
35
|
|
|
36
|
-
$kendo-upload-group-icon-size: $kendo-icon-size-xxl !default;
|
|
37
|
-
|
|
38
36
|
$kendo-upload-progress-thickness: 2px !default;
|
|
39
37
|
$kendo-upload-progress-bg: $kendo-color-info !default;
|
|
40
38
|
|