@progress/kendo-theme-classic 5.0.0-beta.0 → 5.0.0-beta.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.
Files changed (70) hide show
  1. package/README.md +10 -17
  2. package/dist/all.css +4121 -3888
  3. package/dist/all.scss +5857 -5206
  4. package/package.json +3 -3
  5. package/scss/appbar/_variables.scss +1 -1
  6. package/scss/autocomplete/_variables.scss +0 -19
  7. package/scss/button/_variables.scss +60 -32
  8. package/scss/card/_variables.scss +4 -4
  9. package/scss/chat/_variables.scss +0 -7
  10. package/scss/checkbox/_index.scss +2 -1
  11. package/scss/checkbox/_variables.scss +65 -74
  12. package/scss/chip/_index.scss +1 -0
  13. package/scss/chip/_variables.scss +12 -12
  14. package/scss/color-preview/_variables.scss +1 -0
  15. package/scss/coloreditor/_variables.scss +3 -3
  16. package/scss/colorpicker/_index.scss +1 -2
  17. package/scss/colorpicker/_variables.scss +1 -20
  18. package/scss/combobox/_variables.scss +1 -31
  19. package/scss/dateinput/_index.scss +0 -4
  20. package/scss/dateinput/_variables.scss +1 -1
  21. package/scss/datepicker/_index.scss +1 -3
  22. package/scss/datetimepicker/_index.scss +5 -3
  23. package/scss/datetimepicker/_variables.scss +2 -1
  24. package/scss/fab/_variables.scss +129 -72
  25. package/scss/fab/index.md +0 -0
  26. package/scss/filter/_index.scss +1 -1
  27. package/scss/gantt/_index.scss +1 -1
  28. package/scss/grid/_index.scss +1 -1
  29. package/scss/grid/_variables.scss +7 -7
  30. package/scss/imageeditor/_variables.scss +1 -0
  31. package/scss/index.scss +2 -1
  32. package/scss/input/_index.scss +1 -1
  33. package/scss/input/_variables.scss +16 -26
  34. package/scss/list/_index.scss +1 -0
  35. package/scss/list/_variables.scss +212 -45
  36. package/scss/listbox/_index.scss +1 -0
  37. package/scss/listbox/_variables.scss +1 -1
  38. package/scss/menu/_index.scss +1 -0
  39. package/scss/menu/_variables.scss +61 -51
  40. package/scss/multiselect/_index.scss +1 -1
  41. package/scss/orgchart/_variables.scss +2 -2
  42. package/scss/pager/_variables.scss +1 -1
  43. package/scss/panelbar/_variables.scss +5 -0
  44. package/scss/pdf-viewer/_variables.scss +2 -5
  45. package/scss/pivotgrid/_variables.scss +0 -3
  46. package/scss/popup/_index.scss +0 -1
  47. package/scss/popup/_variables.scss +2 -2
  48. package/scss/radio/_index.scss +1 -1
  49. package/scss/radio/_variables.scss +71 -90
  50. package/scss/scheduler/_index.scss +1 -1
  51. package/scss/spreadsheet/_index.scss +1 -1
  52. package/scss/table/_variables.scss +101 -32
  53. package/scss/taskboard/_variables.scss +0 -2
  54. package/scss/timepicker/_index.scss +3 -3
  55. package/scss/timepicker/_variables.scss +1 -1
  56. package/scss/{datetime → timeselector}/_index.scss +2 -5
  57. package/scss/timeselector/_layout.scss +1 -0
  58. package/scss/timeselector/_theme.scss +1 -0
  59. package/scss/timeselector/_variables.scss +32 -0
  60. package/scss/toolbar/_variables.scss +2 -0
  61. package/scss/treeview/_variables.scss +125 -46
  62. package/scss/typography/_variables.scss +3 -3
  63. package/scss/utils/_border.scss +1 -2
  64. package/scss/virtual-scroller/_index.scss +10 -0
  65. package/scss/virtual-scroller/_layout.scss +1 -0
  66. package/scss/virtual-scroller/_theme.scss +1 -0
  67. package/scss/virtual-scroller/_variables.scss +1 -0
  68. package/scss/datetime/_layout.scss +0 -1
  69. package/scss/datetime/_theme.scss +0 -1
  70. package/scss/datetime/_variables.scss +0 -53
@@ -1,126 +1,124 @@
1
1
  // Radio button
2
2
 
3
- /// The Sizes of the radio button.
4
- /// @group radio
5
- $kendo-radio-sizes: (
6
- sm: map-get( $spacing, 3),
7
- md: map-get( $spacing, 4),
8
- lg: map-get( $spacing, 6)
9
- ) !default;
10
-
11
- /// The Border radius of the radio button.
3
+ /// Border radius of radio button.
12
4
  /// @group radio
13
5
  $kendo-radio-radius: 50% !default;
14
- /// The Border width of the radio button.
6
+ /// Border width of radio button.
15
7
  /// @group radio
16
8
  $kendo-radio-border-width: 1px !default;
17
- /// The Line height of the radio button.
18
- /// @group radio
19
- $kendo-radio-line-height: calc( #{map-get( $kendo-radio-sizes, "md" )} + #{$kendo-radio-border-width} ) !default;
20
9
 
21
- /// The Background of the radio button.
10
+ // Radio button sizes
11
+ $kendo-radio-sizes: (
12
+ sm: (
13
+ size: map-get( $spacing, 3 ),
14
+ glyph-size: ( map-get( $spacing, 3 ) - map-get( $spacing, thin ) ),
15
+ ripple-size: map-get( $spacing, 3 ) * 3
16
+ ),
17
+ md: (
18
+ size: map-get( $spacing, 4 ),
19
+ glyph-size: ( map-get( $spacing, 4 ) - map-get( $spacing, thin ) ),
20
+ ripple-size: map-get( $spacing, 4 ) * 3
21
+ ),
22
+ lg: (
23
+ size: map-get( $spacing, 5 ),
24
+ glyph-size: ( map-get( $spacing, 5 ) - map-get( $spacing, thin ) ),
25
+ ripple-size: map-get( $spacing, 5 ) * 3
26
+ )
27
+ ) !default;
28
+
29
+ /// Background color of radio button.
22
30
  /// @group radio
23
31
  $kendo-radio-bg: $kendo-checkbox-bg !default;
24
- /// The Text of the radio button.
32
+ /// Color of radio button.
25
33
  /// @group radio
26
34
  $kendo-radio-text: $kendo-checkbox-text !default;
27
- /// The Border of the radio button.
35
+ /// Border color of radio button.
28
36
  /// @group radio
29
37
  $kendo-radio-border: $kendo-checkbox-border !default;
30
38
 
31
- /// The background of hovered radio button.
39
+ /// Background color of hovered radio button.
32
40
  /// @group radio
33
41
  $kendo-radio-hover-bg: $kendo-checkbox-hover-bg !default;
34
- /// The text of hovered radio button.hover
42
+ /// Color of hovered radio button.
35
43
  /// @group radio
36
44
  $kendo-radio-hover-text: $kendo-checkbox-hover-text !default;
37
- /// The border of hovered radio button.
45
+ /// Border color of hovered radio button.
38
46
  /// @group radio
39
47
  $kendo-radio-hover-border: $kendo-checkbox-hover-border !default;
40
48
 
41
- /// The background of checked radio button.
49
+ /// Background color of checked radio button.
42
50
  /// @group radio
43
51
  $kendo-radio-checked-bg: $kendo-checkbox-checked-bg !default;
44
- /// The text of checked radio button.
52
+ /// Color of checked radio button.
45
53
  /// @group radio
46
54
  $kendo-radio-checked-text: $kendo-checkbox-checked-text !default;
47
- /// The border of checked radio button.
55
+ /// Border color of checked radio button.
48
56
  /// @group radio
49
57
  $kendo-radio-checked-border: $kendo-checkbox-checked-border !default;
50
58
 
51
- /// The background of indeterminate radio button.
59
+ /// Border color of focused radio button.
52
60
  /// @group radio
53
- $kendo-radio-indeterminate-bg: $kendo-radio-checked-bg !default;
54
- /// The text of indeterminate radio button
55
- /// @group radio
56
- $kendo-radio-indeterminate-text: $kendo-radio-checked-text !default;
57
- /// The border of indeterminate radio button.
58
- /// @group radio
59
- $kendo-radio-indeterminate-border: $kendo-radio-checked-border !default;
60
-
61
- /// The border of focused radio button.
62
- /// @group radio
63
- $kendo-radio-focus-border: $kendo-checkbox-hover-border !default;
64
- /// The shadow of focused radio button.
61
+ $kendo-radio-focus-border: $kendo-checkbox-focus-border !default;
62
+ /// Box shadow of focused radio button.
65
63
  /// @group radio
66
64
  $kendo-radio-focus-shadow: $kendo-checkbox-focus-shadow !default;
67
- /// The border of focused and checked radio button.
65
+ /// Border color of focused and checked radio button.
68
66
  /// @group radio
69
- $kendo-radio-focus-checked-border: $kendo-checkbox-checked-border !default;
70
- /// The shadow of focused and checked radio button.
67
+ $kendo-radio-focus-checked-border: $kendo-checkbox-focus-checked-border !default;
68
+ /// Box shadow of focused and checked radio button.
71
69
  /// @group radio
72
70
  $kendo-radio-focus-checked-shadow: $kendo-checkbox-focus-checked-shadow !default;
73
71
 
74
- /// The background of disabled radio button.
72
+ /// Background color of disabled radio button.
75
73
  /// @group radio
76
- $kendo-radio-disabled-bg: null !default;
77
- /// The text of disabled radio button.
74
+ $kendo-radio-disabled-bg: $kendo-checkbox-disabled-bg !default;
75
+ /// Color of disabled radio button.
78
76
  /// @group radio
79
- $kendo-radio-disabled-text: null !default;
80
- /// The border of disabled radio button.
77
+ $kendo-radio-disabled-text: $kendo-checkbox-disabled-text !default;
78
+ /// Border color of disabled radio button.
81
79
  /// @group radio
82
- $kendo-radio-disabled-border: null !default;
80
+ $kendo-radio-disabled-border: $kendo-checkbox-disabled-border !default;
83
81
 
84
- /// The background of diasbled and checked radio button.
82
+ /// Background color of disabled and checked radio button.
85
83
  /// @group radio
86
- $kendo-radio-disabled-checked-bg: null !default;
87
- /// The text of disabled and checked radio button.
84
+ $kendo-radio-disabled-checked-bg: $kendo-checkbox-disabled-checked-bg !default;
85
+ /// Color of disabled and checked radio button.
88
86
  /// @group radio
89
- $kendo-radio-disabled-checked-text: null !default;
90
- /// The border of disabled and checked radio button.
87
+ $kendo-radio-disabled-checked-text: $kendo-checkbox-disabled-checked-text !default;
88
+ /// Border color of disabled and checked radio button.
91
89
  /// @group radio
92
- $kendo-radio-disabled-checked-border: null !default;
90
+ $kendo-radio-disabled-checked-border: $kendo-checkbox-disabled-checked-border !default;
93
91
 
94
- /// The background of invalid radio button.
92
+ /// Background color of invalid radio button.
95
93
  /// @group radio
96
- $kendo-radio-invalid-bg: null !default;
97
- /// The text of invalid radio button.
94
+ $kendo-radio-invalid-bg: $kendo-checkbox-invalid-bg !default;
95
+ /// Color of invalid radio button.
98
96
  /// @group radio
99
- $kendo-radio-invalid-text: $invalid-text !default;
100
- /// The border of invalid radio button.
97
+ $kendo-radio-invalid-text: $kendo-checkbox-invalid-text !default;
98
+ /// Border color of invalid radio button.
101
99
  /// @group radio
102
- $kendo-radio-invalid-border: $invalid-border !default;
100
+ $kendo-radio-invalid-border: $kendo-checkbox-invalid-border !default;
103
101
 
104
102
 
105
103
  // Radio indicator
106
104
 
107
- /// The icon type of radio button.
105
+ /// Type of radio button indicator.
108
106
  /// @group radio
109
- $kendo-radio-icon-type: marker !default;
107
+ $kendo-radio-indicator-type: image !default;
110
108
 
111
- /// The glyph font family of radio button.
109
+ /// Glyph font family of radio button indicator.
112
110
  /// @group radio
113
111
  $kendo-radio-glyph-font-family: "WebComponentsIcons", monospace !default;
114
- /// The glyph size of radio button.
115
- /// @group radio
116
- $kendo-radio-glyph-size: 12px !default;
117
- /// The checked glyph of radio button.
112
+ /// Glyph of radio button indicator.
118
113
  /// @group radio
119
114
  $kendo-radio-checked-glyph: "\e308" !default;
120
115
 
121
- /// The checked image of radio button.
116
+ /// Image of checked radio button indicator.
122
117
  /// @group radio
123
- $kendo-radio-checked-image: null !default;
118
+ $kendo-radio-checked-image: escape-svg( url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'><circle cx='50%' cy='50%' r='4' fill='#{$kendo-radio-checked-text}'/></svg>") ) !default;
119
+ /// Image of disabled and checked radio button indicator.
120
+ /// @group radio
121
+ $kendo-radio-disabled-checked-image: null !default;
124
122
 
125
123
 
126
124
  // Radio label
@@ -132,39 +130,22 @@ $kendo-radio-label-margin-x: map-get( $spacing, 1 ) !default;
132
130
 
133
131
  // Radio list
134
132
 
135
- /// The list margin of radio button.
136
- /// @group radio
137
- $kendo-radio-list-margin: 0px !default;
138
- /// The list padding of radio button.
133
+ /// Spacing between items of horizontal radio button list.
139
134
  /// @group radio
140
- $kendo-radio-list-padding: 0px !default;
141
- /// The horizontal list item padding of radio button.
135
+ $kendo-radio-list-spacing: map-get( $spacing, 4 ) !default;
136
+ /// Horizontal padding of radio button list items.
142
137
  /// @group radio
143
138
  $kendo-radio-list-item-padding-x: 0px !default;
144
- /// The vertical list item padding of radio button.
139
+ /// Vertical padding of radio button list items.
145
140
  /// @group radio
146
141
  $kendo-radio-list-item-padding-y: $kendo-list-item-padding-y-md !default;
147
- /// The horizontal list item margin of radio button.
148
- /// @group radio
149
- $kendo-radio-list-horizontal-item-margin-x: 32px !default;
150
142
 
151
143
 
152
144
  // Radio ripple
153
145
 
154
- /// The ripple size of radio.
155
- /// @group radio
156
- $kendo-radio-ripple-size: (
157
- sm: (map-get( $kendo-radio-sizes, "sm" ) * 3),
158
- md: (map-get( $kendo-radio-sizes, "md" ) * 3),
159
- lg: (map-get( $kendo-radio-sizes, "lg" ) * 3)
160
- ) !default;
161
- /// The ripple margin of radio button.
146
+ /// Background color of radio button ripple.
162
147
  /// @group radio
163
- $kendo-radio-ripple-margin: (
164
- sm: calc(-1 * (#{map-get( $kendo-radio-sizes, "sm" )} + 2 * #{$kendo-radio-border-width})),
165
- md: calc(-1 * (#{map-get( $kendo-radio-sizes, "md" )} + 2 * #{$kendo-radio-border-width})),
166
- lg: calc(-1 * (#{map-get( $kendo-radio-sizes, "lg" )} + 2 * #{$kendo-radio-border-width}))
167
- ) !default;
168
- /// The ripple opacity of radio button.
148
+ $kendo-radio-ripple-bg: $kendo-radio-checked-bg !default;
149
+ /// Opacity of radio button ripple.
169
150
  /// @group radio
170
- $kendo-radio-ripple-opacity: .3 !default;
151
+ $kendo-radio-ripple-opacity: .25 !default;
@@ -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";
@@ -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";
@@ -1,72 +1,141 @@
1
1
  // Table
2
2
 
3
+ /// The width of the table border.
4
+ /// @group table
5
+ $kendo-table-border-width: 1px !default;
6
+ /// The width of vertical border of table cells.
7
+ /// @group table
8
+ $kendo-table-cell-vertical-border-width: $grid-cell-vertical-border-width !default;
9
+ /// The width of horizontal border of table cells.
10
+ /// @group table
11
+ $kendo-table-cell-horizontal-border-width: $grid-cell-horizontal-border-width !default;
12
+
3
13
  /// The font size of the table if no size is specified.
4
14
  /// @group table
5
15
  $kendo-table-font-size: null !default;
16
+
17
+ /// The line-height of the table if no size is specified.
18
+ /// @group table
19
+ $kendo-table-line-height: null !default;
20
+
6
21
  /// The horizontal padding of the cells in the table if no size is specified.
7
22
  /// @group table
8
- $kendo-table-padding-x: null !default;
23
+ $kendo-table-cell-padding-x: null !default;
24
+
9
25
  /// The vertical padding of the cells in the table if no size is specified.
10
26
  /// @group table
11
- $kendo-table-padding-y: null !default;
27
+ $kendo-table-cell-padding-y: null !default;
28
+
12
29
  /// The sizes of the table.
13
30
  /// @group table
14
31
  $kendo-table-sizes: (
15
32
  sm: (
16
- font-size: map-get( $spacing, sm) + 2,
17
- padding-y: map-get( $spacing, sm),
18
- padding-x: map-get( $spacing, md)
33
+ font-size: $font-size-md,
34
+ line-height: $line-height-md,
35
+ cell-padding-x: map-get( $spacing, 2 ),
36
+ cell-padding-y: map-get( $spacing, 2 ) + map-get( $spacing, thin )
19
37
  ),
20
38
  md: (
21
- font-size: map-get( $spacing, md) + 2,
22
- padding-y: map-get( $spacing, md),
23
- padding-x: map-get( $spacing, lg)
39
+ font-size: $font-size-md,
40
+ line-height: $line-height-md,
41
+ cell-padding-x: map-get( $spacing, 2 ),
42
+ cell-padding-y: map-get( $spacing, 2 ) + map-get( $spacing, thin )
24
43
  ),
25
44
  lg: (
26
- font-size: map-get( $spacing, lg),
27
- padding-y: map-get( $spacing, lg),
28
- padding-x: map-get( $spacing, xl) - 4
45
+ font-size: $font-size-md,
46
+ line-height: $line-height-md,
47
+ cell-padding-x: map-get( $spacing, 2 ),
48
+ cell-padding-y: map-get( $spacing, 2 ) + map-get( $spacing, thin )
29
49
  )
30
50
  ) !default;
31
51
 
32
52
 
33
- /// The border color of the table.
53
+ /// Background color of tables.
34
54
  /// @group table
35
- $kendo-table-border-color: $grid-header-border !default;
36
- /// The vertical width of the table border.
55
+ $kendo-table-bg: $grid-bg !default;
56
+ /// Text color of tables.
37
57
  /// @group table
38
- $kendo-table-cell-vertical-border-width: $grid-cell-vertical-border-width !default;
39
- /// The horizontal width of the table border.
58
+ $kendo-table-text: $grid-text !default;
59
+ /// Border color of tables.
40
60
  /// @group table
41
- $kendo-table-cell-horizontal-border-width: $grid-cell-horizontal-border-width !default;
61
+ $kendo-table-border: $grid-border !default;
42
62
 
43
63
 
44
- /// The inline end padding of the table.
64
+ /// Background color of table headers.
45
65
  /// @group table
46
- $kendo-table-padding-inline-end: var(--kendo-scrollbar-width) !default;
66
+ $kendo-table-header-bg: $grid-header-bg !default;
67
+ /// Text color of table headers.
68
+ /// @group table
69
+ $kendo-table-header-text: $grid-header-text !default;
70
+ /// Border color of table headers.
71
+ /// @group table
72
+ $kendo-table-header-border: $grid-header-border !default;
47
73
 
48
74
 
49
- /// The text color of the table.
75
+ /// Background color of table footers.
50
76
  /// @group table
51
- $kendo-table-text-color: $grid-header-text !default;
52
- /// The text color of the body grouping in the table.
77
+ $kendo-table-footer-bg: $grid-footer-bg !default;
78
+ /// Text color of table footers.
53
79
  /// @group table
54
- $kendo-table-body-grouping-text-color: null !default;
80
+ $kendo-table-footer-text: $grid-footer-text !default;
81
+ /// Border color of table footers.
82
+ /// @group table
83
+ $kendo-table-footer-border: $grid-footer-border !default;
84
+
55
85
 
56
- /// The background color of the table.
86
+ /// Background color of group rows in table.
57
87
  /// @group table
58
- $kendo-table-bg-color: $grid-header-bg !default;
59
- /// The background color of the even rows in the table.
88
+ $kendo-table-group-row-bg: $kendo-table-header-bg !default;
89
+ /// Text color of group rows in table.
90
+ /// @group table
91
+ $kendo-table-group-row-text: $kendo-table-header-text !default;
92
+ /// Border color of group rows in table.
93
+ /// @group table
94
+ $kendo-table-group-row-border: $kendo-table-header-border !default;
95
+
96
+
97
+ /// Background color of alternating rows in table.
60
98
  /// @group table
61
99
  $kendo-table-alt-row-bg: $grid-alt-bg !default;
100
+ /// Text color of alternating rows in table.
101
+ /// @group table
102
+ $kendo-table-alt-row-text: $grid-alt-text !default;
103
+ /// Border color of alternating rows in table.
104
+ /// @group table
105
+ $kendo-table-alt-row-border: $grid-alt-border !default;
106
+
107
+
108
+ /// Background color of hovered rows in table.
109
+ /// @group table
110
+ $kendo-table-hover-bg: $grid-hovered-bg !default;
111
+ /// Text color of hovered rows in table.
112
+ /// @group table
113
+ $kendo-table-hover-text: $grid-hovered-text !default;
114
+ /// Border color of hovered rows in table.
115
+ /// @group table
116
+ $kendo-table-hover-border: $grid-hovered-border !default;
117
+
118
+
119
+ /// Background color of focused rows in table.
120
+ /// @group table
121
+ $kendo-table-focus-bg: null !default;
122
+ /// Text color of focused rows in table.
123
+ /// @group table
124
+ $kendo-table-focus-text: null !default;
125
+ /// Border color of focused rows in table.
126
+ /// @group table
127
+ $kendo-table-focus-border: null !default;
128
+ /// Box shadow of focused rows in table.
129
+ /// @group table
130
+ $kendo-table-focus-shadow: $grid-focused-shadow !default;
62
131
 
63
132
 
64
- /// The focus state of the table.
133
+ /// Background color of selected rows in table.
65
134
  /// @group table
66
- $kendo-table-state-focus: $kendo-list-item-focus-shadow !default;
67
- /// The hover state of the table.
135
+ $kendo-table-selected-bg: $grid-selected-bg !default;
136
+ /// Text color of selected rows in table.
68
137
  /// @group table
69
- $kendo-table-state-hover: $grid-hovered-bg !default;
70
- /// The selected state of the table.
138
+ $kendo-table-selected-text: $grid-selected-text !default;
139
+ /// Border color of selected rows in table.
71
140
  /// @group table
72
- $kendo-table-state-selected: $grid-selected-bg !default;
141
+ $kendo-table-selected-border: $grid-selected-border !default;
@@ -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 "../floating-label/_index.scss";
6
+ @import "../button/_index.scss";
8
7
  @import "../popup/_index.scss";
9
- @import "../icons/_index.scss";
8
+ @import "../list/_index.scss";
9
+ @import "../timeselector/_index.scss";
10
10
 
11
11
 
12
12
  // Component
@@ -1 +1 @@
1
- // Timepicker
1
+ // Time picker
@@ -2,12 +2,9 @@
2
2
 
3
3
 
4
4
  // Dependencies
5
- @import "../common/_index.scss";
5
+ @import "../list/_index.scss";
6
6
  @import "../action-buttons/_index.scss";
7
- @import "../input/_index.scss";
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
@@ -0,0 +1 @@
1
+ @import "~@progress/kendo-theme-default/scss/timeselector/_layout.scss";
@@ -0,0 +1 @@
1
+ @import "~@progress/kendo-theme-default/scss/timeselector/_theme.scss";
@@ -0,0 +1,32 @@
1
+ // Time selector
2
+ $time-selector-border-width: 1px !default;
3
+ $time-selector-font-family: $font-family !default;
4
+ $time-selector-font-size: $font-size !default;
5
+ $time-selector-line-height: $line-height !default;
6
+
7
+ $time-selector-bg: $component-bg !default;
8
+ $time-selector-text: $component-text !default;
9
+ $time-selector-border: $component-border !default;
10
+
11
+ $time-selector-header-padding-x: map-get( $spacing, 1 ) !default;
12
+ $time-selector-header-padding-y: map-get( $spacing, 1 ) !default;
13
+ $time-selector-header-border-width: 0px !default;
14
+
15
+ $time-list-width: 4em !default;
16
+ $time-list-height: 240px !default;
17
+
18
+ $time-list-title-font-size: $font-size-sm !default;
19
+ $time-list-title-line-height: 1.5 !default;
20
+ $time-list-title-height: ( $time-list-title-font-size * $time-list-title-line-height) !default;
21
+ $time-list-title-text: $subtle-text !default;
22
+ $time-list-title-focus-text: $component-text !default;
23
+
24
+ $time-list-item-padding-x: $kendo-list-item-padding-x-md !default;
25
+ $time-list-item-padding-y: $kendo-list-item-padding-y-md !default;
26
+
27
+ $time-list-highlight-border-width: 1px 0px !default;
28
+ $time-list-highlight-height: calc( #{$time-selector-font-size * $time-selector-line-height} + #{ $time-list-item-padding-y * 2} ) !default;
29
+ $time-list-highlight-bg: $component-bg !default;
30
+ $time-list-highlight-border: $component-border !default;
31
+
32
+ $time-list-focused-bg: rgba(0, 0, 0, .04) !default;
@@ -23,3 +23,5 @@ $toolbar-gradient: null !default;
23
23
  $toolbar-shadow: null !default;
24
24
 
25
25
  $toolbar-separator-border: inherit !default;
26
+
27
+ $toolbar-input-width: 10em !default;