@progress/kendo-theme-default 4.43.1-dev.1 → 4.43.1-dev.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.
Files changed (60) hide show
  1. package/dist/all.css +695 -747
  2. package/dist/all.scss +1405 -1200
  3. package/package.json +2 -2
  4. package/scss/avatar/index.md +0 -0
  5. package/scss/calendar/_theme.scss +0 -21
  6. package/scss/checkbox/index.md +0 -0
  7. package/scss/chip/_layout.scss +103 -123
  8. package/scss/chip/_theme.scss +289 -300
  9. package/scss/chip/_variables.scss +7 -9
  10. package/scss/chip/index.md +0 -0
  11. package/scss/color-preview/_layout.scss +1 -1
  12. package/scss/color-preview/_theme.scss +3 -2
  13. package/scss/color-preview/_variables.scss +2 -1
  14. package/scss/colorpicker/_layout.scss +17 -45
  15. package/scss/colorpicker/_theme.scss +33 -42
  16. package/scss/dateinput/_index.scss +11 -0
  17. package/scss/dateinput/_layout.scss +81 -0
  18. package/scss/dateinput/_theme.scss +86 -0
  19. package/scss/dateinput/_variables.scss +1 -0
  20. package/scss/datepicker/_index.scss +13 -0
  21. package/scss/datepicker/_layout.scss +48 -0
  22. package/scss/datepicker/_theme.scss +87 -0
  23. package/scss/datepicker/_variables.scss +1 -0
  24. package/scss/{datetime → datetimepicker}/_index.scss +5 -4
  25. package/scss/datetimepicker/_layout.scss +120 -0
  26. package/scss/datetimepicker/_theme.scss +89 -0
  27. package/scss/datetimepicker/_variables.scss +2 -0
  28. package/scss/dropdowngrid/index.md +0 -0
  29. package/scss/filter/_index.scss +1 -1
  30. package/scss/filter/_layout.scss +9 -2
  31. package/scss/filter/_theme.scss +3 -1
  32. package/scss/gantt/_index.scss +1 -1
  33. package/scss/grid/_index.scss +1 -1
  34. package/scss/grid/_layout.scss +0 -4
  35. package/scss/index.scss +5 -1
  36. package/scss/input/_layout.scss +25 -26
  37. package/scss/input/_variables.scss +15 -0
  38. package/scss/list/index.md +0 -0
  39. package/scss/panelbar/_theme.scss +9 -2
  40. package/scss/panelbar/_variables.scss +4 -0
  41. package/scss/pivotgrid/_layout.scss +0 -16
  42. package/scss/pivotgrid/_variables.scss +0 -3
  43. package/scss/radio/index.md +0 -0
  44. package/scss/scheduler/_index.scss +1 -1
  45. package/scss/scrollview/_layout.scss +6 -1
  46. package/scss/spreadsheet/_index.scss +1 -1
  47. package/scss/switch/index.md +0 -0
  48. package/scss/table/_layout.scss +35 -3
  49. package/scss/timepicker/_index.scss +15 -0
  50. package/scss/timepicker/_layout.scss +48 -0
  51. package/scss/timepicker/_theme.scss +87 -0
  52. package/scss/timepicker/_variables.scss +1 -0
  53. package/scss/timeselector/_index.scss +13 -0
  54. package/scss/timeselector/_layout.scss +207 -0
  55. package/scss/timeselector/_theme.scss +70 -0
  56. package/scss/timeselector/_variables.scss +32 -0
  57. package/scss/utils/_border.scss +1 -2
  58. package/scss/datetime/_layout.scss +0 -462
  59. package/scss/datetime/_theme.scss +0 -321
  60. package/scss/datetime/_variables.scss +0 -53
@@ -0,0 +1,120 @@
1
+ @include exports( "datetimepicker/layout" ) {
2
+
3
+ // Datetime picker
4
+ .k-datetimepicker {
5
+ @include border-radius( $input-border-radius );
6
+ width: $input-default-width;
7
+ border-width: $input-border-width;
8
+ border-style: solid;
9
+ box-sizing: border-box;
10
+ outline: 0;
11
+ font-family: $input-font-family;
12
+ font-size: $input-font-size;
13
+ line-height: $input-line-height;
14
+ text-align: start;
15
+ white-space: nowrap;
16
+ display: inline-flex;
17
+ flex-flow: row nowrap;
18
+ vertical-align: middle;
19
+ position: relative;
20
+ overflow: hidden;
21
+ transition: all .1s ease; // sass-lint:disable-line no-transition-all
22
+ -webkit-touch-callout: none;
23
+ -webkit-tap-highlight-color: $rgba-transparent;
24
+
25
+
26
+ // Input
27
+ .k-input {}
28
+
29
+
30
+ // Select
31
+ .k-select {
32
+ border-width: 0;
33
+ border-inline-start-width: $picker-select-border-width;
34
+ border-style: solid;
35
+ box-sizing: border-box;
36
+ outline: 0;
37
+ display: flex;
38
+ align-items: stretch;
39
+ justify-content: center;
40
+ flex: 0 0 auto;
41
+ text-align: center;
42
+ cursor: pointer;
43
+ }
44
+ .k-link {
45
+ padding: $picker-select-padding-y $picker-select-padding-x;
46
+ width: if( $use-picker-select-width, $button-inner-calc-size, null );
47
+ height: 100%;
48
+ border-width: 0;
49
+ border-style: solid;
50
+ border-color: inherit;
51
+ display: flex;
52
+ align-items: center;
53
+ justify-content: center;
54
+ box-sizing: border-box;
55
+ }
56
+ }
57
+
58
+
59
+ // Datetime popup
60
+ .k-datetime-popup,
61
+ .k-datetime-container {
62
+
63
+ // Wrap
64
+ .k-datetime-wrap {
65
+ width: $datetime-width;
66
+ overflow: hidden;
67
+ }
68
+ .k-date-tab {
69
+ .k-datetime-selector {
70
+ transform: translateX(0);
71
+ }
72
+ }
73
+ .k-time-tab {
74
+ .k-datetime-selector {
75
+ transform: translateX(-100%);
76
+ }
77
+ }
78
+
79
+ // Datetime button group
80
+ .k-datetime-buttongroup {
81
+ padding: $actions-padding-y $actions-padding-x;
82
+ }
83
+
84
+ // Datetime selector
85
+ .k-datetime-selector {
86
+ display: flex;
87
+ transition: transform .2s;
88
+ }
89
+
90
+ // Inner wraps
91
+ .k-datetime-calendar-wrap,
92
+ .k-datetime-time-wrap {
93
+ text-align: center;
94
+ flex: 0 0 $datetime-width;
95
+ }
96
+
97
+ // Calendar
98
+ .k-datetime-calendar-wrap .k-calendar {
99
+ border-width: 0;
100
+ }
101
+
102
+ // Time
103
+ .k-datetime-time-wrap .k-timeselector {
104
+ border-width: 0;
105
+ }
106
+
107
+ .k-rtl &,
108
+ &.k-rtl,
109
+ [dir="rtl"] &,
110
+ &[dir="rtl"] {
111
+ .k-time-tab {
112
+
113
+ .k-datetime-selector {
114
+ transform: translateX(100%);
115
+ }
116
+ }
117
+ }
118
+ }
119
+
120
+ }
@@ -0,0 +1,89 @@
1
+ @include exports( "datetimepicker/theme" ) {
2
+
3
+ // Datetime picker
4
+ .k-datetimepicker {
5
+ @include fill(
6
+ $input-text,
7
+ $input-bg,
8
+ $input-border
9
+ );
10
+
11
+ // Hover state
12
+ &:hover,
13
+ &.k-state-hover {
14
+ @include fill(
15
+ $input-hovered-text,
16
+ $input-hovered-bg,
17
+ $input-hovered-border
18
+ );
19
+ }
20
+
21
+ // Focus state
22
+ &:focus,
23
+ &.k-state-focus {
24
+ @include fill(
25
+ $input-focused-text,
26
+ $input-focused-bg,
27
+ $input-focused-border
28
+ );
29
+ @include box-shadow( $input-focused-shadow );
30
+ }
31
+ &:focus-within {
32
+ @include fill(
33
+ $input-focused-text,
34
+ $input-focused-bg,
35
+ $input-focused-border
36
+ );
37
+ @include box-shadow( $input-focused-shadow );
38
+ }
39
+
40
+
41
+ // Invalid state
42
+ &.k-invalid,
43
+ &.ng-invalid,
44
+ &.k-state-invalid {
45
+ border-color: $invalid-border;
46
+
47
+ .k-input-validation-icon {
48
+ color: $invalid-text;
49
+ }
50
+
51
+ &:focus-within,
52
+ &.k-state-focus {
53
+ @include box-shadow($invalid-shadow);
54
+ }
55
+ }
56
+
57
+
58
+ // Select
59
+ .k-select {
60
+ @include fill(
61
+ $picker-select-text,
62
+ $picker-select-bg,
63
+ $picker-select-border,
64
+ $picker-select-gradient
65
+ );
66
+ }
67
+ .k-link:hover,
68
+ .k-link.k-state-hover {
69
+ @include fill(
70
+ $picker-select-hovered-text,
71
+ $picker-select-hovered-bg,
72
+ $picker-select-hovered-border,
73
+ $picker-select-hovered-gradient
74
+ );
75
+ }
76
+
77
+ .k-link:active,
78
+ .k-link.k-state-active,
79
+ .k-link.k-state-selected {
80
+ @include fill(
81
+ $picker-select-pressed-text,
82
+ $picker-select-pressed-bg,
83
+ $picker-select-pressed-border,
84
+ $picker-select-pressed-gradient
85
+ );
86
+ }
87
+ }
88
+
89
+ }
@@ -0,0 +1,2 @@
1
+ // DateTime
2
+ $datetime-width: calc( #{$calendar-cell-size * 8} + #{$infinite-calendar-view-padding-x * 2}) !default;
File without changes
@@ -6,7 +6,7 @@
6
6
  @import "../button/_index.scss";
7
7
  @import "../input/_index.scss";
8
8
  @import "../checkbox/_index.scss";
9
- @import "../datetime/_index.scss";
9
+ @import "../datetimepicker/_index.scss";
10
10
  @import "../dropdownlist/_index.scss";
11
11
  @import "../numerictextbox/_index.scss";
12
12
  @import "../toolbar/_index.scss";
@@ -58,7 +58,9 @@
58
58
  }
59
59
  }
60
60
 
61
- .k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after {
61
+ // The second selector targets the Angular rendering
62
+ .k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after,
63
+ .k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
62
64
  content: "";
63
65
  position: absolute;
64
66
  width: $filter-line-size;
@@ -67,9 +69,12 @@
67
69
  left: -$filter-padding-x;
68
70
  }
69
71
 
72
+ // The forth and fifth selectors targets the Angular rendering
70
73
  .k-filter-group-main::before,
71
74
  .k-filter-group-main > .k-filter-toolbar::before,
72
75
  .k-filter-group-main > .k-filter-toolbar::after,
76
+ .k-filter-group-main > * > .k-filter-toolbar::before,
77
+ .k-filter-group-main > * > .k-filter-toolbar::after,
73
78
  .k-filter-lines .k-filter-item:last-child::before {
74
79
  display: none;
75
80
  }
@@ -99,7 +104,9 @@
99
104
  }
100
105
  }
101
106
 
102
- .k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after {
107
+ // The second selector targets the Angular rendering
108
+ .k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after,
109
+ .k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
103
110
  left: auto;
104
111
  right: -$filter-padding-x;
105
112
  }
@@ -11,9 +11,11 @@
11
11
  color: $filter-preview-operator-text;
12
12
  }
13
13
 
14
+ // The last selector targets the Angular rendering
14
15
  .k-filter-item::before,
15
16
  .k-filter-toolbar::before,
16
- .k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after {
17
+ .k-filter-lines .k-filter-item:last-child > .k-filter-toolbar::after,
18
+ .k-filter-lines .k-filter-item:last-child > * > .k-filter-toolbar::after {
17
19
  background-color: $component-border;
18
20
  }
19
21
  }
@@ -6,7 +6,7 @@
6
6
  @import "../button/_index.scss";
7
7
  @import "../input/_index.scss";
8
8
  @import "../validator/_index.scss";
9
- @import "../datetime/_index.scss";
9
+ @import "../datetimepicker/_index.scss";
10
10
  @import "../numerictextbox/_index.scss";
11
11
  @import "../window/_index.scss";
12
12
  @import "../splitter/_index.scss";
@@ -14,7 +14,7 @@
14
14
  @import "../radio/_index.scss";
15
15
  @import "../validator/_index.scss";
16
16
  @import "../autocomplete/_index.scss";
17
- @import "../datetime/_index.scss";
17
+ @import "../datetimepicker/_index.scss";
18
18
  @import "../dropdownlist/_index.scss";
19
19
  @import "../numerictextbox/_index.scss";
20
20
  @import "../menu/_index.scss";
@@ -505,10 +505,6 @@
505
505
  }
506
506
  }
507
507
 
508
- .k-group-indicator {
509
- margin-right: ( $grid-group-indicator-gap / 2 );
510
- }
511
-
512
508
  .k-group-indicator + .k-group-indicator {
513
509
  margin-left: ( $grid-group-indicator-gap / 2 );
514
510
  }
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
@@ -63,7 +64,10 @@
63
64
  @import "coloreditor/_index.scss";
64
65
  @import "colorpicker/_index.scss";
65
66
  @import "combobox/_index.scss";
66
- @import "datetime/_index.scss";
67
+ @import "dateinput/_index.scss";
68
+ @import "datepicker/_index.scss";
69
+ @import "timepicker/_index.scss";
70
+ @import "datetimepicker/_index.scss";
67
71
  @import "dropdowngrid/_index.scss";
68
72
  @import "dropdownlist/_index.scss";
69
73
  @import "dropdowntree/_index.scss";
@@ -43,25 +43,6 @@
43
43
  }
44
44
 
45
45
 
46
- // TODO: Deprecate
47
- // Input spacing
48
- .k-space-left,
49
- .k-space-right {
50
- > input {
51
- flex-grow: 1;
52
- }
53
-
54
- > .k-icon {
55
- left: 3px;
56
- margin: 3px 6px;
57
- }
58
- }
59
-
60
- .k-textbox.k-space-left {
61
- flex-direction: row-reverse;
62
- }
63
-
64
-
65
46
  // Input prefix and suffix
66
47
  .k-input-prefix,
67
48
  .k-input-suffix {
@@ -107,6 +88,8 @@
107
88
  }
108
89
  }
109
90
 
91
+
92
+ // Input separator
110
93
  .k-input-separator {
111
94
  margin: 0;
112
95
  width: 0;
@@ -115,6 +98,7 @@
115
98
  border-style: solid;
116
99
  }
117
100
 
101
+
118
102
  // Input with icon styles
119
103
  .k-input-icon,
120
104
  .k-input-validation-icon,
@@ -154,16 +138,31 @@
154
138
  flex-flow: row nowrap;
155
139
  }
156
140
 
157
- .k-text-disabled {
158
- @include disabled( $disabled-styling );
159
- }
160
-
161
- }
162
-
163
141
 
142
+ // Legacy wrappers
143
+ .k-picker-wrap,
144
+ .k-dropdown-wrap,
145
+ .k-dateinput-wrap,
146
+ .k-multiselect-wrap,
147
+ .k-numeric-wrap {
148
+ width: 100%;
149
+ border-width: 0;
150
+ border-color: inherit;
151
+ box-sizing: border-box;
152
+ flex: 1 1 auto;
153
+ display: flex;
154
+ flex-flow: row nowrap;
155
+ overflow: hidden;
156
+ position: relative;
157
+ }
158
+ .k-multiselect-wrap {
159
+ display: block;
160
+ }
164
161
 
165
162
 
166
- @include exports("input/layout/jQuery-label") {
163
+ .k-text-disabled {
164
+ @include disabled( $disabled-styling );
165
+ }
167
166
 
168
167
  }
169
168
 
@@ -77,6 +77,21 @@ $picker-select-calc-size: $input-inner-calc-height !default;
77
77
  $picker-select-calc-size-sm: $input-inner-calc-height-sm !default;
78
78
  $picker-select-calc-size-lg: $input-inner-calc-height-lg !default;
79
79
 
80
+ $picker-select-bg: $button-bg !default;
81
+ $picker-select-text: $button-text !default;
82
+ $picker-select-border: $button-border !default;
83
+ $picker-select-gradient: $button-gradient !default;
84
+
85
+ $picker-select-hovered-bg: $button-hovered-bg !default;
86
+ $picker-select-hovered-text: $button-hovered-text !default;
87
+ $picker-select-hovered-border: $button-hovered-border !default;
88
+ $picker-select-hovered-gradient: $button-hovered-gradient !default;
89
+
90
+ $picker-select-pressed-bg: $button-active-bg !default;
91
+ $picker-select-pressed-text: $button-active-text !default;
92
+ $picker-select-pressed-border: $button-active-border !default;
93
+ $picker-select-pressed-gradient: $button-active-gradient !default;
94
+
80
95
 
81
96
  // Spinner
82
97
  $spinner-width: $button-inner-calc-size !default;
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;
@@ -261,14 +261,6 @@
261
261
  .k-filter-fields {
262
262
  margin-top: $pivotgrid-configurator-fields-margin-y;
263
263
  flex-wrap: wrap;
264
-
265
- > * {
266
- margin-bottom: $pivotgrid-configurator-fields-margin-y;
267
- }
268
-
269
- > *:last-child {
270
- margin-bottom: 0;
271
- }
272
264
  }
273
265
 
274
266
  // Values
@@ -297,20 +289,12 @@
297
289
  text-align: center;
298
290
  }
299
291
 
300
- .k-chip-content {
301
- padding-inline-end: map-get($spacing, 1);
302
- }
303
-
304
292
  .k-treeview {
305
293
  padding: $pivotgrid-treeview-padding-y $pivotgrid-treeview-padding-x;
306
294
  overflow: auto;
307
295
  }
308
296
  }
309
297
 
310
- .k-pivotgrid-configurator-actions {
311
- padding: $pivotgrid-configurator-actions-padding-y $pivotgrid-configurator-actions-padding-x;
312
- }
313
-
314
298
 
315
299
  // Calculated field
316
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 "../datetime/_index.scss";
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-widget.k-scrollview {
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
 
@@ -8,7 +8,7 @@
8
8
  @import "../radio/_index.scss";
9
9
  @import "../colorpicker/_index.scss";
10
10
  @import "../combobox/_index.scss";
11
- @import "../datetime/_index.scss";
11
+ @import "../datetimepicker/_index.scss";
12
12
  @import "../dropdownlist/_index.scss";
13
13
  @import "../toolbar/_index.scss";
14
14
  @import "../upload/_index.scss";
File without changes
@@ -20,6 +20,10 @@
20
20
  .k-data-table {
21
21
  border-width: $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-row-group;
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: flex;
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: $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
@@ -128,6 +153,13 @@
128
153
  }
129
154
 
130
155
 
156
+ // Virtualization
157
+ .k-virtual-table .k-table-row {
158
+ position: absolute;
159
+ width: 100%;
160
+ }
161
+
162
+
131
163
  // Table scroller
132
164
  .k-table-scroller {
133
165
  position: relative;
@@ -0,0 +1,15 @@
1
+ @import "../core/_index.scss";
2
+
3
+
4
+ // Dependencies
5
+ @import "../input/_index.scss";
6
+ @import "../button/_index.scss";
7
+ @import "../popup/_index.scss";
8
+ @import "../list/_index.scss";
9
+ @import "../timeselector/_index.scss";
10
+
11
+
12
+ // Component
13
+ @import "_variables.scss";
14
+ @import "_layout.scss";
15
+ @import "_theme.scss";