@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.
- package/README.md +10 -17
- package/dist/all.css +4121 -3888
- package/dist/all.scss +5857 -5206
- package/package.json +3 -3
- package/scss/appbar/_variables.scss +1 -1
- package/scss/autocomplete/_variables.scss +0 -19
- package/scss/button/_variables.scss +60 -32
- package/scss/card/_variables.scss +4 -4
- package/scss/chat/_variables.scss +0 -7
- package/scss/checkbox/_index.scss +2 -1
- package/scss/checkbox/_variables.scss +65 -74
- package/scss/chip/_index.scss +1 -0
- package/scss/chip/_variables.scss +12 -12
- package/scss/color-preview/_variables.scss +1 -0
- package/scss/coloreditor/_variables.scss +3 -3
- package/scss/colorpicker/_index.scss +1 -2
- package/scss/colorpicker/_variables.scss +1 -20
- package/scss/combobox/_variables.scss +1 -31
- 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/_variables.scss +2 -1
- package/scss/fab/_variables.scss +129 -72
- package/scss/fab/index.md +0 -0
- package/scss/filter/_index.scss +1 -1
- package/scss/gantt/_index.scss +1 -1
- package/scss/grid/_index.scss +1 -1
- package/scss/grid/_variables.scss +7 -7
- package/scss/imageeditor/_variables.scss +1 -0
- package/scss/index.scss +2 -1
- package/scss/input/_index.scss +1 -1
- package/scss/input/_variables.scss +16 -26
- package/scss/list/_index.scss +1 -0
- package/scss/list/_variables.scss +212 -45
- package/scss/listbox/_index.scss +1 -0
- package/scss/listbox/_variables.scss +1 -1
- package/scss/menu/_index.scss +1 -0
- package/scss/menu/_variables.scss +61 -51
- package/scss/multiselect/_index.scss +1 -1
- package/scss/orgchart/_variables.scss +2 -2
- package/scss/pager/_variables.scss +1 -1
- package/scss/panelbar/_variables.scss +5 -0
- package/scss/pdf-viewer/_variables.scss +2 -5
- package/scss/pivotgrid/_variables.scss +0 -3
- package/scss/popup/_index.scss +0 -1
- package/scss/popup/_variables.scss +2 -2
- package/scss/radio/_index.scss +1 -1
- package/scss/radio/_variables.scss +71 -90
- package/scss/scheduler/_index.scss +1 -1
- package/scss/spreadsheet/_index.scss +1 -1
- package/scss/table/_variables.scss +101 -32
- 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/timeselector/_layout.scss +1 -0
- package/scss/timeselector/_theme.scss +1 -0
- package/scss/timeselector/_variables.scss +32 -0
- package/scss/toolbar/_variables.scss +2 -0
- package/scss/treeview/_variables.scss +125 -46
- package/scss/typography/_variables.scss +3 -3
- package/scss/utils/_border.scss +1 -2
- package/scss/virtual-scroller/_index.scss +10 -0
- package/scss/virtual-scroller/_layout.scss +1 -0
- package/scss/virtual-scroller/_theme.scss +1 -0
- package/scss/virtual-scroller/_variables.scss +1 -0
- package/scss/datetime/_layout.scss +0 -1
- package/scss/datetime/_theme.scss +0 -1
- package/scss/datetime/_variables.scss +0 -53
|
@@ -1,126 +1,124 @@
|
|
|
1
1
|
// Radio button
|
|
2
2
|
|
|
3
|
-
///
|
|
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
|
-
///
|
|
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
|
-
|
|
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
|
-
///
|
|
32
|
+
/// Color of radio button.
|
|
25
33
|
/// @group radio
|
|
26
34
|
$kendo-radio-text: $kendo-checkbox-text !default;
|
|
27
|
-
///
|
|
35
|
+
/// Border color of radio button.
|
|
28
36
|
/// @group radio
|
|
29
37
|
$kendo-radio-border: $kendo-checkbox-border !default;
|
|
30
38
|
|
|
31
|
-
///
|
|
39
|
+
/// Background color of hovered radio button.
|
|
32
40
|
/// @group radio
|
|
33
41
|
$kendo-radio-hover-bg: $kendo-checkbox-hover-bg !default;
|
|
34
|
-
///
|
|
42
|
+
/// Color of hovered radio button.
|
|
35
43
|
/// @group radio
|
|
36
44
|
$kendo-radio-hover-text: $kendo-checkbox-hover-text !default;
|
|
37
|
-
///
|
|
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
|
-
///
|
|
49
|
+
/// Background color of checked radio button.
|
|
42
50
|
/// @group radio
|
|
43
51
|
$kendo-radio-checked-bg: $kendo-checkbox-checked-bg !default;
|
|
44
|
-
///
|
|
52
|
+
/// Color of checked radio button.
|
|
45
53
|
/// @group radio
|
|
46
54
|
$kendo-radio-checked-text: $kendo-checkbox-checked-text !default;
|
|
47
|
-
///
|
|
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
|
-
///
|
|
59
|
+
/// Border color of focused radio button.
|
|
52
60
|
/// @group radio
|
|
53
|
-
$kendo-radio-
|
|
54
|
-
///
|
|
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
|
-
///
|
|
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
|
-
///
|
|
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
|
-
///
|
|
72
|
+
/// Background color of disabled radio button.
|
|
75
73
|
/// @group radio
|
|
76
|
-
$kendo-radio-disabled-bg:
|
|
77
|
-
///
|
|
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:
|
|
80
|
-
///
|
|
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:
|
|
80
|
+
$kendo-radio-disabled-border: $kendo-checkbox-disabled-border !default;
|
|
83
81
|
|
|
84
|
-
///
|
|
82
|
+
/// Background color of disabled and checked radio button.
|
|
85
83
|
/// @group radio
|
|
86
|
-
$kendo-radio-disabled-checked-bg:
|
|
87
|
-
///
|
|
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:
|
|
90
|
-
///
|
|
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:
|
|
90
|
+
$kendo-radio-disabled-checked-border: $kendo-checkbox-disabled-checked-border !default;
|
|
93
91
|
|
|
94
|
-
///
|
|
92
|
+
/// Background color of invalid radio button.
|
|
95
93
|
/// @group radio
|
|
96
|
-
$kendo-radio-invalid-bg:
|
|
97
|
-
///
|
|
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
|
-
///
|
|
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
|
-
///
|
|
105
|
+
/// Type of radio button indicator.
|
|
108
106
|
/// @group radio
|
|
109
|
-
$kendo-radio-
|
|
107
|
+
$kendo-radio-indicator-type: image !default;
|
|
110
108
|
|
|
111
|
-
///
|
|
109
|
+
/// Glyph font family of radio button indicator.
|
|
112
110
|
/// @group radio
|
|
113
111
|
$kendo-radio-glyph-font-family: "WebComponentsIcons", monospace !default;
|
|
114
|
-
///
|
|
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
|
-
///
|
|
116
|
+
/// Image of checked radio button indicator.
|
|
122
117
|
/// @group radio
|
|
123
|
-
$kendo-radio-checked-image:
|
|
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
|
-
///
|
|
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-
|
|
141
|
-
///
|
|
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
|
-
///
|
|
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
|
-
///
|
|
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-
|
|
164
|
-
|
|
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: .
|
|
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 "../
|
|
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 "../
|
|
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:
|
|
17
|
-
|
|
18
|
-
padding-x: map-get( $spacing,
|
|
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:
|
|
22
|
-
|
|
23
|
-
padding-x: map-get( $spacing,
|
|
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:
|
|
27
|
-
|
|
28
|
-
padding-x: map-get( $spacing,
|
|
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
|
-
///
|
|
53
|
+
/// Background color of tables.
|
|
34
54
|
/// @group table
|
|
35
|
-
$kendo-table-
|
|
36
|
-
///
|
|
55
|
+
$kendo-table-bg: $grid-bg !default;
|
|
56
|
+
/// Text color of tables.
|
|
37
57
|
/// @group table
|
|
38
|
-
$kendo-table-
|
|
39
|
-
///
|
|
58
|
+
$kendo-table-text: $grid-text !default;
|
|
59
|
+
/// Border color of tables.
|
|
40
60
|
/// @group table
|
|
41
|
-
$kendo-table-
|
|
61
|
+
$kendo-table-border: $grid-border !default;
|
|
42
62
|
|
|
43
63
|
|
|
44
|
-
///
|
|
64
|
+
/// Background color of table headers.
|
|
45
65
|
/// @group table
|
|
46
|
-
$kendo-table-
|
|
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
|
-
///
|
|
75
|
+
/// Background color of table footers.
|
|
50
76
|
/// @group table
|
|
51
|
-
$kendo-table-
|
|
52
|
-
///
|
|
77
|
+
$kendo-table-footer-bg: $grid-footer-bg !default;
|
|
78
|
+
/// Text color of table footers.
|
|
53
79
|
/// @group table
|
|
54
|
-
$kendo-table-
|
|
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
|
-
///
|
|
86
|
+
/// Background color of group rows in table.
|
|
57
87
|
/// @group table
|
|
58
|
-
$kendo-table-bg
|
|
59
|
-
///
|
|
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
|
-
///
|
|
133
|
+
/// Background color of selected rows in table.
|
|
65
134
|
/// @group table
|
|
66
|
-
$kendo-table-
|
|
67
|
-
///
|
|
135
|
+
$kendo-table-selected-bg: $grid-selected-bg !default;
|
|
136
|
+
/// Text color of selected rows in table.
|
|
68
137
|
/// @group table
|
|
69
|
-
$kendo-table-
|
|
70
|
-
///
|
|
138
|
+
$kendo-table-selected-text: $grid-selected-text !default;
|
|
139
|
+
/// Border color of selected rows in table.
|
|
71
140
|
/// @group table
|
|
72
|
-
$kendo-table-
|
|
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 "../
|
|
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
|
|
@@ -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;
|