@progress/kendo-theme-default 5.8.2-dev.6 → 5.9.0

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/scss/index.scss CHANGED
@@ -71,6 +71,7 @@
71
71
  @import "datepicker/_index.scss";
72
72
  @import "timepicker/_index.scss";
73
73
  @import "datetimepicker/_index.scss";
74
+ @import "timedurationpicker/_index.scss";
74
75
  @import "daterangepicker/_index.scss";
75
76
  @import "dropdowngrid/_index.scss";
76
77
  @import "dropdownlist/_index.scss";
@@ -0,0 +1,16 @@
1
+ @import "../core/_index.scss";
2
+
3
+
4
+ // Dependencies
5
+ @import "../icons/index";
6
+ @import "../button/_index.scss";
7
+ @import "../input/_index.scss";
8
+ @import "../popup/_index.scss";
9
+ @import "../list/_index.scss";
10
+ @import "../timeselector/_index.scss";
11
+
12
+
13
+ // Component
14
+ @import "_variables.scss";
15
+ @import "_layout.scss";
16
+ @import "_theme.scss";
@@ -0,0 +1 @@
1
+ @include exports("timedurationpicker/layout") {}
@@ -0,0 +1,5 @@
1
+ @include exports("timedurationpicker/theme") {
2
+
3
+ // TimeDuration picker
4
+ .k-timedurationpicker {}
5
+ }
@@ -0,0 +1 @@
1
+ // Timedurationpicker
@@ -47,6 +47,11 @@
47
47
  }
48
48
  }
49
49
 
50
+ // Fast selection
51
+ .k-actions.k-time-fast-selection {
52
+ margin-top: 0;
53
+ }
54
+
50
55
 
51
56
  // Time selector footer
52
57
  // .k-time-footer {}
@@ -172,11 +177,6 @@
172
177
  margin: auto;
173
178
  }
174
179
 
175
- .k-rtl &
176
- [dir="rtl"] & {
177
- @include hide-scrollbar("left");
178
- }
179
-
180
180
  .k-scrollable-placeholder {
181
181
  position: absolute;
182
182
  width: 1px;
@@ -237,3 +237,17 @@
237
237
  }
238
238
 
239
239
  }
240
+
241
+ @include exports("timeselector/layout/rtl") {
242
+
243
+ .k-rtl,
244
+ [dir="rtl"] {
245
+
246
+ // Time list content
247
+ .k-time-container,
248
+ .k-time-list-content {
249
+ @include hide-scrollbar("left");
250
+ }
251
+ }
252
+
253
+ }
@@ -8,8 +8,8 @@ $time-selector-bg: $component-bg !default;
8
8
  $time-selector-text: $component-text !default;
9
9
  $time-selector-border: $component-border !default;
10
10
 
11
- $time-selector-header-padding-x: map-get( $spacing, 1 ) !default;
12
- $time-selector-header-padding-y: map-get( $spacing, 1 ) !default;
11
+ $time-selector-header-padding-x: $actions-padding-x !default;
12
+ $time-selector-header-padding-y: $actions-padding-y !default;
13
13
  $time-selector-header-border-width: 0px !default;
14
14
 
15
15
  $time-list-width: 4em !default;