@progress/kendo-theme-default 6.3.1-dev.0 → 6.4.0-dev.1
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 +348 -154
- package/dist/all.scss +245 -148
- package/dist/default-main-dark.scss +2 -2
- package/dist/meta/sassdoc-data.json +988 -1096
- package/dist/meta/sassdoc-raw-data.json +494 -544
- package/dist/meta/variables.json +16 -16
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +4 -4
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue-a11y.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +4 -4
- package/scss/action-sheet/_layout.scss +11 -2
- package/scss/adaptive/_layout.scss +5 -8
- package/scss/bottom-navigation/_theme.scss +21 -14
- package/scss/breadcrumb/_layout.scss +1 -6
- package/scss/drawer/_layout.scss +13 -3
- package/scss/drawer/_variables.scss +2 -0
- package/scss/editor/_layout.scss +0 -18
- package/scss/expansion-panel/_layout.scss +3 -0
- package/scss/fab/_layout.scss +3 -4
- package/scss/fab/_theme.scss +1 -1
- package/scss/fab/_variables.scss +5 -11
- package/scss/grid/_layout.scss +3 -1
- package/scss/icons/_layout.scss +10 -7
- package/scss/input/_layout.scss +6 -5
- package/scss/input/_variables.scss +0 -3
- package/scss/listbox/_layout.scss +2 -5
- package/scss/listgroup/_layout.scss +1 -1
- package/scss/pager/_layout.scss +1 -12
- package/scss/scheduler/_layout.scss +3 -16
- package/scss/scrollview/_layout.scss +13 -2
- package/scss/spreadsheet/_layout.scss +4 -2
package/scss/grid/_layout.scss
CHANGED
|
@@ -49,6 +49,7 @@
|
|
|
49
49
|
|
|
50
50
|
.k-grid-header,
|
|
51
51
|
.k-grid-content,
|
|
52
|
+
.k-grid-content-locked,
|
|
52
53
|
.k-grid-footer {
|
|
53
54
|
.k-table {
|
|
54
55
|
table-layout: fixed;
|
|
@@ -1316,7 +1317,8 @@
|
|
|
1316
1317
|
cursor: pointer;
|
|
1317
1318
|
|
|
1318
1319
|
> .k-icon,
|
|
1319
|
-
> .k-svg-icon
|
|
1320
|
+
> .k-svg-icon,
|
|
1321
|
+
> .k-expander-indicator {
|
|
1320
1322
|
margin-inline-end: $kendo-icon-spacing;
|
|
1321
1323
|
}
|
|
1322
1324
|
}
|
package/scss/icons/_layout.scss
CHANGED
|
@@ -57,13 +57,16 @@ $ki-icon-size: $kendo-icon-size;
|
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
// RTL icons
|
|
60
|
-
.k-rtl
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
60
|
+
.k-rtl,
|
|
61
|
+
[dir="rtl"] {
|
|
62
|
+
.k-i-indent-increase,
|
|
63
|
+
.k-i-indent-decrease,
|
|
64
|
+
.k-i-caret-alt-right,
|
|
65
|
+
.k-i-caret-alt-left,
|
|
66
|
+
.k-svg-i-caret-alt-right,
|
|
67
|
+
.k-svg-i-caret-alt-left {
|
|
68
|
+
transform: scaleX(-1);
|
|
69
|
+
}
|
|
67
70
|
}
|
|
68
71
|
|
|
69
72
|
.k-sprite {
|
package/scss/input/_layout.scss
CHANGED
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
box-sizing: border-box;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
.k-input,
|
|
37
|
-
.k-picker {
|
|
36
|
+
> .k-input,
|
|
37
|
+
> .k-picker {
|
|
38
38
|
border-width: 0 !important; // sass-lint:disable-line no-important
|
|
39
39
|
color: inherit;
|
|
40
40
|
background: none;
|
|
@@ -226,6 +226,7 @@
|
|
|
226
226
|
flex-flow: row nowrap;
|
|
227
227
|
align-items: center;
|
|
228
228
|
justify-content: center;
|
|
229
|
+
box-sizing: content-box;
|
|
229
230
|
}
|
|
230
231
|
|
|
231
232
|
// Input with SVG icon
|
|
@@ -398,7 +399,6 @@
|
|
|
398
399
|
$_padding-y: k-map-get( $size-props, padding-y );
|
|
399
400
|
$_font-size: k-map-get( $size-props, font-size );
|
|
400
401
|
$_line-height: k-map-get( $size-props, line-height );
|
|
401
|
-
$_icon-size: k-map-get( $size-props, icon-size );
|
|
402
402
|
$_button-padding-x: k-map-get( $size-props, button-padding-x );
|
|
403
403
|
$_button-padding-y: k-map-get( $size-props, button-padding-y );
|
|
404
404
|
|
|
@@ -436,8 +436,9 @@
|
|
|
436
436
|
.k-input-prefix > .k-svg-icon,
|
|
437
437
|
.k-input-suffix > .k-icon,
|
|
438
438
|
.k-input-suffix > .k-svg-icon {
|
|
439
|
-
|
|
440
|
-
|
|
439
|
+
padding-block: $_padding-y;
|
|
440
|
+
padding-inline: $_padding-y;
|
|
441
|
+
box-sizing: content-box;
|
|
441
442
|
}
|
|
442
443
|
|
|
443
444
|
&.k-icon-picker .k-input-inner {
|
|
@@ -76,7 +76,6 @@ $kendo-input-sizes: (
|
|
|
76
76
|
padding-y: $kendo-input-sm-padding-y,
|
|
77
77
|
font-size: $kendo-input-sm-font-size,
|
|
78
78
|
line-height: $kendo-input-sm-line-height,
|
|
79
|
-
icon-size: calc( #{$kendo-icon-size} + #{$kendo-input-sm-padding-y * 2} ),
|
|
80
79
|
button-padding-x: $kendo-input-sm-padding-y,
|
|
81
80
|
button-padding-y: $kendo-input-sm-padding-y
|
|
82
81
|
),
|
|
@@ -85,7 +84,6 @@ $kendo-input-sizes: (
|
|
|
85
84
|
padding-y: $kendo-input-md-padding-y,
|
|
86
85
|
font-size: $kendo-input-md-font-size,
|
|
87
86
|
line-height: $kendo-input-md-line-height,
|
|
88
|
-
icon-size: calc( #{$kendo-icon-size} + #{$kendo-input-md-padding-y * 2} ),
|
|
89
87
|
button-padding-x: $kendo-input-md-padding-y,
|
|
90
88
|
button-padding-y: $kendo-input-md-padding-y
|
|
91
89
|
),
|
|
@@ -94,7 +92,6 @@ $kendo-input-sizes: (
|
|
|
94
92
|
padding-y: $kendo-input-lg-padding-y,
|
|
95
93
|
font-size: $kendo-input-lg-font-size,
|
|
96
94
|
line-height: $kendo-input-lg-line-height,
|
|
97
|
-
icon-size: calc( #{$kendo-icon-size} + #{$kendo-input-lg-padding-y * 2} ),
|
|
98
95
|
button-padding-x: $kendo-input-lg-padding-y,
|
|
99
96
|
button-padding-y: $kendo-input-lg-padding-y
|
|
100
97
|
)
|
package/scss/pager/_layout.scss
CHANGED
|
@@ -28,18 +28,7 @@
|
|
|
28
28
|
.k-rtl &,
|
|
29
29
|
&[dir="rtl"],
|
|
30
30
|
[dir="rtl"] & {
|
|
31
|
-
.k-
|
|
32
|
-
.k-i-caret-alt-to-right,
|
|
33
|
-
.k-i-caret-alt-left,
|
|
34
|
-
.k-i-caret-alt-right,
|
|
35
|
-
.k-i-arrow-end-left,
|
|
36
|
-
.k-i-arrow-60-left,
|
|
37
|
-
.k-i-arrow-60-right,
|
|
38
|
-
.k-i-arrow-end-right,
|
|
39
|
-
.k-i-seek-w,
|
|
40
|
-
.k-i-arrow-w,
|
|
41
|
-
.k-i-arrow-e,
|
|
42
|
-
.k-i-seek-e {
|
|
31
|
+
.k-pager-nav .k-button-icon {
|
|
43
32
|
transform: scaleX(-1);
|
|
44
33
|
}
|
|
45
34
|
}
|
|
@@ -237,24 +237,11 @@
|
|
|
237
237
|
// Scheduler navigation
|
|
238
238
|
.k-scheduler-navigation {}
|
|
239
239
|
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
// Views dropdown
|
|
245
|
-
.k-views-dropdown {
|
|
246
|
-
width: auto;
|
|
247
|
-
font: inherit;
|
|
248
|
-
display: none;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
@media (max-width: 1024px) {
|
|
252
|
-
.k-scheduler-views { display: none; }
|
|
253
|
-
.k-views-dropdown { display: inline-block; }
|
|
254
|
-
}
|
|
240
|
+
.k-scheduler-toolbar .k-views-dropdown {
|
|
241
|
+
width: auto;
|
|
242
|
+
font: inherit;
|
|
255
243
|
}
|
|
256
244
|
|
|
257
|
-
|
|
258
245
|
// Scheduler footer
|
|
259
246
|
.k-scheduler-footer {
|
|
260
247
|
@include box-shadow( none );
|
|
@@ -174,11 +174,11 @@
|
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
.k-scrollview-prev {
|
|
177
|
-
|
|
177
|
+
inset-inline-start: 0;
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
.k-scrollview-next {
|
|
181
|
-
|
|
181
|
+
inset-inline-end: 0;
|
|
182
182
|
}
|
|
183
183
|
|
|
184
184
|
|
|
@@ -204,6 +204,17 @@
|
|
|
204
204
|
}
|
|
205
205
|
}
|
|
206
206
|
|
|
207
|
+
.k-rtl,
|
|
208
|
+
[dir="rtl"] {
|
|
209
|
+
.k-scrollview-prev,
|
|
210
|
+
.k-scrollview-next {
|
|
211
|
+
.k-icon,
|
|
212
|
+
.k-svg-icon {
|
|
213
|
+
transform: scaleX(-1);
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
|
|
207
218
|
}
|
|
208
219
|
|
|
209
220
|
|
|
@@ -121,7 +121,8 @@
|
|
|
121
121
|
align-items: center;
|
|
122
122
|
flex: 1;
|
|
123
123
|
|
|
124
|
-
> .k-
|
|
124
|
+
> .k-icon,
|
|
125
|
+
> .k-svg-icon {
|
|
125
126
|
padding-block: 0;
|
|
126
127
|
padding-inline: $kendo-padding-md-y;
|
|
127
128
|
box-sizing: content-box;
|
|
@@ -632,7 +633,8 @@
|
|
|
632
633
|
cursor: pointer;
|
|
633
634
|
|
|
634
635
|
> .k-icon,
|
|
635
|
-
> .k-svg-icon
|
|
636
|
+
> .k-svg-icon,
|
|
637
|
+
> .k-expander-indicator {
|
|
636
638
|
margin-right: $kendo-padding-md-y;
|
|
637
639
|
}
|
|
638
640
|
}
|