@progress/kendo-theme-default 5.0.0-beta.1 → 5.0.0-beta.2
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 +814 -626
- package/dist/all.scss +952 -711
- package/package.json +2 -2
- package/scss/avatar/index.md +0 -0
- package/scss/button/_layout.scss +4 -4
- package/scss/checkbox/index.md +0 -0
- package/scss/chip/_index.scss +1 -0
- package/scss/chip/_layout.scss +110 -32
- package/scss/chip/_theme.scss +7 -6
- package/scss/chip/_variables.scss +11 -11
- package/scss/chip/index.md +0 -0
- package/scss/color-preview/_layout.scss +23 -10
- package/scss/color-preview/_theme.scss +4 -3
- package/scss/color-preview/_variables.scss +1 -0
- package/scss/colorpicker/_index.scss +1 -2
- package/scss/colorpicker/_layout.scss +1 -1
- package/scss/colorpicker/_theme.scss +1 -1
- package/scss/colorpicker/_variables.scss +1 -20
- package/scss/dateinput/_index.scss +0 -4
- package/scss/dateinput/_variables.scss +1 -1
- package/scss/datepicker/_index.scss +1 -3
- package/scss/datetimepicker/_index.scss +5 -3
- package/scss/datetimepicker/_layout.scss +2 -2
- package/scss/datetimepicker/_theme.scss +2 -2
- package/scss/datetimepicker/_variables.scss +2 -1
- package/scss/dropdowngrid/index.md +0 -0
- package/scss/filter/_index.scss +1 -1
- package/scss/filter/_layout.scss +9 -2
- package/scss/filter/_theme.scss +3 -1
- package/scss/gantt/_index.scss +1 -1
- package/scss/grid/_index.scss +1 -1
- package/scss/grid/_layout.scss +3 -16
- package/scss/index.scss +1 -1
- package/scss/input/_layout.scss +53 -8
- package/scss/input/_theme.scss +4 -2
- package/scss/input/_variables.scss +16 -26
- package/scss/list/_layout.scss +20 -3
- package/scss/list/_theme.scss +2 -1
- package/scss/list/index.md +0 -0
- package/scss/panelbar/_theme.scss +9 -2
- package/scss/panelbar/_variables.scss +4 -0
- package/scss/pivotgrid/_layout.scss +8 -8
- package/scss/pivotgrid/_variables.scss +0 -3
- package/scss/radio/index.md +0 -0
- package/scss/scheduler/_index.scss +1 -1
- package/scss/scrollview/_layout.scss +6 -1
- package/scss/slider/_layout.scss +2 -0
- package/scss/spreadsheet/_index.scss +1 -1
- package/scss/switch/_layout.scss +4 -2
- package/scss/switch/index.md +0 -0
- package/scss/table/_layout.scss +39 -3
- package/scss/taskboard/_layout.scss +2 -1
- package/scss/taskboard/_variables.scss +0 -2
- package/scss/timepicker/_index.scss +3 -3
- package/scss/timepicker/_variables.scss +1 -1
- package/scss/{datetime → timeselector}/_index.scss +2 -5
- package/scss/{datetime → timeselector}/_layout.scss +121 -135
- package/scss/{datetime → timeselector}/_theme.scss +21 -21
- package/scss/timeselector/_variables.scss +32 -0
- package/scss/treeview/_layout.scss +49 -33
- package/scss/treeview/_theme.scss +31 -32
- package/scss/treeview/_variables.scss +142 -46
- package/scss/utils/_border.scss +1 -2
- package/scss/utils/_flex.scss +11 -3
- package/scss/datetime/_variables.scss +0 -53
package/scss/grid/_layout.scss
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
@include exports("grid/layout") {
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
// TODO: see why we need this variable
|
|
4
|
+
// $filter-rows-span-size: calc( #{$line-height-em} + #{$kendo-input-padding-y-md * 2} + #{$kendo-input-border-width * 2}) !default;
|
|
5
|
+
$filter-rows-span-size: null !default;
|
|
4
6
|
|
|
5
7
|
$grid-group-dropclue-size: 6px;
|
|
6
8
|
$grid-group-dropclue-line-size: $grid-group-dropclue-size / 3;
|
|
@@ -499,10 +501,6 @@
|
|
|
499
501
|
}
|
|
500
502
|
}
|
|
501
503
|
|
|
502
|
-
.k-group-indicator {
|
|
503
|
-
margin-right: ( $grid-group-indicator-gap / 2 );
|
|
504
|
-
}
|
|
505
|
-
|
|
506
504
|
.k-group-indicator + .k-group-indicator {
|
|
507
505
|
margin-left: ( $grid-group-indicator-gap / 2 );
|
|
508
506
|
}
|
|
@@ -754,17 +752,6 @@
|
|
|
754
752
|
gap: ( $grid-cell-padding-y / 2 );
|
|
755
753
|
flex: 1 1 auto;
|
|
756
754
|
|
|
757
|
-
> .k-widget,
|
|
758
|
-
> .k-textbox {
|
|
759
|
-
width: 100%;
|
|
760
|
-
}
|
|
761
|
-
|
|
762
|
-
.k-colorpicker,
|
|
763
|
-
.k-dropdown-operator {
|
|
764
|
-
width: min-content;
|
|
765
|
-
flex: none;
|
|
766
|
-
}
|
|
767
|
-
|
|
768
755
|
> .k-button {
|
|
769
756
|
flex: none;
|
|
770
757
|
}
|
package/scss/index.scss
CHANGED
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
|
|
54
54
|
// Form requirements
|
|
55
55
|
@import "calendar/_index.scss";
|
|
56
|
+
@import "timeselector/_index.scss";
|
|
56
57
|
|
|
57
58
|
|
|
58
59
|
// Augmented forms
|
|
@@ -68,7 +69,6 @@
|
|
|
68
69
|
@import "timepicker/_index.scss";
|
|
69
70
|
@import "datetimepicker/_index.scss";
|
|
70
71
|
@import "daterangepicker/_index.scss";
|
|
71
|
-
@import "datetime/_index.scss";
|
|
72
72
|
@import "dropdowngrid/_index.scss";
|
|
73
73
|
@import "dropdownlist/_index.scss";
|
|
74
74
|
@import "dropdowntree/_index.scss";
|
package/scss/input/_layout.scss
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@include border-radius( $kendo-input-border-radius );
|
|
7
7
|
margin: 0;
|
|
8
8
|
padding: 0;
|
|
9
|
-
width:
|
|
9
|
+
width: $kendo-input-default-width;
|
|
10
10
|
min-width: 0;
|
|
11
11
|
border-width: $kendo-input-border-width;
|
|
12
12
|
border-style: solid;
|
|
@@ -112,8 +112,9 @@
|
|
|
112
112
|
.k-icon-picker {
|
|
113
113
|
.k-input-inner {
|
|
114
114
|
padding: $kendo-input-padding-y;
|
|
115
|
-
|
|
116
|
-
|
|
115
|
+
// TODO we need better way
|
|
116
|
+
// width: $kendo-input-inner-calc-height;
|
|
117
|
+
// height: $kendo-input-inner-calc-height;
|
|
117
118
|
justify-content: center;
|
|
118
119
|
}
|
|
119
120
|
}
|
|
@@ -122,6 +123,7 @@
|
|
|
122
123
|
// Input prefix and suffix
|
|
123
124
|
.k-input-prefix,
|
|
124
125
|
.k-input-suffix {
|
|
126
|
+
border-color: inherit;
|
|
125
127
|
display: flex;
|
|
126
128
|
flex-flow: row nowrap;
|
|
127
129
|
align-items: center;
|
|
@@ -133,13 +135,24 @@
|
|
|
133
135
|
}
|
|
134
136
|
|
|
135
137
|
|
|
138
|
+
// Input separator
|
|
139
|
+
.k-input-separator {
|
|
140
|
+
margin: 0;
|
|
141
|
+
width: 0;
|
|
142
|
+
height: $icon-size;
|
|
143
|
+
border-width: 0 0 0 1px;
|
|
144
|
+
border-style: solid;
|
|
145
|
+
border-color: inherit;
|
|
146
|
+
align-self: center;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
|
|
136
150
|
// Input with icon styles
|
|
137
151
|
.k-input-icon,
|
|
138
152
|
.k-input-validation-icon,
|
|
139
153
|
.k-input-loading-icon {
|
|
140
|
-
width: $kendo-input-icon-width;
|
|
141
|
-
height: $kendo-input-icon-height;
|
|
142
154
|
flex: none;
|
|
155
|
+
align-self: center;
|
|
143
156
|
display: inline-flex;
|
|
144
157
|
flex-flow: row nowrap;
|
|
145
158
|
align-items: center;
|
|
@@ -149,11 +162,10 @@
|
|
|
149
162
|
|
|
150
163
|
// Clear value
|
|
151
164
|
.k-clear-value {
|
|
152
|
-
width: $kendo-input-icon-width;
|
|
153
|
-
height: $kendo-input-icon-height;
|
|
154
165
|
outline: 0;
|
|
155
166
|
color: $kendo-input-clear-value-text;
|
|
156
167
|
flex: none;
|
|
168
|
+
align-self: center;
|
|
157
169
|
display: inline-flex;
|
|
158
170
|
align-items: center;
|
|
159
171
|
justify-content: center;
|
|
@@ -227,6 +239,24 @@
|
|
|
227
239
|
}
|
|
228
240
|
|
|
229
241
|
|
|
242
|
+
// Legacy wrappers
|
|
243
|
+
.k-picker-wrap,
|
|
244
|
+
.k-dropdown-wrap,
|
|
245
|
+
.k-dateinput-wrap,
|
|
246
|
+
.k-multiselect-wrap,
|
|
247
|
+
.k-numeric-wrap {
|
|
248
|
+
width: 100%;
|
|
249
|
+
border-width: 0;
|
|
250
|
+
border-color: inherit;
|
|
251
|
+
box-sizing: border-box;
|
|
252
|
+
flex: 1 1 auto;
|
|
253
|
+
display: flex;
|
|
254
|
+
flex-flow: row nowrap;
|
|
255
|
+
overflow: hidden;
|
|
256
|
+
position: relative;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
|
|
230
260
|
// Fill mode
|
|
231
261
|
.k-input-flat,
|
|
232
262
|
.k-picker-flat {
|
|
@@ -253,6 +283,7 @@
|
|
|
253
283
|
$_padding-y: map-get( $size-props, padding-y );
|
|
254
284
|
$_font-size: map-get( $size-props, font-size );
|
|
255
285
|
$_line-height: map-get( $size-props, line-height );
|
|
286
|
+
$_icon-size: map-get( $size-props, icon-size );
|
|
256
287
|
|
|
257
288
|
.k-input-#{$size},
|
|
258
289
|
.k-picker-#{$size} {
|
|
@@ -262,8 +293,22 @@
|
|
|
262
293
|
.k-input-inner {
|
|
263
294
|
padding: $_padding-y $_padding-x;
|
|
264
295
|
}
|
|
265
|
-
}
|
|
266
296
|
|
|
297
|
+
.k-input-icon,
|
|
298
|
+
.k-input-validation-icon,
|
|
299
|
+
.k-input-loading-icon,
|
|
300
|
+
.k-clear-value {
|
|
301
|
+
width: $_icon-size;
|
|
302
|
+
height: $_icon-size;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
&.k-icon-picker .k-input-inner {
|
|
306
|
+
width: calc( #{$_line-height * 1em} );
|
|
307
|
+
height: calc( #{$_line-height * 1em} );
|
|
308
|
+
padding: $_padding-y;
|
|
309
|
+
box-sizing: content-box;
|
|
310
|
+
}
|
|
311
|
+
}
|
|
267
312
|
}
|
|
268
313
|
|
|
269
314
|
}
|
package/scss/input/_theme.scss
CHANGED
|
@@ -31,7 +31,8 @@
|
|
|
31
31
|
|
|
32
32
|
// Invalid
|
|
33
33
|
&:invalid,
|
|
34
|
-
&.k-invalid
|
|
34
|
+
&.k-invalid,
|
|
35
|
+
&.ng-invalid {
|
|
35
36
|
@include fill( $border: $invalid-border );
|
|
36
37
|
|
|
37
38
|
.k-input-validation-icon {
|
|
@@ -79,7 +80,8 @@
|
|
|
79
80
|
|
|
80
81
|
// Invalid
|
|
81
82
|
&:invalid,
|
|
82
|
-
&.k-invalid
|
|
83
|
+
&.k-invalid,
|
|
84
|
+
&.ng-invalid {
|
|
83
85
|
@include fill( $border: $kendo-input-invalid-border );
|
|
84
86
|
|
|
85
87
|
.k-input-validation-icon {
|
|
@@ -1,58 +1,52 @@
|
|
|
1
1
|
// Input
|
|
2
|
+
$kendo-input-default-width: 100% !default;
|
|
3
|
+
|
|
2
4
|
$kendo-input-border-width: 1px !default;
|
|
3
5
|
$kendo-input-border-height: ( $kendo-input-border-width * 2 ) !default;
|
|
4
|
-
$kendo-input-border-radius:
|
|
5
|
-
$kendo-input-border-radius-sm: $border-radius !default;
|
|
6
|
-
$kendo-input-border-radius-lg: $border-radius !default;
|
|
6
|
+
$kendo-input-border-radius: null !default;
|
|
7
7
|
|
|
8
8
|
$kendo-input-padding-x: $padding-x !default;
|
|
9
9
|
$kendo-input-padding-y: $padding-y !default;
|
|
10
10
|
$kendo-input-font-family: $font-family !default;
|
|
11
11
|
$kendo-input-font-size: $font-size !default;
|
|
12
12
|
$kendo-input-line-height: $line-height !default;
|
|
13
|
-
$kendo-input-line-height-em: $kendo-input-line-height * 1em !default;
|
|
14
13
|
|
|
15
14
|
$kendo-input-padding-x-sm: ($kendo-input-padding-x / 2) !default;
|
|
16
15
|
$kendo-input-padding-y-sm: ($kendo-input-padding-y / 2) !default;
|
|
17
|
-
$kendo-input-font-size-sm: $
|
|
18
|
-
$kendo-input-line-height-sm: $line-height-
|
|
16
|
+
$kendo-input-font-size-sm: $font-size !default;
|
|
17
|
+
$kendo-input-line-height-sm: $line-height-md !default;
|
|
19
18
|
|
|
20
19
|
$kendo-input-padding-x-md: $kendo-input-padding-x !default;
|
|
21
20
|
$kendo-input-padding-y-md: $kendo-input-padding-y !default;
|
|
22
|
-
$kendo-input-font-size-md: $
|
|
23
|
-
$kendo-input-line-height-md: $
|
|
21
|
+
$kendo-input-font-size-md: $font-size !default;
|
|
22
|
+
$kendo-input-line-height-md: $line-height-md !default;
|
|
24
23
|
|
|
25
24
|
$kendo-input-padding-x-lg: ($kendo-input-padding-x * 1.5) !default;
|
|
26
25
|
$kendo-input-padding-y-lg: ($kendo-input-padding-y * 1.5) !default;
|
|
27
|
-
$kendo-input-font-size-lg: $
|
|
28
|
-
$kendo-input-line-height-lg: $line-height-
|
|
29
|
-
|
|
30
|
-
$kendo-input-calc-height: calc( #{$kendo-input-line-height * 1em} + #{$kendo-input-padding-y * 2} + #{$kendo-input-border-height} ) !default;
|
|
31
|
-
$kendo-input-calc-height-sm: calc( #{$kendo-input-line-height-sm * 1em} + #{$kendo-input-padding-y-sm * 2} + #{$kendo-input-border-height} ) !default;
|
|
32
|
-
$kendo-input-calc-height-lg: calc( #{$kendo-input-line-height-lg * 1em} + #{$kendo-input-padding-y-lg * 2} + #{$kendo-input-border-height} ) !default;
|
|
33
|
-
|
|
34
|
-
$kendo-input-inner-calc-height: calc( #{$kendo-input-line-height * 1em} + #{$kendo-input-padding-y * 2} ) !default;
|
|
35
|
-
$kendo-input-inner-calc-height-sm: calc( #{$kendo-input-line-height-sm * 1em} + #{$kendo-input-padding-y-sm * 2} ) !default;
|
|
36
|
-
$kendo-input-inner-calc-height-lg: calc( #{$kendo-input-line-height-lg * 1em} + #{$kendo-input-padding-y-lg * 2} ) !default;
|
|
26
|
+
$kendo-input-font-size-lg: $font-size !default;
|
|
27
|
+
$kendo-input-line-height-lg: $line-height-md !default;
|
|
37
28
|
|
|
38
29
|
$kendo-input-sizes: (
|
|
39
30
|
sm: (
|
|
40
31
|
padding-x: $kendo-input-padding-x-sm,
|
|
41
32
|
padding-y: $kendo-input-padding-y-sm,
|
|
42
33
|
font-size: $kendo-input-font-size-sm,
|
|
43
|
-
line-height: $kendo-input-line-height-sm
|
|
34
|
+
line-height: $kendo-input-line-height-sm,
|
|
35
|
+
icon-size: calc( #{$icon-size} + #{$kendo-input-padding-y-sm * 2} )
|
|
44
36
|
),
|
|
45
37
|
md: (
|
|
46
38
|
padding-x: $kendo-input-padding-x-md,
|
|
47
39
|
padding-y: $kendo-input-padding-y-md,
|
|
48
40
|
font-size: $kendo-input-font-size-md,
|
|
49
|
-
line-height: $kendo-input-line-height-md
|
|
41
|
+
line-height: $kendo-input-line-height-md,
|
|
42
|
+
icon-size: calc( #{$icon-size} + #{$kendo-input-padding-y-md * 2} )
|
|
50
43
|
),
|
|
51
44
|
lg: (
|
|
52
45
|
padding-x: $kendo-input-padding-x-lg,
|
|
53
46
|
padding-y: $kendo-input-padding-y-lg,
|
|
54
47
|
font-size: $kendo-input-font-size-lg,
|
|
55
|
-
line-height: $kendo-input-line-height-lg
|
|
48
|
+
line-height: $kendo-input-line-height-lg,
|
|
49
|
+
icon-size: calc( #{$icon-size} + #{$kendo-input-padding-y-lg * 2} )
|
|
56
50
|
)
|
|
57
51
|
) !default;
|
|
58
52
|
|
|
@@ -85,6 +79,7 @@ $kendo-input-clear-value-hover-opacity: 1 !default;
|
|
|
85
79
|
$kendo-input-values-margin-y: map-get( $spacing, thin ) !default;
|
|
86
80
|
$kendo-input-values-margin-x: $kendo-input-values-margin-y !default;
|
|
87
81
|
|
|
82
|
+
|
|
88
83
|
// Input actions
|
|
89
84
|
$kendo-input-button-width: $kendo-button-inner-calc-size !default;
|
|
90
85
|
$kendo-input-button-border-width: 0px !default;
|
|
@@ -92,11 +87,6 @@ $kendo-input-spinner-width: $kendo-button-inner-calc-size !default;
|
|
|
92
87
|
$kendo-input-spinner-icon-offset: 2px !default;
|
|
93
88
|
|
|
94
89
|
|
|
95
|
-
// Input icon
|
|
96
|
-
$kendo-input-icon-width: calc( #{$icon-size} + #{$kendo-input-padding-y * 2} ) !default;
|
|
97
|
-
$kendo-input-icon-height: calc( #{$kendo-input-line-height * $kendo-input-font-size} + #{$kendo-input-padding-y * 2} ) !default;
|
|
98
|
-
|
|
99
|
-
|
|
100
90
|
// Input separator
|
|
101
91
|
$kendo-input-separator-color: $kendo-input-text !default;
|
|
102
92
|
$kendo-input-separator-opacity: .5 !default;
|
package/scss/list/_layout.scss
CHANGED
|
@@ -6,12 +6,24 @@
|
|
|
6
6
|
padding: 0;
|
|
7
7
|
font-size: $kendo-list-font-size;
|
|
8
8
|
line-height: $kendo-list-line-height;
|
|
9
|
+
display: flex;
|
|
10
|
+
flex-flow: column nowrap;
|
|
9
11
|
outline: none;
|
|
12
|
+
position: relative;
|
|
13
|
+
overflow: hidden;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
// List in popup
|
|
18
|
+
.k-popup > .k-list {
|
|
19
|
+
height: 100%;
|
|
20
|
+
border-width: 0;
|
|
10
21
|
}
|
|
11
22
|
|
|
12
23
|
|
|
13
24
|
// List header
|
|
14
|
-
.k-list-header
|
|
25
|
+
// .k-list-header,
|
|
26
|
+
.k-list-group-sticky-header {
|
|
15
27
|
padding: $kendo-list-header-padding-y $kendo-list-header-padding-x;
|
|
16
28
|
border-width: 0;
|
|
17
29
|
border-width: $kendo-list-header-border-width; // sass-lint:disable-line no-duplicate-properties
|
|
@@ -20,6 +32,7 @@
|
|
|
20
32
|
line-height: $kendo-list-header-line-height;
|
|
21
33
|
font-weight: $kendo-list-header-font-weight;
|
|
22
34
|
white-space: nowrap;
|
|
35
|
+
flex: none;
|
|
23
36
|
overflow: hidden;
|
|
24
37
|
text-overflow: ellipsis;
|
|
25
38
|
}
|
|
@@ -28,6 +41,7 @@
|
|
|
28
41
|
// List content
|
|
29
42
|
.k-list-content {
|
|
30
43
|
border-color: inherit;
|
|
44
|
+
flex: 1 1 auto;
|
|
31
45
|
overflow: hidden;
|
|
32
46
|
overflow-y: auto;
|
|
33
47
|
-webkit-overflow-scrolling: touch;
|
|
@@ -123,7 +137,9 @@
|
|
|
123
137
|
overflow-y: scroll;
|
|
124
138
|
}
|
|
125
139
|
.k-virtual-list .k-list-item,
|
|
126
|
-
.k-virtual-list .k-list-group-item
|
|
140
|
+
.k-virtual-list .k-list-group-item,
|
|
141
|
+
.k-virtual-content .k-list-item,
|
|
142
|
+
.k-virtual-content .k-list-group-item {
|
|
127
143
|
position: absolute;
|
|
128
144
|
width: 100%;
|
|
129
145
|
}
|
|
@@ -167,7 +183,8 @@
|
|
|
167
183
|
font-size: $_font-size;
|
|
168
184
|
line-height: $_line-height;
|
|
169
185
|
|
|
170
|
-
.k-list-header
|
|
186
|
+
// .k-list-header,
|
|
187
|
+
.k-list-group-sticky-header {
|
|
171
188
|
padding: $_header-padding-y $_header-padding-x;
|
|
172
189
|
font-size: $_header-font-size;
|
|
173
190
|
line-height: $_header-line-height;
|
package/scss/list/_theme.scss
CHANGED
|
File without changes
|
|
@@ -12,6 +12,15 @@
|
|
|
12
12
|
> .k-item,
|
|
13
13
|
> .k-panelbar-header {
|
|
14
14
|
|
|
15
|
+
&.k-state-expanded.k-level-0 > .k-link {
|
|
16
|
+
@include fill(
|
|
17
|
+
$panelbar-header-expanded-text,
|
|
18
|
+
$panelbar-header-expanded-bg,
|
|
19
|
+
$panelbar-header-expanded-border,
|
|
20
|
+
$panelbar-header-expanded-gradient
|
|
21
|
+
);
|
|
22
|
+
}
|
|
23
|
+
|
|
15
24
|
// Normal
|
|
16
25
|
> .k-link {
|
|
17
26
|
@include fill(
|
|
@@ -48,7 +57,6 @@
|
|
|
48
57
|
$panelbar-header-focused-border,
|
|
49
58
|
$panelbar-header-focused-gradient
|
|
50
59
|
);
|
|
51
|
-
|
|
52
60
|
box-shadow: $panelbar-header-focused-shadow;
|
|
53
61
|
}
|
|
54
62
|
|
|
@@ -145,7 +153,6 @@
|
|
|
145
153
|
$panelbar-item-focused-border,
|
|
146
154
|
$panelbar-item-focused-gradient
|
|
147
155
|
);
|
|
148
|
-
|
|
149
156
|
box-shadow: $panelbar-item-focused-shadow;
|
|
150
157
|
}
|
|
151
158
|
|
|
@@ -95,3 +95,7 @@ $panelbar-item-selected-hovered-focused-text: null !default;
|
|
|
95
95
|
$panelbar-item-selected-hovered-focused-border: null !default;
|
|
96
96
|
$panelbar-item-selected-hovered-focused-gradient: null !default;
|
|
97
97
|
|
|
98
|
+
$panelbar-header-expanded-bg: null !default;
|
|
99
|
+
$panelbar-header-expanded-text: null !default;
|
|
100
|
+
$panelbar-header-expanded-border: null !default;
|
|
101
|
+
$panelbar-header-expanded-gradient: null !default;
|
|
@@ -255,6 +255,14 @@
|
|
|
255
255
|
}
|
|
256
256
|
}
|
|
257
257
|
|
|
258
|
+
// Rows, Cols and Filters
|
|
259
|
+
.k-row-fields,
|
|
260
|
+
.k-column-fields,
|
|
261
|
+
.k-filter-fields {
|
|
262
|
+
margin-top: $pivotgrid-configurator-fields-margin-y;
|
|
263
|
+
flex-wrap: wrap;
|
|
264
|
+
}
|
|
265
|
+
|
|
258
266
|
// Values
|
|
259
267
|
.k-value-fields {
|
|
260
268
|
margin: $pivotgrid-configurator-fields-margin-y $pivotgrid-configurator-fields-margin-x;
|
|
@@ -281,20 +289,12 @@
|
|
|
281
289
|
text-align: center;
|
|
282
290
|
}
|
|
283
291
|
|
|
284
|
-
.k-chip-content {
|
|
285
|
-
padding-inline-end: map-get($spacing, 1);
|
|
286
|
-
}
|
|
287
|
-
|
|
288
292
|
.k-treeview {
|
|
289
293
|
padding: $pivotgrid-treeview-padding-y $pivotgrid-treeview-padding-x;
|
|
290
294
|
overflow: auto;
|
|
291
295
|
}
|
|
292
296
|
}
|
|
293
297
|
|
|
294
|
-
.k-pivotgrid-configurator-actions {
|
|
295
|
-
padding: $pivotgrid-configurator-actions-padding-y $pivotgrid-configurator-actions-padding-x;
|
|
296
|
-
}
|
|
297
|
-
|
|
298
298
|
|
|
299
299
|
// Calculated field
|
|
300
300
|
.k-calculated-field {
|
|
@@ -54,9 +54,6 @@ $pivotgrid-configurator-content-padding-y: 2px !default;
|
|
|
54
54
|
$pivotgrid-configurator-fields-margin-x: 0px !default;
|
|
55
55
|
$pivotgrid-configurator-fields-margin-y: ( $pivotgrid-spacer / 2 ) !default;
|
|
56
56
|
|
|
57
|
-
$pivotgrid-configurator-actions-padding-x: ( $pivotgrid-spacer / 2 ) !default;
|
|
58
|
-
$pivotgrid-configurator-actions-padding-y: ( $pivotgrid-spacer * .75 ) !default;
|
|
59
|
-
|
|
60
57
|
$pivotgrid-configurator-vertical-width: 320px !default;
|
|
61
58
|
$pivotgrid-configurator-horizontal-height: 420px !default;
|
|
62
59
|
|
|
File without changes
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
@import "../icons/_index.scss";
|
|
7
7
|
@import "../adaptive/_index.scss";
|
|
8
8
|
@import "../button/_index.scss";
|
|
9
|
-
@import "../
|
|
9
|
+
@import "../datetimepicker/_index.scss";
|
|
10
10
|
@import "../dropdownlist/_index.scss";
|
|
11
11
|
@import "../dialog/_index.scss";
|
|
12
12
|
@import "../tooltip/_index.scss";
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
kendo-scrollview.k-scrollview-wrap,
|
|
4
4
|
kendo-scrollview.k-scrollview,
|
|
5
|
-
.k-
|
|
5
|
+
.k-scrollview {
|
|
6
6
|
border-width: $scrollview-border-width;
|
|
7
7
|
border-style: solid;
|
|
8
8
|
box-sizing: border-box;
|
|
@@ -61,6 +61,11 @@
|
|
|
61
61
|
width: calc( 100% / var(--kendo-scrollview-views, 1) );
|
|
62
62
|
flex: 0 0 calc( 100% / var(--kendo-scrollview-views, 1) );
|
|
63
63
|
}
|
|
64
|
+
|
|
65
|
+
[dir="rtl"] &,
|
|
66
|
+
.k-rtl & {
|
|
67
|
+
transform: translateX( calc( 100% / var(--kendo-scrollview-views, 1) * ( var(--kendo-scrollview-current, 1) - 1) ) );
|
|
68
|
+
}
|
|
64
69
|
}
|
|
65
70
|
|
|
66
71
|
|
package/scss/slider/_layout.scss
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
@import "../radio/_index.scss";
|
|
9
9
|
@import "../colorpicker/_index.scss";
|
|
10
10
|
@import "../combobox/_index.scss";
|
|
11
|
-
@import "../
|
|
11
|
+
@import "../datetimepicker/_index.scss";
|
|
12
12
|
@import "../dropdownlist/_index.scss";
|
|
13
13
|
@import "../toolbar/_index.scss";
|
|
14
14
|
@import "../upload/_index.scss";
|
package/scss/switch/_layout.scss
CHANGED
|
@@ -102,7 +102,8 @@
|
|
|
102
102
|
}
|
|
103
103
|
|
|
104
104
|
.k-switch-#{$size}[dir="rtl"],
|
|
105
|
-
[dir="rtl"] .k-switch-#{$size}
|
|
105
|
+
[dir="rtl"] .k-switch-#{$size},
|
|
106
|
+
.k-rtl .k-switch-#{$size} {
|
|
106
107
|
|
|
107
108
|
.k-switch-label-on {
|
|
108
109
|
left: auto;
|
|
@@ -125,7 +126,8 @@
|
|
|
125
126
|
|
|
126
127
|
// RTL
|
|
127
128
|
.k-switch[dir="rtl"],
|
|
128
|
-
[dir="rtl"] .k-switch
|
|
129
|
+
[dir="rtl"] .k-switch,
|
|
130
|
+
.k-rtl .k-switch {
|
|
129
131
|
|
|
130
132
|
.k-switch-thumb {
|
|
131
133
|
transform: translate( 50%, -50% );
|
|
File without changes
|
package/scss/table/_layout.scss
CHANGED
|
@@ -20,6 +20,10 @@
|
|
|
20
20
|
.k-data-table {
|
|
21
21
|
border-width: $kendo-table-border-width;
|
|
22
22
|
border-style: solid;
|
|
23
|
+
|
|
24
|
+
.k-table {
|
|
25
|
+
table-layout: fixed;
|
|
26
|
+
}
|
|
23
27
|
}
|
|
24
28
|
|
|
25
29
|
|
|
@@ -81,7 +85,7 @@
|
|
|
81
85
|
width: 100%;
|
|
82
86
|
max-width: none;
|
|
83
87
|
border-width: 0;
|
|
84
|
-
display: table
|
|
88
|
+
display: table;
|
|
85
89
|
border-collapse: collapse;
|
|
86
90
|
border-spacing: 0;
|
|
87
91
|
table-layout: fixed;
|
|
@@ -89,10 +93,11 @@
|
|
|
89
93
|
list-style: none;
|
|
90
94
|
outline: none;
|
|
91
95
|
|
|
92
|
-
.k-table-row
|
|
96
|
+
.k-table-row,
|
|
97
|
+
.k-table-group-row {
|
|
93
98
|
width: 100%;
|
|
94
99
|
box-sizing: border-box;
|
|
95
|
-
display:
|
|
100
|
+
display: table-row;
|
|
96
101
|
position: relative;
|
|
97
102
|
}
|
|
98
103
|
.k-table-row.k-first {
|
|
@@ -104,6 +109,26 @@
|
|
|
104
109
|
vertical-align: middle;
|
|
105
110
|
}
|
|
106
111
|
|
|
112
|
+
.k-table-group-row {
|
|
113
|
+
|
|
114
|
+
&::before {
|
|
115
|
+
content: ".";
|
|
116
|
+
padding: $kendo-table-cell-padding-y 0;
|
|
117
|
+
width: 0;
|
|
118
|
+
display: block;
|
|
119
|
+
overflow: hidden;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.k-table-th {
|
|
123
|
+
width: 100%;
|
|
124
|
+
border-color: inherit;
|
|
125
|
+
color: inherit;
|
|
126
|
+
background-color: inherit;
|
|
127
|
+
position: absolute;
|
|
128
|
+
top: 0;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
|
|
107
132
|
.k-table-spacer-td {
|
|
108
133
|
padding: 0 !important; // sass-lint:disable-line no-important
|
|
109
134
|
width: 0 !important; // sass-lint:disable-line no-important
|
|
@@ -127,6 +152,13 @@
|
|
|
127
152
|
}
|
|
128
153
|
|
|
129
154
|
|
|
155
|
+
// Virtualization
|
|
156
|
+
.k-virtual-table .k-table-row {
|
|
157
|
+
position: absolute;
|
|
158
|
+
width: 100%;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
|
|
130
162
|
// Table scroller
|
|
131
163
|
.k-table-scroller {
|
|
132
164
|
position: relative;
|
|
@@ -178,6 +210,10 @@
|
|
|
178
210
|
.k-table-#{$size} .k-table-list .k-table-group-td > span {
|
|
179
211
|
padding: 0 ( $_cell-padding-x / 2 );
|
|
180
212
|
}
|
|
213
|
+
|
|
214
|
+
.k-table-#{$size} .k-table-list .k-table-group-row::before {
|
|
215
|
+
padding: $_cell-padding-y 0;
|
|
216
|
+
}
|
|
181
217
|
}
|
|
182
218
|
|
|
183
219
|
|
|
@@ -46,8 +46,6 @@ $taskboard-column-cards-padding-y: null !default;
|
|
|
46
46
|
$taskboard-column-cards-padding-x: null !default;
|
|
47
47
|
$taskboard-column-cards-gap: ( $taskboard-spacer / 2 ) !default;
|
|
48
48
|
|
|
49
|
-
$taskboard-column-new-calc-height: calc( #{$kendo-input-calc-height} + #{$taskboard-column-header-padding-y * 2} ) !default;
|
|
50
|
-
|
|
51
49
|
$taskboard-pane-width: $taskboard-column-width !default;
|
|
52
50
|
$taskboard-pane-padding-y: null !default;
|
|
53
51
|
$taskboard-pane-padding-x: null !default;
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
// Dependencies
|
|
5
|
-
@import "../common/_index.scss";
|
|
6
5
|
@import "../input/_index.scss";
|
|
7
|
-
@import "../
|
|
6
|
+
@import "../button/_index.scss";
|
|
8
7
|
@import "../popup/_index.scss";
|
|
9
|
-
@import "../
|
|
8
|
+
@import "../list/_index.scss";
|
|
9
|
+
@import "../timeselector/_index.scss";
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
// Component
|
|
@@ -1 +1 @@
|
|
|
1
|
-
//
|
|
1
|
+
// Time picker
|
|
@@ -2,12 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
// Dependencies
|
|
5
|
-
@import "../
|
|
5
|
+
@import "../list/_index.scss";
|
|
6
6
|
@import "../action-buttons/_index.scss";
|
|
7
|
-
@import "../
|
|
8
|
-
@import "../floating-label/_index.scss";
|
|
9
|
-
@import "../calendar/_index.scss";
|
|
10
|
-
@import "../popup/_index.scss";
|
|
7
|
+
@import "../button/_index.scss";
|
|
11
8
|
|
|
12
9
|
|
|
13
10
|
// Component
|