@progress/kendo-theme-fluent 6.4.0-dev.1 → 6.4.0-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.
- package/dist/all.css +46 -74
- package/dist/meta/sassdoc-data.json +5980 -3674
- package/dist/meta/sassdoc-raw-data.json +3031 -1881
- package/lib/swatches/all.json +1 -1
- package/lib/swatches/fluent-main.json +1 -1
- package/package.json +6 -5
- package/scss/action-sheet/_layout.scss +0 -4
- package/scss/action-sheet/_variables.scss +0 -3
- package/scss/avatar/_variables.scss +10 -8
- package/scss/badge/_variables.scss +36 -14
- package/scss/bottom-navigation/_layout.scss +0 -4
- package/scss/bottom-navigation/_variables.scss +1 -5
- package/scss/breadcrumb/_layout.scss +0 -1
- package/scss/breadcrumb/_variables.scss +0 -4
- package/scss/button/_variables.scss +3 -3
- package/scss/chip/_layout.scss +0 -1
- package/scss/drawer/_layout.scss +0 -10
- package/scss/drawer/_variables.scss +1 -4
- package/scss/dropdowntree/_variables.scss +4 -0
- package/scss/dropzone/_layout.scss +0 -7
- package/scss/dropzone/_variables.scss +0 -3
- package/scss/fab/_variables.scss +54 -42
- package/scss/filemanager/_layout.scss +2 -12
- package/scss/filemanager/_variables.scss +0 -6
- package/scss/floating-label/_variables.scss +17 -17
- package/scss/forms/_variables.scss +62 -34
- package/scss/grid/_layout.scss +6 -2
- package/scss/list/_layout.scss +2 -0
- package/scss/list/_theme.scss +15 -0
- package/scss/list/_variables.scss +11 -0
- package/scss/map/_layout.scss +0 -1
- package/scss/map/_variables.scss +0 -3
- package/scss/pager/_variables.scss +37 -21
- package/scss/pdf-viewer/_layout.scss +0 -9
- package/scss/pdf-viewer/_variables.scss +0 -3
- package/scss/rating/_layout.scss +0 -9
- package/scss/rating/_variables.scss +0 -4
- package/scss/scrollview/_layout.scss +0 -6
- package/scss/scrollview/_variables.scss +0 -3
- package/scss/splitter/_layout.scss +0 -9
- package/scss/splitter/_variables.scss +1 -4
- package/scss/toolbar/_variables.scss +28 -16
- package/scss/treeview/_variables.scss +56 -40
- package/scss/upload/_layout.scss +2 -6
- package/scss/upload/_variables.scss +0 -4
|
@@ -105,9 +105,6 @@ $kendo-file-manager-listview-item-width: 120px !default;
|
|
|
105
105
|
/// @group filemanager
|
|
106
106
|
$kendo-file-manager-listview-item-height: 120px !default;
|
|
107
107
|
|
|
108
|
-
/// Size of the listview item icon.
|
|
109
|
-
/// @group filemanager
|
|
110
|
-
$kendo-file-manager-listview-item-icon-size: calc( var( --kendo-icon-size, 1rem ) * 3 ) !default;
|
|
111
108
|
/// Background color of the listview item icon.
|
|
112
109
|
/// @group filemanager
|
|
113
110
|
$kendo-file-manager-listview-item-icon-bg: transparent !default;
|
|
@@ -174,9 +171,6 @@ $kendo-file-manager-preview-text: inherit !default;
|
|
|
174
171
|
/// @group filemanager
|
|
175
172
|
$kendo-file-manager-preview-border: inherit !default;
|
|
176
173
|
|
|
177
|
-
/// Size of the preview icon.
|
|
178
|
-
/// @group filemanager
|
|
179
|
-
$kendo-file-manager-preview-icon-size: calc( var( --kendo-icon-size, 1rem ) * 6 ) !default;
|
|
180
174
|
/// Background color of the preview icon.
|
|
181
175
|
/// @group filemanager
|
|
182
176
|
$kendo-file-manager-preview-icon-bg: transparent !default;
|
|
@@ -1,70 +1,70 @@
|
|
|
1
1
|
@use "../core/" as *;
|
|
2
2
|
@use "../input/_variables.scss" as *;
|
|
3
3
|
|
|
4
|
-
/// The
|
|
4
|
+
/// The transformation scale of the Floating Label.
|
|
5
5
|
/// @group floating-label
|
|
6
6
|
$kendo-floating-label-scale: 1 !default;
|
|
7
7
|
|
|
8
|
-
/// The font size of the
|
|
8
|
+
/// The font size of the Floating Label.
|
|
9
9
|
/// @group floating-label
|
|
10
10
|
$kendo-floating-label-font-size: var( --kendo-font-size, inherit ) !default;
|
|
11
11
|
|
|
12
|
-
/// The
|
|
12
|
+
/// The maximum width of the Floating Label.
|
|
13
13
|
/// @group floating-label
|
|
14
14
|
$kendo-floating-label-max-width: 90% !default;
|
|
15
15
|
|
|
16
|
-
/// The font weight of the
|
|
16
|
+
/// The font weight of the Floating Label.
|
|
17
17
|
/// @group floating-label
|
|
18
18
|
$kendo-floating-label-font-weight: var( --kendo-font-weight-bold, inherit ) !default;
|
|
19
19
|
|
|
20
|
-
/// The line height of the
|
|
20
|
+
/// The line height of the Floating Label.
|
|
21
21
|
/// @group floating-label
|
|
22
22
|
$kendo-floating-label-line-height: var( --kendo-line-height, normal ) !default;
|
|
23
23
|
|
|
24
|
-
/// The height of the
|
|
24
|
+
/// The height of the Floating Label.
|
|
25
25
|
/// @group floating-label
|
|
26
26
|
$kendo-floating-label-height: calc( #{$kendo-floating-label-line-height} * #{$kendo-floating-label-font-size} ) !default;
|
|
27
27
|
|
|
28
|
-
/// The horizontal offset of the
|
|
28
|
+
/// The horizontal offset of the Floating Label.
|
|
29
29
|
/// @group floating-label
|
|
30
30
|
$kendo-floating-label-offset-x: calc( #{$kendo-input-md-padding-x} + #{$kendo-input-border-width} ) !default;
|
|
31
31
|
|
|
32
|
-
/// The vertical offset of the
|
|
32
|
+
/// The vertical offset of the Floating Label.
|
|
33
33
|
/// @group floating-label
|
|
34
34
|
$kendo-floating-label-offset-y: calc( #{$kendo-floating-label-height} + #{$kendo-input-border-width} + #{$kendo-input-md-padding-y} ) !default;
|
|
35
35
|
|
|
36
|
-
/// The
|
|
36
|
+
/// The transformation scale of the focused Floating Label.
|
|
37
37
|
/// @group floating-label
|
|
38
38
|
$kendo-floating-label-focus-scale: 1 !default;
|
|
39
39
|
|
|
40
|
-
/// The horizontal
|
|
40
|
+
/// The horizontal offset of the focused Floating Label.
|
|
41
41
|
/// @group floating-label
|
|
42
42
|
$kendo-floating-label-focus-offset-x: 0 !default;
|
|
43
43
|
|
|
44
|
-
/// The vertical
|
|
44
|
+
/// The vertical offset of the focused Floating Label.
|
|
45
45
|
/// @group floating-label
|
|
46
46
|
$kendo-floating-label-focus-offset-y: 0 !default;
|
|
47
47
|
|
|
48
|
-
/// The transition of the
|
|
48
|
+
/// The transition of the Floating Label.
|
|
49
49
|
/// @group floating-label
|
|
50
50
|
$kendo-floating-label-transition: .2s ease-out !default;
|
|
51
51
|
|
|
52
|
-
/// The background color of the
|
|
52
|
+
/// The background color of the Floating Label.
|
|
53
53
|
/// @group floating-label
|
|
54
54
|
$kendo-floating-label-bg: inherit !default;
|
|
55
55
|
|
|
56
|
-
/// The text color of the
|
|
56
|
+
/// The text color of the Floating Label.
|
|
57
57
|
/// @group floating-label
|
|
58
58
|
$kendo-floating-label-text: inherit !default;
|
|
59
59
|
|
|
60
|
-
/// The
|
|
60
|
+
/// The background color of the focused Floating Label.
|
|
61
61
|
/// @group floating-label
|
|
62
62
|
$kendo-floating-label-focus-bg: inherit !default;
|
|
63
63
|
|
|
64
|
-
/// The
|
|
64
|
+
/// The text color of the focused Floating Label.
|
|
65
65
|
/// @group floating-label
|
|
66
66
|
$kendo-floating-label-focus-text: inherit !default;
|
|
67
67
|
|
|
68
|
-
/// The invalid text color of the
|
|
68
|
+
/// The invalid text color of the Floating Label.
|
|
69
69
|
/// @group floating-label
|
|
70
70
|
$kendo-floating-label-invalid-text: var( --kendo-invalid-text, #{$kendo-invalid-text} ) !default;
|
|
@@ -1,63 +1,69 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/" as *;
|
|
3
3
|
|
|
4
|
-
/// The padding of the inline
|
|
4
|
+
/// The padding of the inline Form.
|
|
5
5
|
/// @group form
|
|
6
6
|
$kendo-form-spacer: ( $kendo-padding-md-x * 2 ) !default;
|
|
7
7
|
|
|
8
|
-
/// The font size of the
|
|
8
|
+
/// The font size of the Form.
|
|
9
9
|
/// @group form
|
|
10
10
|
$kendo-form-font-size: var( --kendo-font-size, inherit ) !default;
|
|
11
11
|
|
|
12
|
-
/// The line
|
|
12
|
+
/// The line height of the Form.
|
|
13
13
|
/// @group form
|
|
14
14
|
$kendo-form-line-height: var( --kendo-line-height, normal ) !default;
|
|
15
|
+
/// The line height of the Form in em units.
|
|
16
|
+
/// @group form
|
|
15
17
|
$kendo-form-line-height-em: $kendo-line-height-em !default;
|
|
18
|
+
/// The line height of the small Form.
|
|
19
|
+
/// @group form
|
|
16
20
|
$kendo-form-sm-line-height: var( --kendo-line-height-sm, normal ) !default;
|
|
21
|
+
/// The line height of the large Form.
|
|
22
|
+
/// @group form
|
|
17
23
|
$kendo-form-lg-line-height: var( --kendo-line-height-lg, normal ) !default;
|
|
18
24
|
|
|
19
|
-
/// The margin of the
|
|
25
|
+
/// The margin of the Form fieldset.
|
|
20
26
|
/// @group form
|
|
21
27
|
$kendo-form-fieldset-margin: 2em 0 0 !default;
|
|
22
28
|
|
|
23
|
-
/// The padding of the
|
|
29
|
+
/// The padding of the Form fieldset.
|
|
24
30
|
/// @group form
|
|
25
31
|
$kendo-form-fieldset-padding: 0px !default;
|
|
26
32
|
|
|
27
|
-
/// The margin of the
|
|
33
|
+
/// The margin of the Form legend.
|
|
28
34
|
/// @group form
|
|
29
35
|
$kendo-form-legend-margin: 0 0 map.get( $kendo-spacing, 3 ) !default;
|
|
30
36
|
|
|
31
|
-
/// The padding of the
|
|
37
|
+
/// The padding of the Form legend.
|
|
32
38
|
/// @group form
|
|
33
39
|
$kendo-form-legend-padding: 0px !default;
|
|
34
40
|
|
|
35
|
-
/// The border width of the
|
|
41
|
+
/// The border width of the Form legend.
|
|
36
42
|
/// @group form
|
|
37
43
|
$kendo-form-legend-border-width: 0 0 map.get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
|
|
38
44
|
|
|
39
|
-
/// The border style of the
|
|
45
|
+
/// The border style of the Form legend.
|
|
40
46
|
/// @group form
|
|
41
47
|
$kendo-form-legend-border-style: solid !default;
|
|
42
48
|
|
|
43
|
-
/// The border color of the
|
|
49
|
+
/// The border color of the Form legend.
|
|
44
50
|
/// @group form
|
|
45
51
|
$kendo-form-legend-border-color: var( --kendo-component-border, initial ) !default;
|
|
46
52
|
|
|
47
|
-
/// The width of the
|
|
53
|
+
/// The width of the Form legend.
|
|
48
54
|
/// @group form
|
|
49
55
|
$kendo-form-legend-width: 100% !default;
|
|
50
56
|
|
|
51
|
-
/// The font size of the
|
|
57
|
+
/// The font size of the Form legend.
|
|
52
58
|
/// @group form
|
|
53
59
|
$kendo-form-legend-font-size: var( --kendo-font-size, inherit ) !default;
|
|
54
60
|
|
|
55
|
-
/// The text capitalization of the
|
|
61
|
+
/// The text capitalization of the Form legend.
|
|
56
62
|
/// @group form
|
|
57
63
|
$kendo-form-legend-text-transform: uppercase !default;
|
|
58
64
|
|
|
59
65
|
|
|
60
|
-
/// The bottom margin of the
|
|
66
|
+
/// The bottom margin of the Form label.
|
|
61
67
|
/// @group form
|
|
62
68
|
$kendo-form-label-margin-bottom: map.get( $kendo-spacing, 2 ) !default;
|
|
63
69
|
|
|
@@ -65,91 +71,113 @@ $kendo-form-label-margin-bottom: map.get( $kendo-spacing, 2 ) !default;
|
|
|
65
71
|
/// @group form
|
|
66
72
|
$kendo-form-label-font-weight: var( --kendo-font-weight-bold, inherit ) !default;
|
|
67
73
|
|
|
68
|
-
/// The horizontal margin of the
|
|
74
|
+
/// The horizontal margin of the Form buttons.
|
|
69
75
|
/// @group form
|
|
70
76
|
$kendo-form-button-margin-x: map.get( $kendo-spacing, 2 ) !default;
|
|
71
77
|
|
|
72
|
-
/// The font size of the
|
|
78
|
+
/// The font size of the Form hint.
|
|
73
79
|
/// @group form
|
|
74
80
|
$kendo-form-hint-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
75
81
|
|
|
76
|
-
/// The font style of the
|
|
82
|
+
/// The font style of the Form hint.
|
|
77
83
|
/// @group form
|
|
78
84
|
$kendo-form-hint-font-style: normal !default;
|
|
79
85
|
|
|
80
|
-
/// The top margin of the
|
|
86
|
+
/// The top margin of the Form hint.
|
|
81
87
|
/// @group form
|
|
82
88
|
$kendo-form-hint-margin-top: map.get( $kendo-spacing, 1 ) !default;
|
|
83
89
|
|
|
84
|
-
/// The text color of the
|
|
90
|
+
/// The text color of the Form hint.
|
|
85
91
|
/// @group form
|
|
86
92
|
$kendo-form-hint-text: get-theme-color-var( neutral-130 ) !default;
|
|
87
93
|
|
|
88
|
-
///
|
|
94
|
+
/// The row spacing of the small Form.
|
|
89
95
|
/// @group form
|
|
90
96
|
$kendo-form-sm-rows-spacing: map.get( $kendo-spacing, 3 ) !default;
|
|
91
|
-
///
|
|
97
|
+
/// The row spacing of the medium Form.
|
|
92
98
|
/// @group form
|
|
93
99
|
$kendo-form-md-rows-spacing: $kendo-form-sm-rows-spacing !default;
|
|
94
|
-
///
|
|
100
|
+
/// The row spacing of the large Form.
|
|
95
101
|
/// @group form
|
|
96
102
|
$kendo-form-lg-rows-spacing: $kendo-form-sm-rows-spacing !default;
|
|
97
103
|
|
|
98
|
-
/// The margin of the
|
|
104
|
+
/// The margin of the Form separator.
|
|
99
105
|
/// @group form
|
|
100
106
|
$kendo-form-separator-margin: map.get( $kendo-spacing, 3 ) 0 0 !default;
|
|
101
107
|
|
|
102
|
-
/// The border color of the
|
|
108
|
+
/// The border color of the Form separator.
|
|
103
109
|
/// @group form
|
|
104
110
|
$kendo-form-separator-border-color: $kendo-form-legend-border-color !default;
|
|
105
111
|
|
|
106
|
-
/// The top padding of the horizontal
|
|
112
|
+
/// The top padding of the label in the horizontal Form.
|
|
107
113
|
/// @group form
|
|
108
114
|
$kendo-horizontal-form-label-padding-top: map.get( $kendo-spacing, 1.5 ) !default;
|
|
109
115
|
|
|
110
|
-
/// The horizontal margin of the horizontal
|
|
116
|
+
/// The horizontal margin of the label in the horizontal Form.
|
|
111
117
|
/// @group form
|
|
112
118
|
$kendo-horizontal-form-label-margin-x: map.get( $kendo-spacing, 2 ) !default;
|
|
113
119
|
|
|
114
|
-
/// The width of the horizontal
|
|
120
|
+
/// The width of the label in the horizontal Form.
|
|
115
121
|
/// @group form
|
|
116
122
|
$kendo-horizontal-form-label-width: 25% !default;
|
|
117
123
|
|
|
118
|
-
/// The horizontal alignment of the
|
|
124
|
+
/// The horizontal alignment of the label in the horizontal Form.
|
|
125
|
+
/// @group form
|
|
119
126
|
$kendo-horizontal-form-label-align: flex-end !default;
|
|
120
127
|
|
|
121
|
-
/// The
|
|
128
|
+
/// The maximum width of the field wrap in the horizontal Form.
|
|
122
129
|
/// @group form
|
|
123
130
|
$kendo-horizontal-form-field-wrap-max-width: calc( ( 100% - #{$kendo-horizontal-form-label-width} ) - #{$kendo-horizontal-form-label-margin-x} ) !default;
|
|
124
131
|
|
|
125
|
-
/// The width of the
|
|
132
|
+
/// The width of the inline Form element.
|
|
126
133
|
/// @group form
|
|
127
134
|
$kendo-inline-form-element-width: 25% !default;
|
|
128
135
|
|
|
129
|
-
/// The invalid text color of the
|
|
136
|
+
/// The invalid text color of the Form.
|
|
130
137
|
/// @group form
|
|
131
138
|
$kendo-forms-invalid-color: var( --kendo-invalid-text, initial ) !default;
|
|
132
139
|
|
|
133
140
|
|
|
134
|
-
|
|
141
|
+
/// The horizontal margin of the optional label in the Form.
|
|
142
|
+
/// @group form
|
|
135
143
|
$kendo-label-optional-margin-x: map.get( $kendo-spacing, 1.5 ) !default;
|
|
144
|
+
/// The font size of the optional label in the Form.
|
|
145
|
+
/// @group form
|
|
136
146
|
$kendo-label-optional-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
147
|
+
/// The font style of the optional label in the Form.
|
|
148
|
+
/// @group form
|
|
137
149
|
$kendo-label-optional-font-style: normal !default;
|
|
138
150
|
|
|
139
151
|
|
|
140
|
-
|
|
152
|
+
/// The margin of the Form fieldset.
|
|
153
|
+
/// @group form
|
|
141
154
|
$kendo-fieldset-margin: map.get( $kendo-spacing, 7.5 ) !default;
|
|
155
|
+
/// The font size of the Form fieldset.
|
|
156
|
+
/// @group form
|
|
142
157
|
$kendo-fieldset-font-size: var( --kendo-font-size-xl, inherit ) !default;
|
|
143
158
|
|
|
159
|
+
/// The background color of the Form fieldset.
|
|
160
|
+
/// @group form
|
|
144
161
|
$kendo-fieldset-bg: transparent !default;
|
|
162
|
+
/// The text color of the Form fieldset.
|
|
163
|
+
/// @group form
|
|
145
164
|
$kendo-fieldset-text: inherit !default;
|
|
165
|
+
/// The border color of the Form fieldset.
|
|
166
|
+
/// @group form
|
|
146
167
|
$kendo-fieldset-border: initial !default;
|
|
147
168
|
|
|
169
|
+
/// The background color of the Form legend.
|
|
170
|
+
/// @group form
|
|
148
171
|
$kendo-fieldset-legend-bg: transparent !default;
|
|
172
|
+
/// The text color of the Form legend.
|
|
173
|
+
/// @group form
|
|
149
174
|
$kendo-fieldset-legend-text: get-theme-color-var( neutral-130 ) !default;
|
|
175
|
+
/// The border color of the Form legend.
|
|
176
|
+
/// @group form
|
|
150
177
|
$kendo-fieldset-legend-border: initial !default;
|
|
151
178
|
|
|
152
|
-
|
|
179
|
+
/// The sizes map for the Form.
|
|
180
|
+
/// @group form
|
|
153
181
|
$kendo-form-sizes: (
|
|
154
182
|
sm: (
|
|
155
183
|
form-rows-spacing: $kendo-form-sm-rows-spacing
|
package/scss/grid/_layout.scss
CHANGED
|
@@ -190,11 +190,15 @@
|
|
|
190
190
|
> .k-svg-icon {
|
|
191
191
|
padding-inline: 0;
|
|
192
192
|
padding-block: var( --INTERNAL--kendo-grid-cell-padding-y, 0 );
|
|
193
|
-
width: 100%;
|
|
194
|
-
height: 100%;
|
|
195
193
|
display: inline-block;
|
|
196
194
|
outline: 0;
|
|
197
195
|
}
|
|
196
|
+
|
|
197
|
+
> .k-icon {
|
|
198
|
+
width: 100%;
|
|
199
|
+
height: 100%;
|
|
200
|
+
}
|
|
201
|
+
|
|
198
202
|
}
|
|
199
203
|
|
|
200
204
|
.k-hierarchy-cell + .k-grid-content-sticky {
|
package/scss/list/_layout.scss
CHANGED
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
margin: 0;
|
|
20
20
|
padding: 0;
|
|
21
21
|
box-sizing: border-box;
|
|
22
|
+
font-family: var( --kendo-list-font-family, #{$kendo-list-font-family} );
|
|
22
23
|
font-size: var( --INTERNAL--kendo-list-font-size, 1rem );
|
|
23
24
|
line-height: var( --INTERNAL--kendo-list-line-height, normal );
|
|
24
25
|
display: flex;
|
|
@@ -124,6 +125,7 @@
|
|
|
124
125
|
}
|
|
125
126
|
.k-list-optionlabel {
|
|
126
127
|
@extend .k-list-item !optional;
|
|
128
|
+
column-gap: 0;
|
|
127
129
|
}
|
|
128
130
|
|
|
129
131
|
|
package/scss/list/_theme.scss
CHANGED
|
@@ -76,6 +76,21 @@
|
|
|
76
76
|
);
|
|
77
77
|
}
|
|
78
78
|
|
|
79
|
+
// Option Label
|
|
80
|
+
.k-list-optionlabel,
|
|
81
|
+
.k-list-optionlabel.k-hover,
|
|
82
|
+
.k-list-optionlabel:hover {
|
|
83
|
+
@include fill(
|
|
84
|
+
$color: var( --kendo-list-option-label-text, #{$kendo-list-option-label-text} )
|
|
85
|
+
);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
.k-list-optionlabel:disabled,
|
|
89
|
+
.k-list-optionlabel.k-disabled {
|
|
90
|
+
@include fill(
|
|
91
|
+
$color: var( --kendo-list-option-label-disabled-text, #{$kendo-list-option-label-disabled-text} )
|
|
92
|
+
)
|
|
93
|
+
}
|
|
79
94
|
|
|
80
95
|
// List group item
|
|
81
96
|
.k-list-group-item {
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
@use "sass:map";
|
|
2
2
|
@use "../core/" as *;
|
|
3
3
|
|
|
4
|
+
/// The font family of the List components.
|
|
5
|
+
/// @group list
|
|
6
|
+
$kendo-list-font-family: var( --kendo-font-family, inherit) !default;
|
|
7
|
+
|
|
4
8
|
/// The font size of the List component.
|
|
5
9
|
/// @group list
|
|
6
10
|
$kendo-list-sm-font-size: var( --kendo-font-size, inherit ) !default;
|
|
@@ -272,3 +276,10 @@ $kendo-list-group-item-shadow: none !default;
|
|
|
272
276
|
/// The text color of the 'No Data' text.
|
|
273
277
|
/// @group list
|
|
274
278
|
$kendo-list-no-data-text: get-theme-color-var( neutral-160 ) !default;
|
|
279
|
+
|
|
280
|
+
/// The color of the 'Option Label' text.
|
|
281
|
+
/// @group list
|
|
282
|
+
$kendo-list-option-label-text: $kendo-subtle-text !default;
|
|
283
|
+
/// The color of the disabled 'Option Label' text.
|
|
284
|
+
/// @group list
|
|
285
|
+
$kendo-list-option-label-disabled-text: $kendo-disabled-text !default;
|
package/scss/map/_layout.scss
CHANGED
package/scss/map/_variables.scss
CHANGED
|
@@ -80,9 +80,6 @@ $kendo-map-attribution-font-size: calc( #{$kendo-map-font-size} * .75 ) !default
|
|
|
80
80
|
/// @group map
|
|
81
81
|
$kendo-map-attribution-bg: $kendo-color-white !default;
|
|
82
82
|
|
|
83
|
-
/// Map marker size.
|
|
84
|
-
/// @group map
|
|
85
|
-
$kendo-map-marker-size: var( --kendo-icon-size-xxl, 2rem ) !default;
|
|
86
83
|
/// Map marker fill color.
|
|
87
84
|
/// @group map
|
|
88
85
|
$kendo-map-marker-fill: get-theme-color-var( primary-100 ) !default;
|
|
@@ -2,86 +2,102 @@
|
|
|
2
2
|
@use "../core/" as *;
|
|
3
3
|
@use "../button/_variables.scss" as *;
|
|
4
4
|
|
|
5
|
-
///
|
|
5
|
+
/// The horizontal padding of the Pager.
|
|
6
6
|
/// @group pager
|
|
7
7
|
$kendo-pager-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
8
|
+
/// The horizontal padding of the small Pager.
|
|
9
|
+
/// @group pager
|
|
8
10
|
$kendo-pager-sm-padding-x: map.get( $kendo-spacing, 1.5 ) !default;
|
|
11
|
+
/// The horizontal padding of the medium Pager.
|
|
12
|
+
/// @group pager
|
|
9
13
|
$kendo-pager-md-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
14
|
+
/// The horizontal padding of the large Pager.
|
|
15
|
+
/// @group pager
|
|
10
16
|
$kendo-pager-lg-padding-x: map.get( $kendo-spacing, 2.5 ) !default;
|
|
11
17
|
|
|
12
|
-
///
|
|
18
|
+
/// The vertical padding of the Pager.
|
|
13
19
|
/// @group pager
|
|
14
20
|
$kendo-pager-padding-y: map.get( $kendo-spacing, 2 ) !default;
|
|
21
|
+
/// The vertical padding of the small Pager.
|
|
22
|
+
/// @group pager
|
|
15
23
|
$kendo-pager-sm-padding-y: $kendo-pager-sm-padding-x !default;
|
|
24
|
+
/// The vertical padding of the medium Pager.
|
|
25
|
+
/// @group pager
|
|
16
26
|
$kendo-pager-md-padding-y: $kendo-pager-md-padding-x !default;
|
|
27
|
+
/// The vertical padding of the large Pager.
|
|
28
|
+
/// @group pager
|
|
17
29
|
$kendo-pager-lg-padding-y: $kendo-pager-lg-padding-x !default;
|
|
18
|
-
///
|
|
30
|
+
/// The border width of the Pager.
|
|
19
31
|
/// @group pager
|
|
20
32
|
$kendo-pager-border-width: 1px !default;
|
|
21
33
|
|
|
22
|
-
///
|
|
34
|
+
/// The font family of the Pager.
|
|
23
35
|
/// @group pager
|
|
24
36
|
$kendo-pager-font-family: var( --kendo-font-family, normal ) !default;
|
|
25
|
-
///
|
|
37
|
+
/// The font size of the Pager.
|
|
26
38
|
/// @group pager
|
|
27
39
|
$kendo-pager-font-size: var( --kendo-font-size, inherit ) !default;
|
|
28
|
-
///
|
|
40
|
+
/// The line height of the Pager.
|
|
29
41
|
/// @group pager
|
|
30
42
|
$kendo-pager-line-height: var( --kendo-line-height, normal ) !default;
|
|
31
43
|
|
|
32
|
-
///
|
|
44
|
+
/// The background color of the Pager.
|
|
33
45
|
/// @group pager
|
|
34
46
|
$kendo-pager-bg: get-theme-color-var( neutral-10 ) !default;
|
|
35
|
-
///
|
|
47
|
+
/// The text color of the Pager.
|
|
36
48
|
/// @group pager
|
|
37
49
|
$kendo-pager-text: var( --kendo-component-text, inherit ) !default;
|
|
38
|
-
///
|
|
50
|
+
/// The border color of the Pager.
|
|
39
51
|
/// @group pager
|
|
40
52
|
$kendo-pager-border: var( --kendo-component-border, inherit ) !default;
|
|
41
53
|
|
|
42
|
-
///
|
|
54
|
+
/// The background color of the focused Pager.
|
|
43
55
|
/// @group pager
|
|
44
56
|
$kendo-pager-focus-bg: var( --kendo-pager-bg, #{$kendo-pager-bg}) !default;
|
|
45
|
-
///
|
|
57
|
+
/// The text color of the focused Pager.
|
|
46
58
|
/// @group pager
|
|
47
59
|
$kendo-pager-focus-text: var( --kendo-pager-text, #{$kendo-pager-text}) !default;
|
|
48
|
-
///
|
|
60
|
+
/// The border color of the focused Pager.
|
|
49
61
|
/// @group pager
|
|
50
62
|
$kendo-pager-focus-border: get-theme-color-var( neutral-130 ) !default;
|
|
51
63
|
|
|
52
|
-
///
|
|
64
|
+
/// The spacing between the Pager sections.
|
|
53
65
|
/// @group pager
|
|
54
66
|
$kendo-pager-section-spacing: 1em !default;
|
|
55
67
|
|
|
56
|
-
///
|
|
68
|
+
/// The border radius of the Pager items.
|
|
57
69
|
/// @group pager
|
|
58
70
|
$kendo-pager-item-border-radius: 0 !default;
|
|
59
|
-
///
|
|
71
|
+
/// The spacing around the Pager items.
|
|
60
72
|
/// @group pager
|
|
61
73
|
$kendo-pager-item-spacing: null !default;
|
|
62
74
|
|
|
63
|
-
///
|
|
75
|
+
/// The spacing between the item groups of the small Pager.
|
|
64
76
|
/// @group pager
|
|
65
77
|
$kendo-pager-sm-item-group-spacing: map.get( $kendo-spacing, 2 ) !default;
|
|
78
|
+
/// The spacing between the item groups of the medium Pager.
|
|
79
|
+
/// @group pager
|
|
66
80
|
$kendo-pager-md-item-group-spacing: map.get( $kendo-spacing, 2 ) !default;
|
|
81
|
+
/// The spacing between the item groups of the large Pager.
|
|
82
|
+
/// @group pager
|
|
67
83
|
$kendo-pager-lg-item-group-spacing: map.get( $kendo-spacing, 2 ) !default;
|
|
68
84
|
|
|
69
|
-
///
|
|
85
|
+
/// The text color of the Pagers' sizes label.
|
|
70
86
|
/// @group pager
|
|
71
87
|
$kendo-pager-sizes-label-text: get-theme-color-var( neutral-190 ) !default;
|
|
72
88
|
|
|
73
|
-
///
|
|
89
|
+
/// The text color of the Pagers' info label.
|
|
74
90
|
/// @group pager
|
|
75
91
|
$kendo-pager-info-label-text: get-theme-color-var( neutral-130 ) !default;
|
|
76
92
|
|
|
77
|
-
///
|
|
93
|
+
/// The width of the Inputs in the Pager.
|
|
78
94
|
/// @group pager
|
|
79
95
|
$kendo-pager-input-width: 5em !default;
|
|
80
|
-
///
|
|
96
|
+
/// The width of the DropDowns in the Pager.
|
|
81
97
|
/// @group pager
|
|
82
98
|
$kendo-pager-dropdown-width: 5em !default;
|
|
83
99
|
|
|
84
|
-
///
|
|
100
|
+
/// The sizes map of the Pager.
|
|
85
101
|
/// @group pager
|
|
86
102
|
$kendo-pager-sizes: (
|
|
87
103
|
sm: (
|
|
@@ -114,15 +114,6 @@
|
|
|
114
114
|
border: 0;
|
|
115
115
|
background: none;
|
|
116
116
|
}
|
|
117
|
-
|
|
118
|
-
> .k-icon {
|
|
119
|
-
font-size: var( --kendo-pdf-viewer-icon-size, #{$kendo-pdf-viewer-icon-size} );
|
|
120
|
-
}
|
|
121
|
-
|
|
122
|
-
> .k-svg-icon {
|
|
123
|
-
width: var( --kendo-pdf-viewer-icon-size, #{$kendo-pdf-viewer-icon-size} );
|
|
124
|
-
height: var( --kendo-pdf-viewer-icon-size, #{$kendo-pdf-viewer-icon-size} );
|
|
125
|
-
}
|
|
126
117
|
}
|
|
127
118
|
|
|
128
119
|
}
|
|
@@ -97,9 +97,6 @@ $kendo-pdf-viewer-search-highlight-bg: var( --kendo-component-text, inherit ) !d
|
|
|
97
97
|
/// @group pdf-viewer
|
|
98
98
|
$kendo-pdf-viewer-search-highlight-mark-bg: yellow !default;
|
|
99
99
|
|
|
100
|
-
/// Size of the PDF viewer icon.
|
|
101
|
-
/// @group pdf-viewer
|
|
102
|
-
$kendo-pdf-viewer-icon-size: $kendo-dropzone-icon-size !default;
|
|
103
100
|
/// Text color of the PDF viewer icon.
|
|
104
101
|
/// @group pdf-viewer
|
|
105
102
|
$kendo-pdf-viewer-icon-text: $kendo-dropzone-icon-text !default;
|
package/scss/rating/_layout.scss
CHANGED
|
@@ -53,15 +53,6 @@
|
|
|
53
53
|
pointer-events: none;
|
|
54
54
|
}
|
|
55
55
|
|
|
56
|
-
.k-icon {
|
|
57
|
-
font-size: var( --kendo-rating-icon-size, #{$kendo-rating-icon-size} );
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
.k-svg-icon {
|
|
61
|
-
width: var( --kendo-rating-icon-size, #{$kendo-rating-icon-size} );
|
|
62
|
-
height: var( --kendo-rating-icon-size, #{$kendo-rating-icon-size} );
|
|
63
|
-
}
|
|
64
|
-
|
|
65
56
|
svg {
|
|
66
57
|
fill: currentColor;
|
|
67
58
|
}
|
|
@@ -45,7 +45,3 @@ $kendo-rating-item-selected-text: get-theme-color-var( neutral-160 ) !default;
|
|
|
45
45
|
/// Selected hover color of the rating item.
|
|
46
46
|
/// @group rating
|
|
47
47
|
$kendo-rating-item-selected-hover-text: get-theme-color-var( primary-120 ) !default;
|
|
48
|
-
|
|
49
|
-
/// Icon size of the rating.
|
|
50
|
-
/// @group rating
|
|
51
|
-
$kendo-rating-icon-size: calc( var( --kendo-icon-size, 1rem ) * #{$kendo-line-height-md} ) !default;
|
|
@@ -157,14 +157,8 @@
|
|
|
157
157
|
margin: 0;
|
|
158
158
|
padding: 0;
|
|
159
159
|
vertical-align: middle;
|
|
160
|
-
font-size: var( --kendo-scrollview-arrow-icon-size, #{$kendo-scrollview-arrow-icon-size} );
|
|
161
160
|
font-weight: normal;
|
|
162
161
|
}
|
|
163
|
-
|
|
164
|
-
.k-svg-icon {
|
|
165
|
-
width: var( --kendo-scrollview-arrow-icon-size, #{$kendo-scrollview-arrow-icon-size} );
|
|
166
|
-
height: var( --kendo-scrollview-arrow-icon-size, #{$kendo-scrollview-arrow-icon-size} );
|
|
167
|
-
}
|
|
168
162
|
}
|
|
169
163
|
|
|
170
164
|
.k-scrollview-prev {
|
|
@@ -82,9 +82,6 @@ $kendo-scrollview-pager-light-bg: rgba( $kendo-color-white, .4 ) !default;
|
|
|
82
82
|
/// @group scrollview
|
|
83
83
|
$kendo-scrollview-pager-dark-bg: rgba( $kendo-color-black, .4 ) !default;
|
|
84
84
|
|
|
85
|
-
/// Scrollview arrow arrows size.
|
|
86
|
-
/// @group scrollview
|
|
87
|
-
$kendo-scrollview-arrow-icon-size: calc( var( --kendo-icon-size-xxl, 2rem ) * 2 ) !default;
|
|
88
85
|
/// Scrollview navigation text color.
|
|
89
86
|
/// @group scrollview
|
|
90
87
|
$kendo-scrollview-navigation-color: $kendo-color-white !default;
|
|
@@ -61,15 +61,6 @@
|
|
|
61
61
|
cursor: pointer;
|
|
62
62
|
}
|
|
63
63
|
|
|
64
|
-
.k-icon {
|
|
65
|
-
font-size: var( --kendo-splitter-resize-icon-size, #{$kendo-splitter-resize-icon-size} );
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
.k-svg-icon {
|
|
69
|
-
width: var( --kendo-splitter-resize-icon-size, #{$kendo-splitter-resize-icon-size} );
|
|
70
|
-
height: var( --kendo-splitter-resize-icon-size, #{$kendo-splitter-resize-icon-size} );
|
|
71
|
-
}
|
|
72
|
-
|
|
73
64
|
}
|
|
74
65
|
|
|
75
66
|
.k-splitbar-draggable-horizontal { cursor: col-resize; }
|