@progress/kendo-theme-fluent 6.4.0-dev.0 → 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 +195 -130
- package/dist/meta/sassdoc-data.json +5971 -3665
- package/dist/meta/sassdoc-raw-data.json +3027 -1877
- 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 +11 -6
- package/scss/action-sheet/_variables.scss +0 -3
- package/scss/adaptive/_layout.scss +2 -6
- 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 +3 -3
- package/scss/drawer/_variables.scss +6 -3
- package/scss/dropdowntree/_variables.scss +4 -0
- package/scss/dropzone/_layout.scss +0 -7
- package/scss/dropzone/_variables.scss +0 -3
- package/scss/fab/_layout.scss +3 -4
- package/scss/fab/_variables.scss +58 -52
- 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/icon/_layout.scss +10 -7
- package/scss/input/_layout.scss +5 -4
- package/scss/input/_variables.scss +2 -2
- package/scss/list/_layout.scss +2 -0
- package/scss/list/_theme.scss +15 -0
- package/scss/list/_variables.scss +11 -0
- package/scss/listbox/_layout.scss +2 -5
- package/scss/map/_layout.scss +0 -1
- package/scss/map/_variables.scss +0 -3
- package/scss/pager/_layout.scss +1 -12
- 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 +13 -8
- package/scss/scrollview/_variables.scss +0 -3
- package/scss/splitter/_layout.scss +0 -9
- package/scss/splitter/_variables.scss +1 -4
- package/scss/spreadsheet/_layout.scss +2 -1
- 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
package/scss/fab/_variables.scss
CHANGED
|
@@ -3,127 +3,133 @@
|
|
|
3
3
|
@use "../core/" as *;
|
|
4
4
|
@use "../button/_variables.scss" as *;
|
|
5
5
|
|
|
6
|
-
///
|
|
6
|
+
/// The width of the border around the FAB.
|
|
7
7
|
/// @group floating-action-button
|
|
8
8
|
$kendo-fab-border-width: 1px !default;
|
|
9
|
-
///
|
|
9
|
+
/// The border radius of the FAB.
|
|
10
10
|
/// @group floating-action-button
|
|
11
11
|
$kendo-fab-border-radius: var( --kendo-border-radius-md, 0 ) !default;
|
|
12
|
-
///
|
|
12
|
+
/// The font family of the FAB.
|
|
13
13
|
/// @group floating-action-button
|
|
14
14
|
$kendo-fab-font-family: var( --kendo-font-family, inherit ) !default;
|
|
15
|
-
///
|
|
15
|
+
/// The font size of the FAB.
|
|
16
16
|
/// @group floating-action-button
|
|
17
17
|
$kendo-fab-font-size: var( --kendo-font-size, inherit ) !default;
|
|
18
|
-
///
|
|
18
|
+
/// The line height of the FAB.
|
|
19
19
|
/// @group floating-action-button
|
|
20
20
|
$kendo-fab-line-height: var( --kendo-line-height, normal ) !default;
|
|
21
21
|
|
|
22
|
-
///
|
|
22
|
+
/// The horizontal padding of the FAB.
|
|
23
23
|
/// @group floating-action-button
|
|
24
24
|
$kendo-fab-padding-x: map.get( $kendo-spacing, 4 ) !default;
|
|
25
|
+
/// The horizontal padding of the small FAB.
|
|
26
|
+
/// @group floating-action-button
|
|
25
27
|
$kendo-fab-sm-padding-x: math.div( $kendo-fab-padding-x, 2 ) !default;
|
|
28
|
+
/// The horizontal padding of the medium FAB.
|
|
29
|
+
/// @group floating-action-button
|
|
26
30
|
$kendo-fab-md-padding-x: $kendo-fab-padding-x !default;
|
|
31
|
+
/// The horizontal padding of the large FAB.
|
|
32
|
+
/// @group floating-action-button
|
|
27
33
|
$kendo-fab-lg-padding-x: ( $kendo-fab-padding-x * 1.5 ) !default;
|
|
28
34
|
|
|
29
|
-
///
|
|
35
|
+
/// The vertical padding of the FAB.
|
|
30
36
|
/// @group floating-action-button
|
|
31
37
|
$kendo-fab-padding-y: $kendo-fab-padding-x !default;
|
|
38
|
+
/// The vertical padding of the small FAB.
|
|
39
|
+
/// @group floating-action-button
|
|
32
40
|
$kendo-fab-sm-padding-y: math.div( $kendo-fab-padding-y, 2 ) !default;
|
|
41
|
+
/// The vertical padding of the medium FAB.
|
|
42
|
+
/// @group floating-action-button
|
|
33
43
|
$kendo-fab-md-padding-y: $kendo-fab-padding-y !default;
|
|
44
|
+
/// The vertical padding of the large FAB.
|
|
45
|
+
/// @group floating-action-button
|
|
34
46
|
$kendo-fab-lg-padding-y: ( $kendo-fab-padding-y * 1.5 ) !default;
|
|
35
47
|
|
|
36
|
-
///
|
|
48
|
+
/// The offset of the focused FAB.
|
|
37
49
|
/// @group floating-action-button
|
|
38
50
|
$kendo-fab-focus-offset: $kendo-button-focus-offset !default;
|
|
39
|
-
///
|
|
51
|
+
/// The outline width of the focused FAB.
|
|
40
52
|
/// @group floating-action-button
|
|
41
53
|
$kendo-fab-focus-outline-width: $kendo-button-focus-outline-width !default;
|
|
42
|
-
///
|
|
54
|
+
/// The outline style of the focused FAB.
|
|
43
55
|
/// @group floating-action-button
|
|
44
56
|
$kendo-fab-focus-outline-style: $kendo-button-focus-outline-style !default;
|
|
45
57
|
|
|
46
|
-
/// FAB icon
|
|
58
|
+
/// The horizontal padding of the FAB icon.
|
|
47
59
|
/// @group floating-action-button
|
|
48
|
-
$kendo-fab-icon-
|
|
49
|
-
/// FAB icon
|
|
60
|
+
$kendo-fab-icon-padding-x: map.get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
|
|
61
|
+
/// The vertical padding of the FAB icon.
|
|
50
62
|
/// @group floating-action-button
|
|
51
|
-
$kendo-fab-icon-
|
|
52
|
-
/// FAB icon
|
|
63
|
+
$kendo-fab-icon-padding-y: $kendo-fab-icon-padding-x !default;
|
|
64
|
+
/// The spacing of the FAB icon.
|
|
53
65
|
/// @group floating-action-button
|
|
54
66
|
$kendo-fab-icon-spacing: map.get( $kendo-spacing, 0.5 ) !default; // sass-lint:disable-line leading-zero
|
|
55
67
|
|
|
56
|
-
///
|
|
68
|
+
/// The horizontal padding of the FAB items.
|
|
57
69
|
/// @group floating-action-button
|
|
58
70
|
$kendo-fab-items-padding-x: 0px !default;
|
|
59
|
-
///
|
|
71
|
+
/// The vertical padding of the FAB items.
|
|
60
72
|
/// @group floating-action-button
|
|
61
73
|
$kendo-fab-items-padding-y: map.get( $kendo-spacing, 4 ) !default;
|
|
62
74
|
|
|
63
|
-
/// FAB item text
|
|
75
|
+
/// The horizontal padding of the FAB item text.
|
|
64
76
|
/// @group floating-action-button
|
|
65
77
|
$kendo-fab-item-text-padding-x: map.get( $kendo-spacing, 1 ) !default;
|
|
66
|
-
/// FAB item text
|
|
78
|
+
/// The vertical padding of the FAB item text.
|
|
67
79
|
/// @group floating-action-button
|
|
68
80
|
$kendo-fab-item-text-padding-y: map.get( $kendo-spacing, 1 ) !default;
|
|
69
|
-
///
|
|
81
|
+
/// The width of the FAB item text border.
|
|
70
82
|
/// @group floating-action-button
|
|
71
83
|
$kendo-fab-item-text-border-width: 1px !default;
|
|
72
|
-
///
|
|
84
|
+
/// The border style of the FAB item text.
|
|
73
85
|
/// @group floating-action-button
|
|
74
86
|
$kendo-fab-item-text-border-style: solid !default;
|
|
75
|
-
///
|
|
87
|
+
/// The border radius of the FAB item text.
|
|
76
88
|
/// @group floating-action-button
|
|
77
89
|
$kendo-fab-item-text-border-radius: var( --kendo-border-radius-md, 0 ) !default;
|
|
78
|
-
///
|
|
90
|
+
/// The font size of the FAB item text.
|
|
79
91
|
/// @group floating-action-button
|
|
80
92
|
$kendo-fab-item-text-font-size: var( --kendo-font-size-sm, inherit ) !default;
|
|
81
|
-
///
|
|
93
|
+
/// The line height of the FAB item text.
|
|
82
94
|
/// @group floating-action-button
|
|
83
95
|
$kendo-fab-item-text-line-height: var( --kendo-line-height-sm, inherit ) !default;
|
|
84
|
-
/// The bottom margin of the FAB item.
|
|
96
|
+
/// The bottom margin of the FAB item text.
|
|
85
97
|
/// @group floating-action-button
|
|
86
98
|
$kendo-fab-item-text-offset-x: map.get( $kendo-spacing, 2 ) !default;
|
|
87
99
|
|
|
88
|
-
///
|
|
100
|
+
/// The offset of the focused FAB item.
|
|
89
101
|
/// @group floating-action-button
|
|
90
102
|
$kendo-fab-item-focus-offset: $kendo-button-focus-offset !default;
|
|
91
|
-
///
|
|
103
|
+
/// The outline width of the focused FAB item.
|
|
92
104
|
/// @group floating-action-button
|
|
93
105
|
$kendo-fab-item-focus-outline-width: $kendo-button-focus-outline-width !default;
|
|
94
|
-
///
|
|
106
|
+
/// The outline style of the focused FAB item.
|
|
95
107
|
/// @group floating-action-button
|
|
96
108
|
$kendo-fab-item-focus-outline-style: $kendo-button-focus-outline-style !default;
|
|
97
109
|
|
|
98
|
-
/// FAB item icon
|
|
110
|
+
/// The horizontal padding of the FAB item icon.
|
|
99
111
|
/// @group floating-action-button
|
|
100
|
-
$kendo-fab-item-icon-padding-x: map.get( $kendo-spacing, 2 ) !default;
|
|
101
|
-
/// FAB item icon
|
|
112
|
+
$kendo-fab-item-icon-padding-x: map.get( $kendo-spacing, 2 ) + $kendo-fab-icon-padding-x !default;
|
|
113
|
+
/// The vertical padding of the FAB item icon.
|
|
102
114
|
/// @group floating-action-button
|
|
103
|
-
$kendo-fab-item-icon-padding-y:
|
|
104
|
-
///
|
|
115
|
+
$kendo-fab-item-icon-padding-y: $kendo-fab-item-icon-padding-x !default;
|
|
116
|
+
/// The border width of the FAB item icon.
|
|
105
117
|
/// @group floating-action-button
|
|
106
118
|
$kendo-fab-item-icon-border-width: 1px !default;
|
|
107
|
-
///
|
|
119
|
+
/// The border style of the FAB item icon.
|
|
108
120
|
/// @group floating-action-button
|
|
109
121
|
$kendo-fab-item-icon-border-style: solid !default;
|
|
110
|
-
///
|
|
122
|
+
/// The border radius of the FAB item icon.
|
|
111
123
|
/// @group floating-action-button
|
|
112
124
|
$kendo-fab-item-icon-border-radius: 50% !default;
|
|
113
|
-
/// Width of the FAB item icon.
|
|
114
|
-
/// @group floating-action-button
|
|
115
|
-
$kendo-fab-item-icon-width: 20px !default;
|
|
116
|
-
/// Height of the FAB item icon.
|
|
117
|
-
/// @group floating-action-button
|
|
118
|
-
$kendo-fab-item-icon-height: $kendo-fab-item-icon-width !default;
|
|
119
125
|
|
|
120
|
-
///
|
|
126
|
+
/// The theme colors map for the FAB.
|
|
121
127
|
/// @group floating-action-button
|
|
122
128
|
$kendo-fab-theme-colors: (
|
|
123
129
|
solid: map.get( $kendo-button-theme-colors, "solid")
|
|
124
130
|
) !default;
|
|
125
131
|
|
|
126
|
-
///
|
|
132
|
+
/// The size map for the FAB.
|
|
127
133
|
/// @group floating-action-button
|
|
128
134
|
$kendo-fab-sizes: (
|
|
129
135
|
sm: (
|
|
@@ -152,30 +158,30 @@ $kendo-fab-item-bg: var( --kendo-component-bg, inherit ) !default;
|
|
|
152
158
|
/// The base border color of the FAB item.
|
|
153
159
|
/// @group floating-action-button
|
|
154
160
|
$kendo-fab-item-border: get-theme-color-var( neutral-110 ) !default;
|
|
155
|
-
/// The
|
|
161
|
+
/// The text color of the hovered FAB item.
|
|
156
162
|
/// @group floating-action-button
|
|
157
163
|
$kendo-fab-item-hover-text: var( --kendo-hover-text, inherit ) !default;
|
|
158
|
-
/// The
|
|
164
|
+
/// The background color of the hovered FAB item.
|
|
159
165
|
/// @group floating-action-button
|
|
160
166
|
$kendo-fab-item-hover-bg: var( --kendo-hover-bg, inherit ) !default;
|
|
161
|
-
/// The
|
|
167
|
+
/// The border color of the hovered FAB item.
|
|
162
168
|
/// @group floating-action-button
|
|
163
169
|
$kendo-fab-item-hover-border: get-theme-color-var( neutral-110 ) !default;
|
|
164
|
-
/// The
|
|
170
|
+
/// The text color of the focused FAB item.
|
|
165
171
|
/// @group floating-action-button
|
|
166
172
|
$kendo-fab-item-focus-text: get-theme-color-var( neutral-160 ) !default;
|
|
167
|
-
/// The
|
|
173
|
+
/// The background color of the focused FAB item.
|
|
168
174
|
/// @group floating-action-button
|
|
169
175
|
$kendo-fab-item-focus-bg: var( --kendo-component-bg, inherit ) !default;
|
|
170
|
-
/// The
|
|
176
|
+
/// The border color of the focused FAB item.
|
|
171
177
|
/// @group floating-action-button
|
|
172
178
|
$kendo-fab-item-focus-border: get-theme-color-var( neutral-110 ) !default;
|
|
173
|
-
/// The
|
|
179
|
+
/// The text color of the active FAB item.
|
|
174
180
|
/// @group floating-action-button
|
|
175
181
|
$kendo-fab-item-active-text: var( --kendo-selected-text, inherit ) !default;
|
|
176
|
-
/// The
|
|
182
|
+
/// The background color of the active FAB item.
|
|
177
183
|
/// @group floating-action-button
|
|
178
184
|
$kendo-fab-item-active-bg: var( --kendo-selected-bg, inherit ) !default;
|
|
179
|
-
/// The
|
|
185
|
+
/// The border color of the active FAB item.
|
|
180
186
|
/// @group floating-action-button
|
|
181
187
|
$kendo-fab-item-active-border: get-theme-color-var( neutral-110 ) !default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
@use "../icon/_variables.scss"as *;
|
|
1
|
+
@use "../icon/_variables.scss" as *;
|
|
2
2
|
@use "./_variables.scss" as *;
|
|
3
3
|
|
|
4
4
|
@mixin kendo-file-manager--layout() {
|
|
@@ -104,11 +104,6 @@
|
|
|
104
104
|
justify-content: center;
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
-
// File icon
|
|
108
|
-
.k-file-icon {
|
|
109
|
-
font-size: var( --kendo-file-manager-listview-item-icon-size, #{$kendo-file-manager-listview-item-icon-size} );
|
|
110
|
-
}
|
|
111
|
-
|
|
112
107
|
// File name
|
|
113
108
|
.k-file-name {
|
|
114
109
|
margin-block-start: calc( var( --kendo-file-manager-spacer, #{$kendo-file-manager-spacer} ) / 2 );
|
|
@@ -155,7 +150,7 @@
|
|
|
155
150
|
padding-block-start: calc( var( --kendo-file-manager-preview-padding-y, #{$kendo-file-manager-preview-padding-y} ) * 3 );
|
|
156
151
|
padding-block-end: var( --kendo-file-manager-preview-padding-y, #{$kendo-file-manager-preview-padding-y} );
|
|
157
152
|
width: var( --kendo-file-manager-preview-width, #{$kendo-file-manager-preview-width} );
|
|
158
|
-
min-height: calc( ( var( --kendo-file-manager-preview-padding-y, #{$kendo-file-manager-preview-padding-y} ) * 4 ) +
|
|
153
|
+
min-height: calc( ( var( --kendo-file-manager-preview-padding-y, #{$kendo-file-manager-preview-padding-y} ) * 4 ) + var( --kendo-icon-size, 1rem ) * 2 + ( var( --kendo-file-manager-preview-spacing, #{$kendo-file-manager-preview-spacing} ) * 3 ) );
|
|
159
154
|
border-width: 0;
|
|
160
155
|
border-left-width: var( --kendo-file-manager-preview-border-width, #{$kendo-file-manager-preview-border-width} );
|
|
161
156
|
border-style: solid;
|
|
@@ -172,11 +167,6 @@
|
|
|
172
167
|
justify-content: center;
|
|
173
168
|
}
|
|
174
169
|
|
|
175
|
-
// File icon
|
|
176
|
-
.k-file-icon {
|
|
177
|
-
font-size: var( --kendo-file-manager-preview-icon-size, #{$kendo-file-manager-preview-icon-size} );
|
|
178
|
-
}
|
|
179
|
-
|
|
180
170
|
// File name
|
|
181
171
|
.k-file-name {
|
|
182
172
|
margin-block-start: var( --kendo-file-manager-preview-spacing, #{$kendo-file-manager-preview-spacing} );
|
|
@@ -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/icon/_layout.scss
CHANGED
|
@@ -28,13 +28,16 @@
|
|
|
28
28
|
}
|
|
29
29
|
|
|
30
30
|
// RTL icons
|
|
31
|
-
.k-rtl
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
31
|
+
.k-rtl,
|
|
32
|
+
[dir="rtl"] {
|
|
33
|
+
.k-i-indent-increase,
|
|
34
|
+
.k-i-indent-decrease,
|
|
35
|
+
.k-i-caret-alt-right,
|
|
36
|
+
.k-i-caret-alt-left,
|
|
37
|
+
.k-svg-i-caret-alt-right,
|
|
38
|
+
.k-svg-i-caret-alt-left {
|
|
39
|
+
transform: scaleX(-1);
|
|
40
|
+
}
|
|
38
41
|
}
|
|
39
42
|
|
|
40
43
|
.k-icon-action {
|
package/scss/input/_layout.scss
CHANGED
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
box-sizing: border-box;
|
|
37
37
|
}
|
|
38
38
|
|
|
39
|
-
.k-input,
|
|
40
|
-
.k-picker {
|
|
39
|
+
> .k-input,
|
|
40
|
+
> .k-picker {
|
|
41
41
|
border-width: 0 !important; // sass-lint:disable-line no-important
|
|
42
42
|
color: inherit;
|
|
43
43
|
background: none;
|
|
@@ -226,14 +226,15 @@
|
|
|
226
226
|
.k-input-prefix > .k-svg-icon,
|
|
227
227
|
.k-input-suffix > .k-icon,
|
|
228
228
|
.k-input-suffix > .k-svg-icon {
|
|
229
|
-
|
|
230
|
-
|
|
229
|
+
padding-inline: var( --INTERNAL--kendo-input-padding-y, #{$kendo-input-md-padding-y} );
|
|
230
|
+
padding-block: var( --INTERNAL--kendo-input-padding-y, #{$kendo-input-md-padding-y} );
|
|
231
231
|
flex: none;
|
|
232
232
|
align-self: center;
|
|
233
233
|
display: inline-flex;
|
|
234
234
|
flex-flow: row nowrap;
|
|
235
235
|
align-items: center;
|
|
236
236
|
justify-content: center;
|
|
237
|
+
box-sizing: content-box;
|
|
237
238
|
}
|
|
238
239
|
|
|
239
240
|
// Input with SVG icon
|