@progress/kendo-theme-bootstrap 12.2.0-dev.3 → 12.2.0-dev.4
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 +78226 -47142
- package/dist/meta/sassdoc-raw-data.json +36624 -22474
- package/dist/meta/variables.json +1 -109
- 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/action-buttons/_variables.scss +18 -0
- package/scss/action-sheet/_variables.scss +138 -0
- package/scss/adaptive/_variables.scss +36 -0
- package/scss/appbar/_variables.scss +2 -0
- package/scss/badge/_variables.scss +2 -0
- package/scss/bottom-navigation/_variables.scss +2 -0
- package/scss/bubble/_variables.scss +0 -1
- package/scss/button/_variables.scss +28 -24
- package/scss/card/_variables.scss +2 -0
- package/scss/chat/_variables.scss +1 -1
- package/scss/checkbox/_variables.scss +2 -0
- package/scss/chip/_variables.scss +0 -2
- package/scss/color-preview/_variables.scss +18 -0
- package/scss/colorgradient/_variables.scss +1 -1
- package/scss/colorpalette/_variables.scss +1 -1
- package/scss/column-menu/_variables.scss +40 -0
- package/scss/dataviz/_variables.scss +202 -0
- package/scss/daterangepicker/_variables.scss +2 -0
- package/scss/draggable/_variables.scss +40 -0
- package/scss/editor/_variables.scss +6 -0
- package/scss/grid/_variables.scss +180 -17
- package/scss/icons/_variables.scss +14 -0
- package/scss/imageeditor/_variables.scss +62 -0
- package/scss/input/_variables.scss +0 -4
- package/scss/list/_variables.scss +126 -30
- package/scss/listgroup/_variables.scss +20 -0
- package/scss/loader/_variables.scss +2 -0
- package/scss/marquee/_variables.scss +6 -0
- package/scss/menu/_variables.scss +37 -5
- package/scss/messagebox/_variables.scss +24 -0
- package/scss/otp/_variables.scss +2 -0
- package/scss/overlay/_variables.scss +6 -0
- package/scss/pivotgrid/_variables.scss +10 -22
- package/scss/scheduler/_variables.scss +2 -0
- package/scss/signature/_variables.scss +42 -0
- package/scss/spreadsheet/_variables.scss +4 -0
- package/scss/stepper/_variables.scss +3 -3
- package/scss/suggestion/_variables.scss +2 -0
- package/scss/table/_variables.scss +12 -0
- package/scss/timeselector/_variables.scss +84 -0
- package/scss/upload/_variables.scss +4 -0
|
@@ -3,31 +3,71 @@
|
|
|
3
3
|
// @use "../core/spacing/_index.scss" as *;
|
|
4
4
|
|
|
5
5
|
// Drag hint
|
|
6
|
+
/// The horizontal padding of the drag hint.
|
|
7
|
+
/// @group draggable
|
|
6
8
|
$kendo-drag-hint-padding-x: k-spacing(3) !default;
|
|
9
|
+
/// The vertical padding of the drag hint.
|
|
10
|
+
/// @group draggable
|
|
7
11
|
$kendo-drag-hint-padding-y: k-spacing(1.5) !default;
|
|
12
|
+
/// The width of the border around the drag hint.
|
|
13
|
+
/// @group draggable
|
|
8
14
|
$kendo-drag-hint-border-width: 1px !default;
|
|
15
|
+
/// The border radius of the drag hint.
|
|
16
|
+
/// @group draggable
|
|
9
17
|
$kendo-drag-hint-border-radius: k-border-radius(md) !default;
|
|
18
|
+
/// The font size of the drag hint.
|
|
19
|
+
/// @group draggable
|
|
10
20
|
$kendo-drag-hint-font-size: var( --kendo-font-size, inherit ) !default;
|
|
21
|
+
/// The font family of the drag hint.
|
|
22
|
+
/// @group draggable
|
|
11
23
|
$kendo-drag-hint-font-family: var( --kendo-font-family, inherit )!default;
|
|
24
|
+
/// The line height of the drag hint.
|
|
25
|
+
/// @group draggable
|
|
12
26
|
$kendo-drag-hint-line-height: var( --kendo-line-height, normal ) !default;
|
|
13
27
|
|
|
28
|
+
/// The background color of the drag hint.
|
|
29
|
+
/// @group draggable
|
|
14
30
|
$kendo-drag-hint-bg: k-color(primary) !default;
|
|
31
|
+
/// The text color of the drag hint.
|
|
32
|
+
/// @group draggable
|
|
15
33
|
$kendo-drag-hint-text: k-color(on-primary) !default;
|
|
34
|
+
/// The border color of the drag hint.
|
|
35
|
+
/// @group draggable
|
|
16
36
|
$kendo-drag-hint-border: k-color(primary) !default;
|
|
37
|
+
/// The background gradient of the drag hint.
|
|
38
|
+
/// @group draggable
|
|
17
39
|
$kendo-drag-hint-gradient: null !default;
|
|
40
|
+
/// The shadow of the drag hint.
|
|
41
|
+
/// @group draggable
|
|
18
42
|
$kendo-drag-hint-shadow: null !default;
|
|
19
43
|
|
|
44
|
+
/// The opacity of the drag hint.
|
|
45
|
+
/// @group draggable
|
|
20
46
|
$kendo-drag-hint-opacity: null !default;
|
|
21
47
|
|
|
22
48
|
|
|
23
49
|
// Drop Hint
|
|
50
|
+
/// The size of the drop hint arrow.
|
|
51
|
+
/// @group draggable
|
|
24
52
|
$kendo-drop-hint-arrow-size: 8px !default;
|
|
53
|
+
/// The spacing of the drop hint arrow.
|
|
54
|
+
/// @group draggable
|
|
25
55
|
$kendo-drop-hint-arrow-spacing: math.div( $kendo-drop-hint-arrow-size, 2 ) !default;
|
|
56
|
+
/// The width of the horizontal drop hint line.
|
|
57
|
+
/// @group draggable
|
|
26
58
|
$kendo-drop-hint-line-h-width: 20px !default;
|
|
59
|
+
/// The height of the horizontal drop hint line.
|
|
60
|
+
/// @group draggable
|
|
27
61
|
$kendo-drop-hint-line-h-height: 1px !default;
|
|
62
|
+
/// The width of the vertical drop hint line.
|
|
63
|
+
/// @group draggable
|
|
28
64
|
$kendo-drop-hint-line-v-width: $kendo-drop-hint-line-h-height !default;
|
|
65
|
+
/// The height of the vertical drop hint line.
|
|
66
|
+
/// @group draggable
|
|
29
67
|
$kendo-drop-hint-line-v-height: $kendo-drop-hint-line-h-width !default;
|
|
30
68
|
|
|
69
|
+
/// The background color of the drop hint.
|
|
70
|
+
/// @group draggable
|
|
31
71
|
$kendo-drop-hint-bg: k-color(primary) !default;
|
|
32
72
|
|
|
33
73
|
|
|
@@ -74,8 +74,14 @@ $kendo-editor-filebrowser-tiles-padding-x: k-spacing(4) !default;
|
|
|
74
74
|
/// @group editor
|
|
75
75
|
$kendo-editor-filebrowser-tiles-padding-y: k-spacing(2) !default;
|
|
76
76
|
|
|
77
|
+
/// The text color of the Editor cell.
|
|
78
|
+
/// @group editor
|
|
77
79
|
$kendo-editor-ct-cell-text: k-color(on-primary) !default;
|
|
80
|
+
/// The background color of the Editor cell.
|
|
81
|
+
/// @group editor
|
|
78
82
|
$kendo-editor-ct-cell-bg: k-color(primary) !default;
|
|
83
|
+
/// The border color of the Editor cell.
|
|
84
|
+
/// @group editor
|
|
79
85
|
$kendo-editor-ct-cell-border: k-color(primary) !default;
|
|
80
86
|
|
|
81
87
|
/// The padding of the Editor content.
|
|
@@ -11,9 +11,17 @@
|
|
|
11
11
|
@use "../core/functions/index.import.scss" as *;
|
|
12
12
|
|
|
13
13
|
// Grid
|
|
14
|
+
/// The width of the border around the Grid.
|
|
15
|
+
/// @group grid
|
|
14
16
|
$kendo-grid-border-width: 1px !default;
|
|
17
|
+
/// The font family of the Grid.
|
|
18
|
+
/// @group grid
|
|
15
19
|
$kendo-grid-font-family: var( --kendo-font-family, inherit ) !default;
|
|
20
|
+
/// The font size of the Grid.
|
|
21
|
+
/// @group grid
|
|
16
22
|
$kendo-grid-font-size: var( --kendo-font-size, inherit ) !default;
|
|
23
|
+
/// The height of the Grid.
|
|
24
|
+
/// @group grid
|
|
17
25
|
$kendo-grid-line-height: var( --kendo-line-height, normal ) !default;
|
|
18
26
|
|
|
19
27
|
/// The horizontal padding of the Grid.
|
|
@@ -59,45 +67,115 @@ $kendo-grid-edit-cell-padding-x: $kendo-grid-cell-padding-x !default;
|
|
|
59
67
|
/// @group grid
|
|
60
68
|
$kendo-grid-edit-cell-padding-y: calc( #{k-spacing(2.5)} / 2 ) !default;
|
|
61
69
|
|
|
70
|
+
/// The drop hint size of the Grid group.
|
|
71
|
+
/// @group grid
|
|
62
72
|
$kendo-grid-group-drop-hint-size: 6px !default;
|
|
73
|
+
/// The drop hint line size of the Grid group.
|
|
74
|
+
/// @group grid
|
|
63
75
|
$kendo-grid-group-drop-hint-line-size: math.div( $kendo-grid-group-drop-hint-size, 3) !default;
|
|
76
|
+
/// The height of the Grid group.
|
|
77
|
+
/// @group grid
|
|
64
78
|
$kendo-grid-group-drop-hint-height: calc( #{$kendo-chip-calc-size} + #{$kendo-grid-group-drop-hint-size}) !default;
|
|
79
|
+
/// The drop hint top of the Grid group.
|
|
80
|
+
/// @group grid
|
|
65
81
|
$kendo-grid-group-drop-hint-top: 3px !default;
|
|
66
82
|
|
|
83
|
+
/// The horizontal padding of the Grid.
|
|
84
|
+
/// @group grid
|
|
67
85
|
$kendo-grid-sm-padding-x: k-spacing(1) !default;
|
|
86
|
+
/// The vertical padding of the Grid.
|
|
87
|
+
/// @group grid
|
|
68
88
|
$kendo-grid-sm-padding-y: k-spacing(1) !default;
|
|
89
|
+
/// The horizontal padding of the Grid header.
|
|
90
|
+
/// @group grid
|
|
69
91
|
$kendo-grid-sm-header-padding-x: $kendo-grid-sm-padding-x !default;
|
|
92
|
+
/// The vertical padding of the Grid header.
|
|
93
|
+
/// @group grid
|
|
70
94
|
$kendo-grid-sm-header-padding-y: $kendo-grid-sm-padding-y !default;
|
|
95
|
+
/// The horizontal padding of the Grid header.
|
|
96
|
+
/// @group grid
|
|
71
97
|
$kendo-grid-sm-grouping-header-padding-x: $kendo-grid-padding-x !default;
|
|
98
|
+
/// The vertical padding of the Grid header.
|
|
99
|
+
/// @group grid
|
|
72
100
|
$kendo-grid-sm-grouping-header-padding-y: $kendo-grid-sm-padding-y !default;
|
|
101
|
+
/// The horizontal padding of the Grid cell.
|
|
102
|
+
/// @group grid
|
|
73
103
|
$kendo-grid-sm-cell-padding-x: $kendo-grid-sm-padding-x !default;
|
|
104
|
+
/// The vertical padding of the Grid cell.
|
|
105
|
+
/// @group grid
|
|
74
106
|
$kendo-grid-sm-cell-padding-y: $kendo-grid-sm-padding-y !default;
|
|
107
|
+
/// The horizontal padding of the Grid cell.
|
|
108
|
+
/// @group grid
|
|
75
109
|
$kendo-grid-sm-filter-cell-padding-x: k-spacing(1.5) !default;
|
|
110
|
+
/// The vertical padding of the Grid cell.
|
|
111
|
+
/// @group grid
|
|
76
112
|
$kendo-grid-sm-filter-cell-padding-y: $kendo-grid-sm-filter-cell-padding-x !default;
|
|
113
|
+
/// The horizontal padding of the Grid cell.
|
|
114
|
+
/// @group grid
|
|
77
115
|
$kendo-grid-sm-edit-cell-padding-x: k-spacing(1) !default;
|
|
116
|
+
/// The vertical padding of the Grid cell.
|
|
117
|
+
/// @group grid
|
|
78
118
|
$kendo-grid-sm-edit-cell-padding-y: k-spacing(1) !default;
|
|
119
|
+
/// The height of the Grid group.
|
|
120
|
+
/// @group grid
|
|
79
121
|
$kendo-grid-sm-group-dropclue-height: calc( #{$kendo-chip-sm-calc-size} + #{$kendo-grid-group-drop-hint-size}) !default;
|
|
122
|
+
/// The horizontal padding of the Grid.
|
|
123
|
+
/// @group grid
|
|
80
124
|
$kendo-grid-sm-selection-aggregates-padding-x: $kendo-grid-sm-padding-y !default;
|
|
125
|
+
/// The vertical padding of the Grid.
|
|
126
|
+
/// @group grid
|
|
81
127
|
$kendo-grid-sm-selection-aggregates-padding-y: $kendo-grid-sm-padding-y !default;
|
|
82
128
|
|
|
129
|
+
/// The horizontal padding of the Grid.
|
|
130
|
+
/// @group grid
|
|
83
131
|
$kendo-grid-md-padding-x: $kendo-grid-padding-x !default;
|
|
132
|
+
/// The vertical padding of the Grid.
|
|
133
|
+
/// @group grid
|
|
84
134
|
$kendo-grid-md-padding-y: $kendo-grid-padding-y !default;
|
|
135
|
+
/// The horizontal padding of the Grid header.
|
|
136
|
+
/// @group grid
|
|
85
137
|
$kendo-grid-md-header-padding-x: $kendo-grid-header-padding-x !default;
|
|
138
|
+
/// The vertical padding of the Grid header.
|
|
139
|
+
/// @group grid
|
|
86
140
|
$kendo-grid-md-header-padding-y: $kendo-grid-header-padding-y !default;
|
|
141
|
+
/// The horizontal padding of the Grid header.
|
|
142
|
+
/// @group grid
|
|
87
143
|
$kendo-grid-md-grouping-header-padding-x: $kendo-grid-grouping-header-padding-x !default;
|
|
144
|
+
/// The vertical padding of the Grid header.
|
|
145
|
+
/// @group grid
|
|
88
146
|
$kendo-grid-md-grouping-header-padding-y: $kendo-grid-grouping-header-padding-y !default;
|
|
147
|
+
/// The horizontal padding of the Grid cell.
|
|
148
|
+
/// @group grid
|
|
89
149
|
$kendo-grid-md-cell-padding-x: $kendo-grid-cell-padding-x !default;
|
|
150
|
+
/// The vertical padding of the Grid cell.
|
|
151
|
+
/// @group grid
|
|
90
152
|
$kendo-grid-md-cell-padding-y: $kendo-grid-cell-padding-y !default;
|
|
153
|
+
/// The horizontal padding of the Grid cell.
|
|
154
|
+
/// @group grid
|
|
91
155
|
$kendo-grid-md-filter-cell-padding-x: $kendo-grid-filter-cell-padding-x !default;
|
|
156
|
+
/// The vertical padding of the Grid cell.
|
|
157
|
+
/// @group grid
|
|
92
158
|
$kendo-grid-md-filter-cell-padding-y: $kendo-grid-filter-cell-padding-y !default;
|
|
159
|
+
/// The horizontal padding of the Grid cell.
|
|
160
|
+
/// @group grid
|
|
93
161
|
$kendo-grid-md-edit-cell-padding-x: $kendo-grid-edit-cell-padding-x !default;
|
|
162
|
+
/// The vertical padding of the Grid cell.
|
|
163
|
+
/// @group grid
|
|
94
164
|
$kendo-grid-md-edit-cell-padding-y: $kendo-grid-edit-cell-padding-y !default;
|
|
165
|
+
/// The height of the Grid group.
|
|
166
|
+
/// @group grid
|
|
95
167
|
$kendo-grid-md-group-dropclue-height: $kendo-grid-group-drop-hint-height !default;
|
|
168
|
+
/// The horizontal padding of the Grid.
|
|
169
|
+
/// @group grid
|
|
96
170
|
$kendo-grid-md-selection-aggregates-padding-x: $kendo-grid-padding-y !default;
|
|
171
|
+
/// The vertical padding of the Grid.
|
|
172
|
+
/// @group grid
|
|
97
173
|
$kendo-grid-md-selection-aggregates-padding-y: $kendo-grid-padding-y !default;
|
|
98
174
|
|
|
99
175
|
|
|
100
176
|
// Kendo Grid sizes
|
|
177
|
+
/// The sizes of the Grid.
|
|
178
|
+
/// @group grid
|
|
101
179
|
$kendo-grid-sizes: (
|
|
102
180
|
sm: (
|
|
103
181
|
header-padding-x: $kendo-grid-sm-header-padding-x,
|
|
@@ -135,13 +213,25 @@ $kendo-grid-sizes: (
|
|
|
135
213
|
),
|
|
136
214
|
) !default;
|
|
137
215
|
|
|
216
|
+
/// The font size of the Grid header.
|
|
217
|
+
/// @group grid
|
|
138
218
|
$kendo-grid-header-font-size: null !default;
|
|
219
|
+
/// The border color of the Grid header.
|
|
220
|
+
/// @group grid
|
|
139
221
|
$kendo-grid-header-first-border: 1px !default;
|
|
222
|
+
/// The spacing of the Grid header.
|
|
223
|
+
/// @group grid
|
|
140
224
|
$kendo-grid-header-menu-icon-spacing: $kendo-icon-spacing !default;
|
|
141
225
|
|
|
226
|
+
/// The width of the border around the Grid toolbar.
|
|
227
|
+
/// @group grid
|
|
142
228
|
$kendo-grid-toolbar-border-width: $kendo-grid-border-width !default;
|
|
143
229
|
|
|
230
|
+
/// The width of the border around the Grid cell.
|
|
231
|
+
/// @group grid
|
|
144
232
|
$kendo-grid-cell-horizontal-border-width: $kendo-table-cell-horizontal-border-width !default;
|
|
233
|
+
/// The width of the border around the Grid cell.
|
|
234
|
+
/// @group grid
|
|
145
235
|
$kendo-grid-cell-vertical-border-width: $kendo-table-cell-vertical-border-width !default;
|
|
146
236
|
|
|
147
237
|
/// The background color of the Grid.
|
|
@@ -228,83 +318,164 @@ $kendo-grid-selection-aggregates-line-height: $kendo-grid-line-height !default;
|
|
|
228
318
|
/// @group grid
|
|
229
319
|
$kendo-grid-selection-aggregates-font-weight: var( --kendo-font-weight-bold, normal )!default;
|
|
230
320
|
|
|
321
|
+
/// The background color of the Grid row.
|
|
322
|
+
/// @group grid
|
|
231
323
|
$kendo-grid-grouping-row-bg: k-color(base-subtle) !default;
|
|
324
|
+
/// The text color of the Grid row.
|
|
325
|
+
/// @group grid
|
|
232
326
|
$kendo-grid-grouping-row-text: $kendo-grid-text !default;
|
|
233
327
|
|
|
328
|
+
/// The background color of the Grid.
|
|
329
|
+
/// @group grid
|
|
234
330
|
$kendo-grid-sorted-bg: color-mix(in srgb, k-color(on-app-surface) 2%, transparent) !default;
|
|
331
|
+
/// The text color of the Grid.
|
|
332
|
+
/// @group grid
|
|
235
333
|
$kendo-grid-sorting-indicator-text: k-color(primary) !default;
|
|
334
|
+
/// The font size of the Grid.
|
|
335
|
+
/// @group grid
|
|
236
336
|
$kendo-grid-sorting-index-font-size: ($kendo-icon-size * .75) !default;
|
|
237
|
-
|
|
337
|
+
/// The sorting index vertical spacing of the Grid.
|
|
338
|
+
/// @group grid
|
|
238
339
|
$kendo-grid-sorting-index-spacing-y: k-spacing(0.5) !default;
|
|
340
|
+
/// The sorting index horizontal spacing of the Grid.
|
|
341
|
+
/// @group grid
|
|
239
342
|
$kendo-grid-sorting-index-spacing-x: calc( #{$kendo-grid-sorting-index-spacing-y} * -1 ) !default;
|
|
240
343
|
|
|
344
|
+
/// The sorted icon spacing of the Grid.
|
|
345
|
+
/// @group grid
|
|
241
346
|
$kendo-grid-sorted-icon-spacing: calc( #{k-spacing(4)} - 1px ) !default;
|
|
242
347
|
|
|
348
|
+
/// The shadow of the Grid.
|
|
349
|
+
/// @group grid
|
|
243
350
|
$kendo-grid-focus-shadow: $kendo-table-focus-shadow !default;
|
|
244
351
|
|
|
352
|
+
/// The spacing of the Grid button.
|
|
353
|
+
/// @group grid
|
|
245
354
|
$kendo-grid-command-cell-button-spacing: k-spacing(2) !default;
|
|
246
355
|
|
|
247
356
|
// Must be solid colors
|
|
357
|
+
/// The background color of the sticky content in the Grid.
|
|
358
|
+
/// @group grid
|
|
248
359
|
$kendo-grid-sticky-bg: $kendo-grid-bg !default;
|
|
360
|
+
/// The alternate background color of the sticky content in the Grid.
|
|
361
|
+
/// @group grid
|
|
249
362
|
$kendo-grid-sticky-alt-bg: k-color(base-subtle) !default;
|
|
363
|
+
/// The background color of the hovered sticky content in the Grid.
|
|
364
|
+
/// @group grid
|
|
250
365
|
$kendo-grid-sticky-hover-bg: k-color(base-subtle-hover) !default;
|
|
251
366
|
|
|
252
|
-
|
|
367
|
+
/// The border color of the sticky content in the Grid.
|
|
368
|
+
/// @group grid
|
|
253
369
|
$kendo-grid-sticky-border: color-mix(in srgb, k-color(on-app-surface) 50%, transparent) !default;
|
|
254
370
|
|
|
371
|
+
/// The background color of the sticky header in the Grid.
|
|
372
|
+
/// @group grid
|
|
255
373
|
$kendo-grid-sticky-header-bg: $kendo-grid-header-bg !default;
|
|
374
|
+
/// The text color of the sticky header in the Grid.
|
|
375
|
+
/// @group grid
|
|
256
376
|
$kendo-grid-sticky-header-text: $kendo-grid-header-text !default;
|
|
377
|
+
/// The border color of the sticky header in the Grid.
|
|
378
|
+
/// @group grid
|
|
257
379
|
$kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
|
|
258
380
|
|
|
381
|
+
/// The background color of the sticky footer in the Grid.
|
|
382
|
+
/// @group grid
|
|
259
383
|
$kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
|
|
384
|
+
/// The background color of the hovered sticky footer in the Grid.
|
|
385
|
+
/// @group grid
|
|
260
386
|
$kendo-grid-sticky-footer-hover-bg: $kendo-grid-sticky-footer-bg !default;
|
|
261
387
|
|
|
388
|
+
/// The width of the Grid column menu.
|
|
389
|
+
/// @group grid
|
|
262
390
|
$kendo-grid-column-menu-width: 250px !default;
|
|
391
|
+
/// The maximum width of the Grid column menu.
|
|
392
|
+
/// @group grid
|
|
263
393
|
$kendo-grid-column-menu-max-width: 320px !default;
|
|
264
394
|
|
|
265
|
-
$kendo-grid-filter-menu-check-all-border-bottom-width: 1px !default;
|
|
266
|
-
|
|
267
|
-
$kendo-grid-filter-menu-item-spacing-x: k-spacing(6) !default;
|
|
268
|
-
$kendo-grid-filter-menu-item-spacing-y: k-spacing(2) !default;
|
|
269
395
|
|
|
396
|
+
/// The horizontal padding of the Grid popup.
|
|
397
|
+
/// @group grid
|
|
270
398
|
$kendo-grid-column-menu-popup-padding-x: null !default;
|
|
399
|
+
/// The vertical padding of the Grid popup.
|
|
400
|
+
/// @group grid
|
|
271
401
|
$kendo-grid-column-menu-popup-padding-y: null !default;
|
|
272
402
|
|
|
403
|
+
/// The horizontal padding of the Grid item.
|
|
404
|
+
/// @group grid
|
|
273
405
|
$kendo-grid-column-menu-item-padding-x: $kendo-menu-popup-md-item-padding-x !default;
|
|
406
|
+
/// The vertical padding of the Grid item.
|
|
407
|
+
/// @group grid
|
|
274
408
|
$kendo-grid-column-menu-item-padding-y: $kendo-menu-popup-md-item-padding-y !default;
|
|
275
409
|
|
|
410
|
+
/// The horizontal padding of the Grid item.
|
|
411
|
+
/// @group grid
|
|
276
412
|
$kendo-grid-column-menu-list-item-padding-x: $kendo-list-md-item-padding-x !default;
|
|
413
|
+
/// The vertical padding of the Grid item.
|
|
414
|
+
/// @group grid
|
|
277
415
|
$kendo-grid-column-menu-list-item-padding-y: $kendo-list-md-item-padding-y !default;
|
|
278
416
|
|
|
417
|
+
/// The horizontal padding of the Grid.
|
|
418
|
+
/// @group grid
|
|
279
419
|
$kendo-grid-column-menu-items-wrap-padding-x: k-spacing(0) !default;
|
|
420
|
+
/// The vertical padding of the Grid.
|
|
421
|
+
/// @group grid
|
|
280
422
|
$kendo-grid-column-menu-items-wrap-padding-y: k-spacing(2) !default;
|
|
281
423
|
|
|
424
|
+
/// The horizontal padding of the Grid header.
|
|
425
|
+
/// @group grid
|
|
282
426
|
$kendo-grid-column-menu-group-header-padding-x: $kendo-menu-popup-md-item-padding-x !default;
|
|
427
|
+
/// The vertical padding of the Grid header.
|
|
428
|
+
/// @group grid
|
|
283
429
|
$kendo-grid-column-menu-group-header-padding-y: $kendo-menu-popup-md-item-padding-y !default;
|
|
284
430
|
|
|
431
|
+
/// The font size of the Grid header.
|
|
432
|
+
/// @group grid
|
|
285
433
|
$kendo-grid-column-menu-group-header-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
434
|
+
/// The height of the Grid header.
|
|
435
|
+
/// @group grid
|
|
286
436
|
$kendo-grid-column-menu-group-header-line-height: var( --kendo-line-height, normal ) !default;
|
|
437
|
+
/// The text color of the Grid header.
|
|
438
|
+
/// @group grid
|
|
287
439
|
$kendo-grid-column-menu-group-header-text-transform: uppercase !default;
|
|
440
|
+
/// The width of the Grid header.
|
|
441
|
+
/// @group grid
|
|
288
442
|
$kendo-grid-column-menu-group-header-border-bottom-width: 1px !default;
|
|
289
443
|
|
|
444
|
+
/// The background color of the Grid header.
|
|
445
|
+
/// @group grid
|
|
290
446
|
$kendo-grid-column-menu-group-header-bg: null !default;
|
|
447
|
+
/// The text color of the Grid header.
|
|
448
|
+
/// @group grid
|
|
291
449
|
$kendo-grid-column-menu-group-header-text: $kendo-popup-text !default;
|
|
450
|
+
/// The border color of the Grid header.
|
|
451
|
+
/// @group grid
|
|
292
452
|
$kendo-grid-column-menu-group-header-border: $kendo-popup-border !default;
|
|
293
453
|
|
|
454
|
+
/// The horizontal padding of the Grid content.
|
|
455
|
+
/// @group grid
|
|
294
456
|
$kendo-grid-column-menu-tabbed-tabstrip-content-padding-x: k-spacing(0)!default;
|
|
457
|
+
/// The vertical padding of the Grid content.
|
|
458
|
+
/// @group grid
|
|
295
459
|
$kendo-grid-column-menu-tabbed-tabstrip-content-padding-y: k-spacing(2) !default;
|
|
296
460
|
|
|
461
|
+
/// The background color of the Grid.
|
|
462
|
+
/// @group grid
|
|
297
463
|
$kendo-grid-column-menu-tabbed-bg: k-color(surface) !default;
|
|
298
464
|
|
|
465
|
+
/// The width of the Grid cell.
|
|
466
|
+
/// @group grid
|
|
299
467
|
$kendo-grid-drag-cell-width: ($kendo-icon-size * 3) !default;
|
|
300
468
|
|
|
301
|
-
|
|
302
|
-
|
|
469
|
+
/// The width of the Grid.
|
|
470
|
+
/// @group grid
|
|
303
471
|
$kendo-grid-hierarchy-col-width: ($kendo-icon-size * 2) !default;
|
|
304
472
|
|
|
473
|
+
/// The grouping border top of the Grid row.
|
|
474
|
+
/// @group grid
|
|
305
475
|
$kendo-grid-grouping-row-border-top: 1px !default;
|
|
476
|
+
/// The vertical border of the Grid footer.
|
|
477
|
+
/// @group grid
|
|
306
478
|
$kendo-grid-group-footer-border-y: 1px !default;
|
|
307
|
-
$kendo-grid-group-footer-second-cell-border: 1px !default;
|
|
308
479
|
|
|
309
480
|
/// The background color of the Grid row resize indicator.
|
|
310
481
|
/// @group grid
|
|
@@ -443,27 +614,21 @@ $kendo-grid-stack-expandable-shadow: k-elevation(2) !default;
|
|
|
443
614
|
$kendo-grid-sorted-bg: $kendo-grid-sorted-bg,
|
|
444
615
|
$kendo-grid-sorting-indicator-text: $kendo-grid-sorting-indicator-text,
|
|
445
616
|
$kendo-grid-sorting-index-font-size: $kendo-grid-sorting-index-font-size,
|
|
446
|
-
$kendo-grid-sorting-index-height: $kendo-grid-sorting-index-height,
|
|
447
617
|
$kendo-grid-sorting-index-spacing-y: $kendo-grid-sorting-index-spacing-y,
|
|
448
618
|
$kendo-grid-sorting-index-spacing-x: $kendo-grid-sorting-index-spacing-x,
|
|
449
619
|
$kendo-grid-sorted-icon-spacing: $kendo-grid-sorted-icon-spacing,
|
|
450
620
|
$kendo-grid-focus-shadow: $kendo-grid-focus-shadow,
|
|
451
621
|
$kendo-grid-command-cell-button-spacing: $kendo-grid-command-cell-button-spacing,
|
|
452
622
|
$kendo-grid-sticky-bg: $kendo-grid-sticky-bg,
|
|
453
|
-
$kendo-grid-sticky-text: $kendo-grid-sticky-text,
|
|
454
623
|
$kendo-grid-sticky-border: $kendo-grid-sticky-border,
|
|
455
624
|
$kendo-grid-sticky-alt-bg: $kendo-grid-sticky-alt-bg,
|
|
456
625
|
$kendo-grid-sticky-header-bg: $kendo-grid-sticky-header-bg,
|
|
457
626
|
$kendo-grid-sticky-header-text: $kendo-grid-sticky-header-text,
|
|
458
627
|
$kendo-grid-sticky-header-border: $kendo-grid-sticky-header-border,
|
|
459
628
|
$kendo-grid-sticky-footer-bg: $kendo-grid-sticky-footer-bg,
|
|
460
|
-
$kendo-grid-sticky-footer-hover-bg: $kendo-grid-sticky-footer-hover-bg,
|
|
461
629
|
$kendo-grid-sticky-hover-bg: $kendo-grid-sticky-hover-bg,
|
|
462
630
|
$kendo-grid-column-menu-width: $kendo-grid-column-menu-width,
|
|
463
631
|
$kendo-grid-column-menu-max-width: $kendo-grid-column-menu-max-width,
|
|
464
|
-
$kendo-grid-filter-menu-check-all-border-bottom-width: $kendo-grid-filter-menu-check-all-border-bottom-width,
|
|
465
|
-
$kendo-grid-filter-menu-item-spacing-x: $kendo-grid-filter-menu-item-spacing-x,
|
|
466
|
-
$kendo-grid-filter-menu-item-spacing-y: $kendo-grid-filter-menu-item-spacing-y,
|
|
467
632
|
$kendo-grid-column-menu-popup-padding-x: $kendo-grid-column-menu-popup-padding-x,
|
|
468
633
|
$kendo-grid-column-menu-popup-padding-y: $kendo-grid-column-menu-popup-padding-y,
|
|
469
634
|
$kendo-grid-column-menu-item-padding-x: $kendo-grid-column-menu-item-padding-x,
|
|
@@ -485,11 +650,9 @@ $kendo-grid-stack-expandable-shadow: k-elevation(2) !default;
|
|
|
485
650
|
$kendo-grid-column-menu-tabbed-tabstrip-content-padding-y: $kendo-grid-column-menu-tabbed-tabstrip-content-padding-y,
|
|
486
651
|
$kendo-grid-column-menu-tabbed-bg: $kendo-grid-column-menu-tabbed-bg,
|
|
487
652
|
$kendo-grid-drag-cell-width: $kendo-grid-drag-cell-width,
|
|
488
|
-
$kendo-grid-row-inner-height: $kendo-grid-row-inner-height,
|
|
489
653
|
$kendo-grid-hierarchy-col-width: $kendo-grid-hierarchy-col-width,
|
|
490
654
|
$kendo-grid-grouping-row-border-top: $kendo-grid-grouping-row-border-top,
|
|
491
655
|
$kendo-grid-group-footer-border-y: $kendo-grid-group-footer-border-y,
|
|
492
|
-
$kendo-grid-group-footer-second-cell-border: $kendo-grid-group-footer-second-cell-border,
|
|
493
656
|
$kendo-grid-row-resizer-hover-bg: $kendo-grid-row-resizer-hover-bg,
|
|
494
657
|
$kendo-grid-row-resizer-active-bg: $kendo-grid-row-resizer-active-bg,
|
|
495
658
|
$kendo-grid-row-resizer-height: $kendo-grid-row-resizer-height,
|
|
@@ -4,12 +4,26 @@
|
|
|
4
4
|
/// @group icon
|
|
5
5
|
$kendo-icon-size: 1rem !default;
|
|
6
6
|
|
|
7
|
+
/// The xs size of the Icon.
|
|
8
|
+
/// @group icon
|
|
7
9
|
$kendo-icon-size-xs: calc( var( --kendo-icon-size, 1rem ) * .75 ) !default;
|
|
10
|
+
/// The sm size of the Icon.
|
|
11
|
+
/// @group icon
|
|
8
12
|
$kendo-icon-size-sm: calc( var( --kendo-icon-size, 1rem ) * .875 ) !default;
|
|
13
|
+
/// The md size of the Icon.
|
|
14
|
+
/// @group icon
|
|
9
15
|
$kendo-icon-size-md: var( --kendo-icon-size, 1rem ) !default;
|
|
16
|
+
/// The lg size of the Icon.
|
|
17
|
+
/// @group icon
|
|
10
18
|
$kendo-icon-size-lg: calc( var( --kendo-icon-size, 1rem ) * 1.25 ) !default;
|
|
19
|
+
/// The xl size of the Icon.
|
|
20
|
+
/// @group icon
|
|
11
21
|
$kendo-icon-size-xl: calc( var( --kendo-icon-size, 1rem ) * 1.5 ) !default;
|
|
22
|
+
/// The xxl size of the Icon.
|
|
23
|
+
/// @group icon
|
|
12
24
|
$kendo-icon-size-xxl: calc( var( --kendo-icon-size, 1rem ) * 2 ) !default;
|
|
25
|
+
/// The xxxl size of the Icon.
|
|
26
|
+
/// @group icon
|
|
13
27
|
$kendo-icon-size-xxxl: calc( var( --kendo-icon-size, 1rem ) * 3 ) !default;
|
|
14
28
|
|
|
15
29
|
/// Spacing around the icons.
|
|
@@ -1,46 +1,108 @@
|
|
|
1
1
|
@use "../core/_index.scss" as *;
|
|
2
2
|
|
|
3
3
|
// Imageeditor
|
|
4
|
+
/// The vertical margin of the ImageEditor.
|
|
5
|
+
/// @group image-editor
|
|
4
6
|
$kendo-image-editor-margin-y: null !default;
|
|
7
|
+
/// The horizontal margin of the ImageEditor.
|
|
8
|
+
/// @group image-editor
|
|
5
9
|
$kendo-image-editor-margin-x: null !default;
|
|
10
|
+
/// The vertical padding of the ImageEditor.
|
|
11
|
+
/// @group image-editor
|
|
6
12
|
$kendo-image-editor-padding-y: null !default;
|
|
13
|
+
/// The horizontal padding of the ImageEditor.
|
|
14
|
+
/// @group image-editor
|
|
7
15
|
$kendo-image-editor-padding-x: null !default;
|
|
8
16
|
|
|
17
|
+
/// The width of the border around the ImageEditor.
|
|
18
|
+
/// @group image-editor
|
|
9
19
|
$kendo-image-editor-border-width: 1px !default;
|
|
20
|
+
/// The font size of the ImageEditor.
|
|
21
|
+
/// @group image-editor
|
|
10
22
|
$kendo-image-editor-font-size: var( --kendo-font-size, inherit ) !default;
|
|
23
|
+
/// The line height of the ImageEditor.
|
|
24
|
+
/// @group image-editor
|
|
11
25
|
$kendo-image-editor-line-height: var( --kendo-line-height, normal ) !default;
|
|
26
|
+
/// The font family of the ImageEditor.
|
|
27
|
+
/// @group image-editor
|
|
12
28
|
$kendo-image-editor-font-family: var( --kendo-font-family, inherit ) !default;
|
|
13
29
|
|
|
30
|
+
/// The width of the border around the ImageEditor content.
|
|
31
|
+
/// @group image-editor
|
|
14
32
|
$kendo-image-editor-content-border-width: 1px !default;
|
|
15
33
|
|
|
34
|
+
/// The vertical padding of the ImageEditor action pane.
|
|
35
|
+
/// @group image-editor
|
|
16
36
|
$kendo-image-editor-action-pane-padding-y: k-spacing(8) !default;
|
|
37
|
+
/// The horizontal padding of the ImageEditor action pane.
|
|
38
|
+
/// @group image-editor
|
|
17
39
|
$kendo-image-editor-action-pane-padding-x: k-spacing(4) !default;
|
|
40
|
+
/// The width of the ImageEditor action pane.
|
|
41
|
+
/// @group image-editor
|
|
18
42
|
$kendo-image-editor-action-pane-width: if( $kendo-image-editor-content-border-width == null, 250px, calc( 250px + #{$kendo-image-editor-content-border-width} ) ) !default;
|
|
19
43
|
|
|
44
|
+
/// The width of the border around the ImageEditor crop area.
|
|
45
|
+
/// @group image-editor
|
|
20
46
|
$kendo-image-editor-crop-border-width: 1px !default;
|
|
47
|
+
/// The style of the border around the ImageEditor crop area.
|
|
48
|
+
/// @group image-editor
|
|
21
49
|
$kendo-image-editor-crop-border-style: dashed !default;
|
|
22
50
|
|
|
51
|
+
/// The horizontal margin of the ImageEditor resize handle.
|
|
52
|
+
/// @group image-editor
|
|
23
53
|
$kendo-image-editor-resize-handle-margin-x: k-spacing(1px) !default;
|
|
54
|
+
/// The vertical margin of the ImageEditor resize handle.
|
|
55
|
+
/// @group image-editor
|
|
24
56
|
$kendo-image-editor-resize-handle-margin-y: k-spacing(1px) !default;
|
|
57
|
+
/// The width of the border around the ImageEditor resize handle.
|
|
58
|
+
/// @group image-editor
|
|
25
59
|
$kendo-image-editor-resize-handle-border-width: 0 2px 2px 0 !default;
|
|
60
|
+
/// The size of the ImageEditor resize handle.
|
|
61
|
+
/// @group image-editor
|
|
26
62
|
$kendo-image-editor-resize-handle-size: 15px !default;
|
|
27
63
|
|
|
64
|
+
/// The background color of the ImageEditor.
|
|
65
|
+
/// @group image-editor
|
|
28
66
|
$kendo-image-editor-bg: k-color(surface-alt) !default;
|
|
67
|
+
/// The text color of the ImageEditor.
|
|
68
|
+
/// @group image-editor
|
|
29
69
|
$kendo-image-editor-text: k-color(on-app-surface) !default;
|
|
70
|
+
/// The border color of the ImageEditor.
|
|
71
|
+
/// @group image-editor
|
|
30
72
|
$kendo-image-editor-border: k-color(border) !default;
|
|
31
73
|
|
|
74
|
+
/// The background color of the ImageEditor content.
|
|
75
|
+
/// @group image-editor
|
|
32
76
|
$kendo-image-editor-content-bg: k-color(surface) !default;
|
|
77
|
+
/// The text color of the ImageEditor content.
|
|
78
|
+
/// @group image-editor
|
|
33
79
|
$kendo-image-editor-content-text: null !default;
|
|
80
|
+
/// The border color of the ImageEditor content.
|
|
81
|
+
/// @group image-editor
|
|
34
82
|
$kendo-image-editor-content-border: null !default;
|
|
35
83
|
|
|
84
|
+
/// The background color of the ImageEditor action pane.
|
|
85
|
+
/// @group image-editor
|
|
36
86
|
$kendo-image-editor-action-pane-bg: k-color(surface-alt) !default;
|
|
87
|
+
/// The text color of the ImageEditor action pane.
|
|
88
|
+
/// @group image-editor
|
|
37
89
|
$kendo-image-editor-action-pane-text: null !default;
|
|
90
|
+
/// The border color of the ImageEditor action pane.
|
|
91
|
+
/// @group image-editor
|
|
38
92
|
$kendo-image-editor-action-pane-border: null !default;
|
|
39
93
|
|
|
94
|
+
/// The background color of the ImageEditor crop area.
|
|
95
|
+
/// @group image-editor
|
|
40
96
|
$kendo-image-editor-crop-bg: null !default;
|
|
97
|
+
/// The text color of the ImageEditor crop area.
|
|
98
|
+
/// @group image-editor
|
|
41
99
|
$kendo-image-editor-crop-text: null !default;
|
|
100
|
+
/// The border color of the ImageEditor crop area.
|
|
101
|
+
/// @group image-editor
|
|
42
102
|
$kendo-image-editor-crop-border: white !default;
|
|
43
103
|
|
|
104
|
+
/// The background color of the ImageEditor crop overlay.
|
|
105
|
+
/// @group image-editor
|
|
44
106
|
$kendo-image-editor-crop-overlay-bg: color-mix(in srgb, k-color(inverse) 30%, transparent) !default;
|
|
45
107
|
|
|
46
108
|
|
|
@@ -13,7 +13,6 @@ $kendo-input-default-width: 100% !default;
|
|
|
13
13
|
/// The border width of the Input components.
|
|
14
14
|
/// @group input
|
|
15
15
|
$kendo-input-border-width: 1px !default;
|
|
16
|
-
$kendo-input-border-height: calc( #{ $kendo-input-border-width } * 2 ) !default;
|
|
17
16
|
/// The border radius of the Input components.
|
|
18
17
|
/// @group input
|
|
19
18
|
$kendo-input-border-radius: null !default;
|
|
@@ -68,8 +67,6 @@ $kendo-input-md-line-height: var( --kendo-line-height, normal) !default;
|
|
|
68
67
|
/// @group input
|
|
69
68
|
$kendo-input-lg-line-height: var( --kendo-line-height, normal) !default;
|
|
70
69
|
|
|
71
|
-
/// The calculated height of the Input.
|
|
72
|
-
/// @group input
|
|
73
70
|
$kendo-input-sm-calc-size: calc( ( #{$kendo-input-sm-line-height} * 1em ) + ( #{$kendo-input-sm-padding-y} * 2 ) + ( #{$kendo-input-border-width * 2} ) ) !default;
|
|
74
71
|
$kendo-input-md-calc-size: calc( ( #{$kendo-input-md-line-height} * 1em ) + ( #{$kendo-input-md-padding-y} * 2 ) + ( #{$kendo-input-border-width * 2} ) ) !default;
|
|
75
72
|
$kendo-input-lg-calc-size: calc( ( #{$kendo-input-lg-line-height} * 1em ) + ( #{$kendo-input-lg-padding-y} * 2 ) + ( #{$kendo-input-border-width * 2} ) ) !default;
|
|
@@ -437,7 +434,6 @@ $kendo-use-input-spinner-icon-offset: false !default;
|
|
|
437
434
|
@forward "@progress/kendo-theme-core/scss/components/input/_variables.scss" with (
|
|
438
435
|
$kendo-input-default-width: $kendo-input-default-width,
|
|
439
436
|
$kendo-input-border-width: $kendo-input-border-width,
|
|
440
|
-
$kendo-input-border-height: $kendo-input-border-height,
|
|
441
437
|
$kendo-input-border-radius: $kendo-input-border-radius,
|
|
442
438
|
$kendo-input-sm-padding-x: $kendo-input-sm-padding-x,
|
|
443
439
|
$kendo-input-md-padding-x: $kendo-input-md-padding-x,
|