@progress/kendo-theme-bootstrap 13.2.0-dev.2 → 13.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-dark.scss +0 -20
- 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 +1606 -2706
- package/dist/meta/sassdoc-raw-data.json +757 -1226
- package/dist/meta/variables.json +48 -175
- 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 -101
- 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/adaptive/_variables.scss +3 -3
- package/scss/appbar/_variables.scss +1 -19
- package/scss/breadcrumb/_variables.scss +2 -2
- package/scss/card/_variables.scss +0 -6
- package/scss/coloreditor/_variables.scss +1 -1
- package/scss/colorgradient/_variables.scss +1 -1
- package/scss/colorpalette/_variables.scss +3 -3
- package/scss/column-menu/_variables.scss +1 -1
- package/scss/core/color-system/_swatch.scss +0 -56
- package/scss/dialog/_variables.scss +0 -6
- package/scss/expansion-panel/_variables.scss +1 -1
- package/scss/filter/_variables.scss +1 -1
- package/scss/grid/_layout.scss +4 -0
- package/scss/grid/_theme.scss +2 -449
- package/scss/grid/_variables.scss +1 -7
- package/scss/icons/_variables.scss +6 -2
- package/scss/notification/_variables.scss +1 -1
- package/scss/overlay/_variables.scss +2 -6
- package/scss/skeleton/_variables.scss +1 -1
- package/scss/spreadsheet/_variables.scss +1 -1
- package/scss/stepper/_variables.scss +1 -1
- package/scss/timeselector/_variables.scss +4 -4
- package/scss/tooltip/_variables.scss +1 -1
- package/scss/treeview/_variables.scss +1 -1
- package/scss/upload/_variables.scss +2 -2
- package/scss/window/_variables.scss +0 -6
package/scss/grid/_theme.scss
CHANGED
|
@@ -1,454 +1,7 @@
|
|
|
1
|
-
@use "../core/_index.scss" as *;
|
|
2
|
-
@use "./_variables.scss" as *;
|
|
3
|
-
@use "../list/_variables.scss" as *;
|
|
4
|
-
@use "../popup/_variables.scss" as *;
|
|
5
1
|
@use "@progress/kendo-theme-core/scss/components/grid/_theme.scss" as *;
|
|
6
2
|
|
|
7
3
|
|
|
8
4
|
@mixin kendo-grid--theme() {
|
|
9
|
-
|
|
10
|
-
// Theme
|
|
11
|
-
.k-grid {
|
|
12
|
-
@include fill( $kendo-grid-text, $kendo-grid-bg, $kendo-grid-border );
|
|
13
|
-
|
|
14
|
-
.k-table {
|
|
15
|
-
background-color: inherit;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
td,
|
|
19
|
-
.k-table-td,
|
|
20
|
-
.k-grid-content,
|
|
21
|
-
.k-grid-header-locked,
|
|
22
|
-
.k-grid-content-locked {
|
|
23
|
-
border-color: $kendo-grid-border;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
// Alt row
|
|
27
|
-
.k-table-alt-row {
|
|
28
|
-
color: $kendo-grid-alt-text;
|
|
29
|
-
background-color: $kendo-grid-alt-bg;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
// Hover state
|
|
33
|
-
tbody>tr:not(.k-detail-row):hover,
|
|
34
|
-
.k-table-tbody>.k-table-row:not(.k-detail-row).k-hover {
|
|
35
|
-
color: $kendo-grid-hover-text;
|
|
36
|
-
background-color: $kendo-grid-hover-bg;
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
// Selected state
|
|
40
|
-
.k-table-th.k-selected,
|
|
41
|
-
td.k-selected,
|
|
42
|
-
.k-table-td.k-selected,
|
|
43
|
-
.k-table-row.k-selected > td,
|
|
44
|
-
.k-table-row.k-selected > .k-table-td {
|
|
45
|
-
@include fill( $kendo-grid-selected-text, $kendo-grid-selected-bg );
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
// Highlighted state
|
|
49
|
-
td.k-highlighted,
|
|
50
|
-
.k-table-row.k-highlighted > td,
|
|
51
|
-
.k-table-td.k-highlighted,
|
|
52
|
-
.k-table-row.k-highlighted > .k-table-td {
|
|
53
|
-
@include fill( $bg: $kendo-grid-highlighted-bg );
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
// Highlighted Selected state
|
|
57
|
-
td.k-highlighted.k-selected,
|
|
58
|
-
.k-table-row.k-highlighted.k-selected > td,
|
|
59
|
-
.k-table-td.k-highlighted.k-selected,
|
|
60
|
-
.k-table-row.k-highlighted.k-selected > .k-table-td,
|
|
61
|
-
.k-table-row.k-highlighted > .k-table-td.k-selected,
|
|
62
|
-
.k-table-row.k-selected > .k-table-td.k-highlighted {
|
|
63
|
-
@include fill( $bg: $kendo-grid-selected-highlighted-bg );
|
|
64
|
-
}
|
|
65
|
-
|
|
66
|
-
// Focused state
|
|
67
|
-
.k-table-th,
|
|
68
|
-
td,
|
|
69
|
-
.k-table-td,
|
|
70
|
-
.k-master-row > td,
|
|
71
|
-
.k-grouping-row > td,
|
|
72
|
-
.k-detail-row > td,
|
|
73
|
-
.k-group-footer > td,
|
|
74
|
-
.k-master-row > .k-table-td,
|
|
75
|
-
.k-grouping-row > .k-table-td,
|
|
76
|
-
.k-detail-row > .k-table-td,
|
|
77
|
-
.k-group-footer > .k-table-td,
|
|
78
|
-
.k-grid-pager {
|
|
79
|
-
&:focus,
|
|
80
|
-
&.k-focus {
|
|
81
|
-
box-shadow: $kendo-grid-focus-shadow;
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
col.k-sorted,
|
|
86
|
-
.k-table-th.k-sorted {
|
|
87
|
-
background-color: $kendo-grid-sorted-bg;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
// Locked
|
|
91
|
-
|
|
92
|
-
.k-grid-header-locked,
|
|
93
|
-
.k-grid-content-locked,
|
|
94
|
-
.k-grid-footer-locked,
|
|
95
|
-
.k-grid-header-locked .k-header,
|
|
96
|
-
.k-grid-content-locked td,
|
|
97
|
-
.k-grid-content-locked .k-table-td,
|
|
98
|
-
.k-grid-footer-locked td,
|
|
99
|
-
.k-grid-footer-locked .k-table-td {
|
|
100
|
-
border-color: $kendo-grid-sticky-header-border;
|
|
101
|
-
}
|
|
102
|
-
|
|
103
|
-
.k-grid-header-locked .k-header {
|
|
104
|
-
border-block-end-color: $kendo-grid-header-border;
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.k-grid-content-locked {
|
|
108
|
-
.k-group-footer td,
|
|
109
|
-
.k-group-footer .k-table-td,
|
|
110
|
-
.k-group-cell {
|
|
111
|
-
@include fill( $border: $kendo-grid-header-border );
|
|
112
|
-
}
|
|
113
|
-
|
|
114
|
-
.k-grouping-row + .k-table-row td,
|
|
115
|
-
.k-grouping-row + .k-table-row .k-table-td {
|
|
116
|
-
border-block-start-color: $kendo-grid-header-border;
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
// Sticky columns
|
|
121
|
-
.k-master-row {
|
|
122
|
-
.k-grid-content-sticky {
|
|
123
|
-
@include fill( $bg: $kendo-grid-sticky-bg, $border: $kendo-grid-sticky-border );
|
|
124
|
-
border-block-start-color: $kendo-grid-header-border;
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
.k-grid-row-sticky,
|
|
128
|
-
&.k-grid-row-sticky > .k-table-td {
|
|
129
|
-
@include fill( $bg: $kendo-grid-sticky-bg );
|
|
130
|
-
border-block-start-color: $kendo-grid-sticky-border;
|
|
131
|
-
border-block-end-color: $kendo-grid-sticky-border;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
&.k-table-alt-row {
|
|
135
|
-
.k-grid-content-sticky,
|
|
136
|
-
&.k-grid-row-sticky > .k-table-td,
|
|
137
|
-
.k-grid-row-sticky {
|
|
138
|
-
@include fill( $bg: $kendo-grid-sticky-alt-bg );
|
|
139
|
-
}
|
|
140
|
-
}
|
|
141
|
-
|
|
142
|
-
// Sticky
|
|
143
|
-
&.k-table-row td.k-grid-content-sticky,
|
|
144
|
-
&.k-table-row.k-grid-row-sticky > .k-table-td,
|
|
145
|
-
&.k-table-row .k-table-td.k-grid-row-sticky,
|
|
146
|
-
&.k-table-row td.k-grid-content-sticky,
|
|
147
|
-
&.k-table-row .k-table-td.k-grid-content-sticky {
|
|
148
|
-
@include fill( $bg: $kendo-grid-sticky-bg );
|
|
149
|
-
}
|
|
150
|
-
|
|
151
|
-
// Sticky Alt
|
|
152
|
-
&.k-table-alt-row td.k-grid-content-sticky,
|
|
153
|
-
&.k-table-alt-row.k-grid-row-sticky > .k-table-td,
|
|
154
|
-
&.k-table-alt-row .k-table-td.k-grid-row-sticky,
|
|
155
|
-
&.k-table-alt-row td.k-grid-content-sticky,
|
|
156
|
-
&.k-table-alt-row .k-table-td.k-grid-content-sticky {
|
|
157
|
-
@include fill( $bg: $kendo-grid-sticky-alt-bg );
|
|
158
|
-
}
|
|
159
|
-
|
|
160
|
-
// Sticky Hover
|
|
161
|
-
&.k-table-row:hover .k-grid-content-sticky,
|
|
162
|
-
&.k-table-row:hover .k-grid-row-sticky,
|
|
163
|
-
&.k-table-row:hover.k-grid-row-sticky > .k-table-td,
|
|
164
|
-
&.k-table-row.k-hover .k-grid-content-sticky,
|
|
165
|
-
&.k-table-row.k-hover .k-grid-row-sticky,
|
|
166
|
-
&.k-table-row.k-hover.k-grid-row-sticky > .k-table-td {
|
|
167
|
-
@include fill( $bg: $kendo-grid-sticky-hover-bg );
|
|
168
|
-
}
|
|
169
|
-
|
|
170
|
-
// Sticky Selected state
|
|
171
|
-
&.k-table-row.k-selected td.k-grid-content-sticky,
|
|
172
|
-
&.k-table-row.k-selected.k-grid-row-sticky > .k-table-td,
|
|
173
|
-
&.k-table-row.k-selected .k-table-td.k-grid-row-sticky,
|
|
174
|
-
&.k-table-row td.k-grid-content-sticky.k-selected,
|
|
175
|
-
&.k-table-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
176
|
-
&::before {
|
|
177
|
-
@include fill( $bg: $kendo-grid-selected-bg );
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
// Sticky Highlighted state
|
|
182
|
-
&.k-table-row.k-highlighted td.k-grid-content-sticky,
|
|
183
|
-
&.k-table-row.k-highlighted.k-grid-row-sticky > .k-table-td,
|
|
184
|
-
&.k-table-row.k-highlighted .k-table-td.k-grid-row-sticky,
|
|
185
|
-
&.k-table-row td.k-grid-content-sticky.k-highlighted,
|
|
186
|
-
&.k-table-row .k-table-td.k-grid-content-sticky.k-highlighted {
|
|
187
|
-
&::before {
|
|
188
|
-
@include fill( $bg: $kendo-grid-highlighted-bg );
|
|
189
|
-
}
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
// Sticky Selected Highlighted state
|
|
193
|
-
&.k-table-row.k-selected.k-highlighted td.k-grid-content-sticky,
|
|
194
|
-
&.k-table-row.k-selected.k-highlighted.k-grid-row-sticky > .k-table-td,
|
|
195
|
-
&.k-table-row.k-selected.k-highlighted .k-table-td.k-grid-row-sticky,
|
|
196
|
-
&.k-selected.k-table-row .k-table-td.k-grid-content-sticky.k-highlighted,
|
|
197
|
-
&.k-highlighted.k-table-row .k-table-td.k-grid-content-sticky.k-selected,
|
|
198
|
-
&.k-table-row td.k-grid-content-sticky.k-selected.k-highlighted,
|
|
199
|
-
&.k-table-row .k-table-td.k-grid-content-sticky.k-selected.k-highlighted {
|
|
200
|
-
&::before {
|
|
201
|
-
@include fill( $bg: $kendo-grid-selected-highlighted-bg );
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
}
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
.k-grid-pinned-container {
|
|
208
|
-
background-color: $kendo-grid-header-bg;
|
|
209
|
-
border-color: $kendo-grid-border;
|
|
210
|
-
}
|
|
211
|
-
.k-grid-pinned-wrap {
|
|
212
|
-
border-color: $kendo-grid-header-border;
|
|
213
|
-
|
|
214
|
-
> .k-table {
|
|
215
|
-
background-color: $kendo-grid-bg;
|
|
216
|
-
box-shadow: $kendo-grid-cell-vertical-border-width 0 0 0 $kendo-grid-border;
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
.k-grid-sticky-container {
|
|
221
|
-
background-color: $kendo-grid-bg;
|
|
222
|
-
border-color: $kendo-grid-sticky-border;
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
// Toolbar
|
|
227
|
-
.k-grid-toolbar {
|
|
228
|
-
@include fill(
|
|
229
|
-
null,
|
|
230
|
-
null,
|
|
231
|
-
inherit,
|
|
232
|
-
null
|
|
233
|
-
);
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
// Grouping header
|
|
238
|
-
.k-grouping-header {
|
|
239
|
-
@include fill( $kendo-grid-header-text, $kendo-grid-header-bg, $kendo-grid-header-border );
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
// Header
|
|
243
|
-
.k-grid-header {
|
|
244
|
-
@include fill( $kendo-grid-header-text, $kendo-grid-header-bg, $kendo-grid-header-border );
|
|
245
|
-
|
|
246
|
-
.k-sort-icon,
|
|
247
|
-
.k-sort-order {
|
|
248
|
-
color: $kendo-grid-sorting-indicator-text;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
.k-grid-filter,
|
|
252
|
-
.k-header-column-menu,
|
|
253
|
-
.k-grid-header-menu,
|
|
254
|
-
.k-hierarchy-cell .k-icon {
|
|
255
|
-
&:focus,
|
|
256
|
-
&.k-focus {
|
|
257
|
-
box-shadow: inset 0 0 0 2px rgba( black, .1 );
|
|
258
|
-
}
|
|
259
|
-
&.k-active {
|
|
260
|
-
color: k-color(on-primary);
|
|
261
|
-
background-color: k-color(primary);
|
|
262
|
-
}
|
|
263
|
-
}
|
|
264
|
-
|
|
265
|
-
.k-grid-header-sticky,
|
|
266
|
-
.k-grid-header-sticky.k-sorted {
|
|
267
|
-
@include fill(
|
|
268
|
-
$color: $kendo-grid-sticky-header-text,
|
|
269
|
-
$bg: $kendo-grid-sticky-header-bg
|
|
270
|
-
);
|
|
271
|
-
|
|
272
|
-
border-inline-end-color: $kendo-grid-sticky-header-border;
|
|
273
|
-
border-inline-start-color: $kendo-grid-sticky-header-border;
|
|
274
|
-
}
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
// Selection Aggregates
|
|
279
|
-
.k-selection-aggregates {
|
|
280
|
-
@include fill(
|
|
281
|
-
$kendo-grid-selection-aggregates-text,
|
|
282
|
-
$kendo-grid-selection-aggregates-bg,
|
|
283
|
-
$kendo-grid-selection-aggregates-border
|
|
284
|
-
);
|
|
285
|
-
}
|
|
286
|
-
|
|
287
|
-
.k-grouping-row {
|
|
288
|
-
.k-grid-content-sticky {
|
|
289
|
-
@include fill( $bg: $kendo-grid-sticky-header-bg );
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
&:hover .k-grid-content-sticky,
|
|
293
|
-
&.k-hover .k-grid-content-sticky {
|
|
294
|
-
@include fill( $bg: $kendo-grid-sticky-hover-bg );
|
|
295
|
-
}
|
|
296
|
-
}
|
|
297
|
-
|
|
298
|
-
.k-group-footer {
|
|
299
|
-
td,
|
|
300
|
-
.k-table-td,
|
|
301
|
-
.k-grid-footer-sticky {
|
|
302
|
-
@include fill( $bg: $kendo-grid-sticky-footer-bg );
|
|
303
|
-
}
|
|
304
|
-
|
|
305
|
-
&:hover .k-grid-footer-sticky,
|
|
306
|
-
&.k-hover .k-grid-footer-sticky {
|
|
307
|
-
@include fill( $bg: $kendo-grid-sticky-footer-hover-bg );
|
|
308
|
-
}
|
|
309
|
-
}
|
|
310
|
-
|
|
311
|
-
// Footer
|
|
312
|
-
.k-grid-footer {
|
|
313
|
-
@include fill(
|
|
314
|
-
$kendo-grid-footer-text,
|
|
315
|
-
$kendo-grid-footer-bg,
|
|
316
|
-
$kendo-grid-footer-border
|
|
317
|
-
);
|
|
318
|
-
.k-grid-footer-sticky {
|
|
319
|
-
border-color: $kendo-grid-sticky-border;
|
|
320
|
-
background-color: $kendo-grid-sticky-footer-bg;
|
|
321
|
-
}
|
|
322
|
-
}
|
|
323
|
-
|
|
324
|
-
// Grouping
|
|
325
|
-
.k-grouping-row,
|
|
326
|
-
.k-group-cell {
|
|
327
|
-
@include fill( $kendo-grid-header-text, $kendo-grid-header-bg, $kendo-grid-header-border );
|
|
328
|
-
}
|
|
329
|
-
|
|
330
|
-
.k-column-list-item:hover,
|
|
331
|
-
.k-columnmenu-item:hover {
|
|
332
|
-
@include fill(
|
|
333
|
-
$kendo-list-item-hover-text,
|
|
334
|
-
$kendo-list-item-hover-bg
|
|
335
|
-
);
|
|
336
|
-
}
|
|
337
|
-
.k-column-list-item:focus,
|
|
338
|
-
.k-column-list-item.k-focus,
|
|
339
|
-
.k-columnmenu-item:focus,
|
|
340
|
-
.k-columnmenu-item.k-focus {
|
|
341
|
-
@include box-shadow( $kendo-list-item-focus-shadow );
|
|
342
|
-
}
|
|
343
|
-
|
|
344
|
-
.k-column-list-wrapper {
|
|
345
|
-
border-color: inherit;
|
|
346
|
-
}
|
|
347
|
-
|
|
348
|
-
.k-columnmenu-item {
|
|
349
|
-
&.k-selected {
|
|
350
|
-
@include fill(
|
|
351
|
-
$kendo-list-item-selected-text,
|
|
352
|
-
$kendo-list-item-selected-bg
|
|
353
|
-
);
|
|
354
|
-
}
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
.k-column-menu {
|
|
358
|
-
|
|
359
|
-
.k-menu:not(.k-context-menu) {
|
|
360
|
-
|
|
361
|
-
@include fill(
|
|
362
|
-
$kendo-popup-text,
|
|
363
|
-
$kendo-popup-bg,
|
|
364
|
-
$kendo-popup-border
|
|
365
|
-
);
|
|
366
|
-
|
|
367
|
-
.k-item {
|
|
368
|
-
@include fill(
|
|
369
|
-
$kendo-list-item-text,
|
|
370
|
-
$kendo-list-item-bg
|
|
371
|
-
);
|
|
372
|
-
|
|
373
|
-
&:hover,
|
|
374
|
-
&.k-hover {
|
|
375
|
-
@include fill(
|
|
376
|
-
$kendo-list-item-hover-text,
|
|
377
|
-
$kendo-list-item-hover-bg
|
|
378
|
-
);
|
|
379
|
-
}
|
|
380
|
-
|
|
381
|
-
&.k-selected {
|
|
382
|
-
@include fill(
|
|
383
|
-
$kendo-list-item-selected-text,
|
|
384
|
-
$kendo-list-item-selected-bg
|
|
385
|
-
);
|
|
386
|
-
}
|
|
387
|
-
|
|
388
|
-
&:focus,
|
|
389
|
-
&.k-focus {
|
|
390
|
-
@include box-shadow( $kendo-list-item-focus-shadow );
|
|
391
|
-
}
|
|
392
|
-
}
|
|
393
|
-
}
|
|
394
|
-
}
|
|
395
|
-
.k-column-menu-tabbed {
|
|
396
|
-
background-color: $kendo-grid-column-menu-tabbed-bg;
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
.k-column-menu-group-header-text {
|
|
400
|
-
@include fill(
|
|
401
|
-
$kendo-grid-column-menu-group-header-text,
|
|
402
|
-
$kendo-grid-column-menu-group-header-bg,
|
|
403
|
-
$kendo-grid-column-menu-group-header-border
|
|
404
|
-
);
|
|
405
|
-
}
|
|
406
|
-
|
|
407
|
-
.k-check-all-wrap {
|
|
408
|
-
@include fill( $border: $kendo-popup-border );
|
|
409
|
-
}
|
|
410
|
-
|
|
411
|
-
.k-grid-norecords-template {
|
|
412
|
-
background-color: $kendo-grid-bg;
|
|
413
|
-
border-color: $kendo-grid-border;
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
// Row resize indicator
|
|
417
|
-
.k-resizer-wrap {
|
|
418
|
-
|
|
419
|
-
&.k-hover .k-row-resizer {
|
|
420
|
-
@include fill( $bg: $kendo-grid-row-resizer-hover-bg );
|
|
421
|
-
}
|
|
422
|
-
|
|
423
|
-
&.k-active .k-row-resizer {
|
|
424
|
-
@include fill( $bg: $kendo-grid-row-resizer-active-bg );
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
}
|
|
428
|
-
|
|
429
|
-
.k-columnmenu-indicators {
|
|
430
|
-
color: $kendo-grid-sorting-indicator-text;
|
|
431
|
-
}
|
|
432
|
-
|
|
433
|
-
// Grid stack layout
|
|
434
|
-
.k-grid-stack-header {
|
|
435
|
-
@include fill( $color: $kendo-grid-stack-header-color );
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
.k-grid-stack-cell {
|
|
439
|
-
&:focus,
|
|
440
|
-
&.k-focus {
|
|
441
|
-
outline: 1px solid $kendo-grid-stack-focus-outline;
|
|
442
|
-
}
|
|
443
|
-
|
|
444
|
-
&.k-selected {
|
|
445
|
-
@include fill( $bg: $kendo-grid-selected-bg );
|
|
446
|
-
}
|
|
447
|
-
}
|
|
448
|
-
|
|
449
|
-
// Dirty cell
|
|
450
|
-
.k-grid-stack-cell .k-dirty {
|
|
451
|
-
border-inline-start-color: rgba(0, 0, 0, 0);
|
|
452
|
-
border-inline-end-color: currentColor;
|
|
453
|
-
}
|
|
5
|
+
@include kendo-grid--theme-base();
|
|
454
6
|
}
|
|
7
|
+
|
|
@@ -233,9 +233,6 @@ $kendo-grid-footer-border: $kendo-table-footer-border !default;
|
|
|
233
233
|
/// The background color of the Grid alternating rows.
|
|
234
234
|
/// @group grid
|
|
235
235
|
$kendo-grid-alt-bg: $kendo-table-alt-row-bg !default;
|
|
236
|
-
/// The text color of the Grid alternating rows.
|
|
237
|
-
/// @group grid
|
|
238
|
-
$kendo-grid-alt-text: $kendo-table-alt-row-text !default;
|
|
239
236
|
|
|
240
237
|
/// The background color of hovered Grid rows.
|
|
241
238
|
/// @group grid
|
|
@@ -286,7 +283,7 @@ $kendo-grid-selection-aggregates-font-weight: var(--kendo-font-weight-bold) !def
|
|
|
286
283
|
|
|
287
284
|
/// The background color of the Grid row.
|
|
288
285
|
/// @group grid
|
|
289
|
-
$kendo-grid-grouping-row-bg: k-color(
|
|
286
|
+
$kendo-grid-grouping-row-bg: k-color(surface) !default;
|
|
290
287
|
/// The text color of the Grid row.
|
|
291
288
|
/// @group grid
|
|
292
289
|
$kendo-grid-grouping-row-text: $kendo-grid-text !default;
|
|
@@ -347,9 +344,6 @@ $kendo-grid-sticky-header-border: $kendo-grid-sticky-border !default;
|
|
|
347
344
|
/// The background color of the sticky footer in the Grid.
|
|
348
345
|
/// @group grid
|
|
349
346
|
$kendo-grid-sticky-footer-bg: $kendo-grid-header-bg !default;
|
|
350
|
-
/// The background color of the hovered sticky footer in the Grid.
|
|
351
|
-
/// @group grid
|
|
352
|
-
$kendo-grid-sticky-footer-hover-bg: $kendo-grid-sticky-footer-bg !default;
|
|
353
347
|
|
|
354
348
|
/// The box shadow of the sticky container in the Grid.
|
|
355
349
|
/// @group grid
|
|
@@ -40,7 +40,10 @@ $kendo-icon-spacing: k-spacing(2) !default;
|
|
|
40
40
|
$kendo-icon-padding: k-spacing(1) !default;
|
|
41
41
|
/// The color of accent icons.
|
|
42
42
|
/// @group icon
|
|
43
|
-
$kendo-accent-icon-color: k-color(tertiary) !default;
|
|
43
|
+
$kendo-accent-icon-color: k-color(tertiary-on-surface) !default;
|
|
44
|
+
/// The color of action icons.
|
|
45
|
+
/// @group icon
|
|
46
|
+
$kendo-action-icon-color: k-color( primary-on-surface ) !default;
|
|
44
47
|
|
|
45
48
|
@forward "@progress/kendo-theme-core/scss/components/icons/_variables.scss" with (
|
|
46
49
|
$kendo-icon-default-size: $kendo-icon-default-size,
|
|
@@ -54,5 +57,6 @@ $kendo-accent-icon-color: k-color(tertiary) !default;
|
|
|
54
57
|
$kendo-icon-size-xxxl: $kendo-icon-size-xxxl,
|
|
55
58
|
$kendo-icon-spacing: $kendo-icon-spacing,
|
|
56
59
|
$kendo-icon-padding: $kendo-icon-padding,
|
|
57
|
-
$kendo-accent-icon-color: $kendo-accent-icon-color
|
|
60
|
+
$kendo-accent-icon-color: $kendo-accent-icon-color,
|
|
61
|
+
$kendo-action-icon-color: $kendo-action-icon-color
|
|
58
62
|
);
|
|
@@ -60,7 +60,7 @@ $kendo-notification-icon-spacing: $kendo-icon-spacing !default;
|
|
|
60
60
|
|
|
61
61
|
/// The theme colors map for the Notification.
|
|
62
62
|
/// @group notification
|
|
63
|
-
$kendo-notification-theme-colors: ("base", "primary", "secondary", "tertiary", "info", "success", "warning", "error", "
|
|
63
|
+
$kendo-notification-theme-colors: ("base", "primary", "secondary", "tertiary", "info", "success", "warning", "error", "inverse") !default;
|
|
64
64
|
/// The generated theme colors map for the Notification.
|
|
65
65
|
/// @group notification
|
|
66
66
|
$kendo-notification-theme: notification-theme( $kendo-notification-theme-colors ) !default;
|
|
@@ -1,17 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
/// @group overlay
|
|
3
|
-
/// @role default
|
|
4
|
-
$kendo-overlay-default-theme-color: "inverse" !default;
|
|
1
|
+
@use "../core/_index.scss" as *;
|
|
5
2
|
|
|
6
3
|
/// The background color of the Overlay.
|
|
7
4
|
/// @group overlay
|
|
8
|
-
$kendo-overlay-bg:
|
|
5
|
+
$kendo-overlay-bg: k-color(inverse) !default;
|
|
9
6
|
/// The opacity of the Overlay.
|
|
10
7
|
/// @group overlay
|
|
11
8
|
$kendo-overlay-opacity: .5 !default;
|
|
12
9
|
|
|
13
10
|
@forward "@progress/kendo-theme-core/scss/components/overlay/_variables.scss" with (
|
|
14
|
-
$kendo-overlay-default-theme-color: $kendo-overlay-default-theme-color,
|
|
15
11
|
$kendo-overlay-bg: $kendo-overlay-bg,
|
|
16
12
|
$kendo-overlay-opacity: $kendo-overlay-opacity
|
|
17
13
|
);
|
|
@@ -22,7 +22,7 @@ $kendo-skeleton-circle-border-radius: 9999px !default;
|
|
|
22
22
|
$kendo-skeleton-item-bg: color-mix(in srgb, k-color(on-app-surface) 50%, transparent) !default;
|
|
23
23
|
/// The background color of the Skeleton wave animation.
|
|
24
24
|
/// @group skeleton
|
|
25
|
-
$kendo-skeleton-wave-bg: color-mix(in srgb, k-color(
|
|
25
|
+
$kendo-skeleton-wave-bg: color-mix(in srgb, k-color(inverse) 4%, transparent) !default;
|
|
26
26
|
|
|
27
27
|
|
|
28
28
|
@forward "@progress/kendo-theme-core/scss/components/skeleton/_variables.scss" with (
|
|
@@ -227,7 +227,7 @@ $kendo-spreadsheet-insert-image-dialog-preview-overlay-shadow: inset 0 0 0 2000p
|
|
|
227
227
|
$kendo-spreadsheet-insert-image-dialog-preview-overlay-border-radius: k-border-radius(md) !default;
|
|
228
228
|
/// The text color of the hovered Spreadsheet image Dialog preview.
|
|
229
229
|
/// @group spreadsheet
|
|
230
|
-
$kendo-spreadsheet-insert-image-dialog-overlay-hover-text: k-color(app-surface) !default;
|
|
230
|
+
$kendo-spreadsheet-insert-image-dialog-overlay-hover-text: k-color(on-app-surface) !default;
|
|
231
231
|
|
|
232
232
|
/// The width of the Spreadsheet drawing handle.
|
|
233
233
|
/// @group spreadsheet
|
|
@@ -183,7 +183,7 @@ $kendo-stepper-label-text: null !default;
|
|
|
183
183
|
$kendo-stepper-label-success-text: k-color(success) !default;
|
|
184
184
|
/// The error text color of the Stepper label.
|
|
185
185
|
/// @group stepper
|
|
186
|
-
$kendo-stepper-label-error-text: k-color(error) !default;
|
|
186
|
+
$kendo-stepper-label-error-text: k-color(error-on-surface) !default;
|
|
187
187
|
/// The text color of the hovered Stepper label.
|
|
188
188
|
/// @group stepper
|
|
189
189
|
$kendo-stepper-label-hover-text: unset !default;
|
|
@@ -46,10 +46,10 @@ $kendo-time-selector-header-border-width: 0px !default;
|
|
|
46
46
|
$kendo-time-selector-header-title-text: unset !default;
|
|
47
47
|
/// The text color of the TimeSelector header current time indicator.
|
|
48
48
|
/// @group time-selector
|
|
49
|
-
$kendo-time-selector-header-time-now-text: k-color(primary) !default;
|
|
49
|
+
$kendo-time-selector-header-time-now-text: k-color(primary-on-surface) !default;
|
|
50
50
|
/// The text color of the hovered TimeSelector header current time indicator.
|
|
51
51
|
/// @group time-selector
|
|
52
|
-
$kendo-time-selector-header-time-now-hover-text: k-color(primary-
|
|
52
|
+
$kendo-time-selector-header-time-now-hover-text: k-color(primary-on-surface) !default;
|
|
53
53
|
|
|
54
54
|
/// The width of the TimeSelector list.
|
|
55
55
|
/// @group time-selector
|
|
@@ -141,10 +141,10 @@ $kendo-time-list-focus-bg: color-mix(in srgb, k-color(inverse) 2%, transparent)
|
|
|
141
141
|
|
|
142
142
|
/// The text color of the TimeSelector button.
|
|
143
143
|
/// @group time-selector
|
|
144
|
-
$kendo-time-selector-now-button-text: k-color(primary) !default;
|
|
144
|
+
$kendo-time-selector-now-button-text: k-color(primary-on-surface) !default;
|
|
145
145
|
/// The text color of the hovered TimeSelector button.
|
|
146
146
|
/// @group time-selector
|
|
147
|
-
$kendo-time-selector-now-button-hover-text: k-color(primary-
|
|
147
|
+
$kendo-time-selector-now-button-hover-text: k-color(primary-on-surface) !default;
|
|
148
148
|
|
|
149
149
|
@forward "@progress/kendo-theme-core/scss/components/timeselector/_variables.scss" with (
|
|
150
150
|
$kendo-time-selector-default-size: $kendo-time-selector-default-size,
|
|
@@ -55,7 +55,7 @@ $kendo-tooltip-shadow: k-elevation(2) !default;
|
|
|
55
55
|
|
|
56
56
|
/// The theme colors map for the Tooltip.
|
|
57
57
|
/// @group tooltip
|
|
58
|
-
$kendo-tooltip-theme-colors: ("base", "
|
|
58
|
+
$kendo-tooltip-theme-colors: ("base", "info", "success", "warning", "error", "inverse") !default;
|
|
59
59
|
/// The generated theme colors map for the Tooltip.
|
|
60
60
|
/// @group tooltip
|
|
61
61
|
$kendo-tooltip-theme: tooltip-theme( $kendo-tooltip-theme-colors ) !default;
|
|
@@ -142,7 +142,7 @@ $kendo-treeview-item-focus-shadow: inset 0 0 0 2px color-mix(in srgb, k-color(on
|
|
|
142
142
|
$kendo-treeview-loadmore-bg: transparent !default;
|
|
143
143
|
/// The text color of the Load More button in the TreeView.
|
|
144
144
|
/// @group treeview
|
|
145
|
-
$kendo-treeview-loadmore-text: k-color(primary) !default;
|
|
145
|
+
$kendo-treeview-loadmore-text: k-color(primary-on-surface) !default;
|
|
146
146
|
/// The border color of the Load More button in the TreeView.
|
|
147
147
|
/// @group treeview
|
|
148
148
|
$kendo-treeview-loadmore-border: null !default;
|
|
@@ -89,14 +89,14 @@ $kendo-upload-progress-bg: k-color(info) !default;
|
|
|
89
89
|
|
|
90
90
|
/// The success text color of the Upload.
|
|
91
91
|
/// @group upload
|
|
92
|
-
$kendo-upload-success-text: k-color(success) !default;
|
|
92
|
+
$kendo-upload-success-text: k-color(success-on-surface) !default;
|
|
93
93
|
/// The success background color of the Upload progress bar.
|
|
94
94
|
/// @group upload
|
|
95
95
|
$kendo-upload-success-bg: k-color(success) !default;
|
|
96
96
|
|
|
97
97
|
/// The error text color of the Upload.
|
|
98
98
|
/// @group upload
|
|
99
|
-
$kendo-upload-error-text: k-color(error) !default;
|
|
99
|
+
$kendo-upload-error-text: k-color(error-on-surface) !default;
|
|
100
100
|
/// The error background color of the Upload progress bar.
|
|
101
101
|
/// @group upload
|
|
102
102
|
$kendo-upload-error-bg: k-color(error) !default;
|
|
@@ -9,11 +9,6 @@
|
|
|
9
9
|
/// @role default
|
|
10
10
|
$kendo-window-default-size: "auto" !default;
|
|
11
11
|
|
|
12
|
-
/// The default theme color of the Window.
|
|
13
|
-
/// @group window
|
|
14
|
-
/// @role default
|
|
15
|
-
$kendo-window-default-theme-color: null !default;
|
|
16
|
-
|
|
17
12
|
/// The width of the border around the Window.
|
|
18
13
|
/// @group window
|
|
19
14
|
$kendo-window-border-width: 1px !default;
|
|
@@ -107,7 +102,6 @@ $kendo-window-titlebar-border: k-color(border) !default;
|
|
|
107
102
|
$kendo-window-titlebar-gradient: null !default;
|
|
108
103
|
|
|
109
104
|
@forward "@progress/kendo-theme-core/scss/components/window/_variables.scss" with (
|
|
110
|
-
$kendo-window-default-theme-color: $kendo-window-default-theme-color,
|
|
111
105
|
$kendo-window-border-width: $kendo-window-border-width,
|
|
112
106
|
$kendo-window-border-radius: $kendo-window-border-radius,
|
|
113
107
|
$kendo-window-font-family: $kendo-window-font-family,
|