@progress/kendo-theme-default 4.43.1-dev.5 → 4.44.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/all.css +2131 -1183
- package/dist/all.scss +1801 -1408
- package/package.json +2 -2
- package/scss/action-buttons/_layout.scss +7 -0
- package/scss/action-sheet/_layout.scss +6 -0
- package/scss/appbar/_layout.scss +6 -1
- package/scss/autocomplete/_layout.scss +6 -0
- package/scss/avatar/_layout.scss +6 -0
- package/scss/badge/_layout.scss +6 -0
- package/scss/bottom-navigation/_layout.scss +6 -0
- package/scss/breadcrumb/_layout.scss +6 -0
- package/scss/button/_layout.scss +80 -92
- package/scss/button/_theme.scss +177 -112
- package/scss/button/_variables.scss +80 -14
- package/scss/captcha/_layout.scss +6 -0
- package/scss/card/_layout.scss +6 -0
- package/scss/chat/_layout.scss +9 -2
- package/scss/chip/_layout.scss +6 -0
- package/scss/color-preview/_layout.scss +6 -0
- package/scss/coloreditor/_layout.scss +6 -0
- package/scss/colorgradient/_layout.scss +6 -4
- package/scss/colorpalette/_layout.scss +6 -0
- package/scss/colorpicker/_layout.scss +6 -3
- package/scss/combobox/_layout.scss +6 -1
- package/scss/common/_loading.scss +15 -13
- package/scss/dateinput/_layout.scss +7 -1
- package/scss/datepicker/_layout.scss +6 -0
- package/scss/daterangepicker/_layout.scss +6 -0
- package/scss/datetimepicker/_layout.scss +6 -2
- package/scss/drawer/_layout.scss +6 -0
- package/scss/dropdownlist/_layout.scss +6 -1
- package/scss/expansion-panel/_layout.scss +6 -1
- package/scss/fab/_layout.scss +6 -0
- package/scss/filter/_layout.scss +8 -0
- package/scss/floating-label/_layout.scss +7 -0
- package/scss/grid/_layout.scss +4 -3
- package/scss/grid/_theme.scss +2 -8
- package/scss/imageeditor/_layout.scss +6 -0
- package/scss/list/_layout.scss +10 -28
- package/scss/list/_theme.scss +4 -4
- package/scss/listbox/_layout.scss +9 -0
- package/scss/map/_layout.scss +7 -0
- package/scss/maskedtextbox/_layout.scss +6 -0
- package/scss/mediaplayer/_layout.scss +14 -1
- package/scss/multiselect/_layout.scss +8 -2
- package/scss/notification/_layout.scss +6 -0
- package/scss/numerictextbox/_layout.scss +6 -2
- package/scss/orgchart/_layout.scss +6 -0
- package/scss/pager/_layout.scss +6 -2
- package/scss/panelbar/_layout.scss +6 -0
- package/scss/pivotgrid/_layout.scss +55 -83
- package/scss/pivotgrid/_theme.scss +39 -73
- package/scss/popover/_layout.scss +6 -0
- package/scss/progressbar/_layout.scss +6 -0
- package/scss/rating/_layout.scss +6 -1
- package/scss/scheduler/_layout.scss +6 -0
- package/scss/searchbox/_layout.scss +6 -0
- package/scss/slider/_layout.scss +71 -144
- package/scss/slider/_theme.scss +0 -6
- package/scss/spreadsheet/_layout.scss +1 -0
- package/scss/stepper/_layout.scss +6 -1
- package/scss/switch/_layout.scss +14 -9
- package/scss/switch/_variables.scss +127 -33
- package/scss/tabstrip/_layout.scss +26 -4
- package/scss/taskboard/_layout.scss +6 -2
- package/scss/textarea/_layout.scss +6 -0
- package/scss/textbox/_layout.scss +6 -0
- package/scss/timeline/_layout.scss +8 -4
- package/scss/timepicker/_layout.scss +6 -1
- package/scss/timeselector/_layout.scss +1 -0
- package/scss/toolbar/_index.scss +1 -0
- package/scss/toolbar/_layout.scss +1 -0
- package/scss/tooltip/_layout.scss +6 -1
- package/scss/treelist/_layout.scss +4 -0
- package/scss/treeview/_layout.scss +17 -18
- package/scss/upload/_layout.scss +6 -1
- package/scss/window/_layout.scss +2 -2
- package/scss/wizard/_layout.scss +4 -0
package/scss/button/_theme.scss
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
@include exports( "button/theme" ) {
|
|
2
2
|
|
|
3
|
-
//
|
|
4
|
-
.k-button
|
|
5
|
-
.k-button-secondary {
|
|
3
|
+
// Solid button
|
|
4
|
+
.k-button {
|
|
6
5
|
@include fill(
|
|
7
6
|
$button-text,
|
|
8
7
|
$button-bg,
|
|
@@ -66,75 +65,70 @@
|
|
|
66
65
|
}
|
|
67
66
|
|
|
68
67
|
}
|
|
68
|
+
.k-button.k-primary {
|
|
69
|
+
@extend .k-button-solid-primary !optional;
|
|
70
|
+
}
|
|
69
71
|
|
|
72
|
+
$_shade-fn: get-function( $solid-button-shade-function );
|
|
70
73
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
$primary-button-bg,
|
|
76
|
-
$primary-button-border,
|
|
77
|
-
$primary-button-gradient
|
|
78
|
-
);
|
|
79
|
-
@include box-shadow( $primary-button-shadow );
|
|
74
|
+
@each $name, $color in $button-theme-colors {
|
|
75
|
+
$_button-text: contrast-wcag( $color );
|
|
76
|
+
$_button-bg: if( $solid-button-shade-bg-amount, call( $_shade-fn, $color, $solid-button-shade-bg-amount ), null );
|
|
77
|
+
$_button-border: if( $solid-button-shade-border-amount, call( $_shade-fn, $color, $solid-button-shade-border-amount ), null );
|
|
80
78
|
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
@include fill(
|
|
85
|
-
$primary-button-hovered-text,
|
|
86
|
-
$primary-button-hovered-bg,
|
|
87
|
-
$primary-button-hovered-border,
|
|
88
|
-
$primary-button-hovered-gradient
|
|
89
|
-
);
|
|
90
|
-
@include box-shadow( $primary-button-hovered-shadow );
|
|
91
|
-
}
|
|
79
|
+
$_button-hover-text: null;
|
|
80
|
+
$_button-hover-bg: if( $solid-button-hover-shade-bg-amount, call( $_shade-fn, $color, $solid-button-hover-shade-bg-amount ), null );
|
|
81
|
+
$_button-hover-border: if( $solid-button-hover-shade-border-amount, call( $_shade-fn, $color, $solid-button-hover-shade-border-amount ), null );
|
|
92
82
|
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
&.k-state-focused {
|
|
97
|
-
@include box-shadow( $primary-button-focused-shadow );
|
|
98
|
-
}
|
|
83
|
+
$_button-active-text: null;
|
|
84
|
+
$_button-active-bg: if( $solid-button-active-shade-bg-amount, call( $_shade-fn, $color, $solid-button-active-shade-bg-amount ), null );
|
|
85
|
+
$_button-active-border: if( $solid-button-active-shade-border-amount, call( $_shade-fn, $color, $solid-button-active-shade-border-amount ), null );
|
|
99
86
|
|
|
100
|
-
|
|
101
|
-
&:active,
|
|
102
|
-
&.k-state-active {
|
|
87
|
+
.k-button-solid.k-button-solid-#{$name} {
|
|
103
88
|
@include fill(
|
|
104
|
-
$
|
|
105
|
-
$
|
|
106
|
-
$
|
|
107
|
-
$
|
|
89
|
+
$_button-text,
|
|
90
|
+
$_button-bg,
|
|
91
|
+
$_button-border,
|
|
92
|
+
$solid-button-gradient
|
|
108
93
|
);
|
|
109
|
-
@include box-shadow( $primary-button-active-shadow );
|
|
110
|
-
}
|
|
111
94
|
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
}
|
|
95
|
+
// Hover state
|
|
96
|
+
&:hover,
|
|
97
|
+
&.k-state-hover {
|
|
98
|
+
@include fill(
|
|
99
|
+
$_button-hover-text,
|
|
100
|
+
$_button-hover-bg,
|
|
101
|
+
$_button-hover-border
|
|
102
|
+
);
|
|
103
|
+
}
|
|
122
104
|
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
$button-disabled-gradient
|
|
131
|
-
);
|
|
132
|
-
@include box-shadow( $button-disabled-shadow );
|
|
133
|
-
}
|
|
105
|
+
// Focus state
|
|
106
|
+
&:focus,
|
|
107
|
+
&.k-state-focus {
|
|
108
|
+
@if ( $solid-button-shadow ) {
|
|
109
|
+
box-shadow: 0 0 $solid-button-shadow-blur $solid-button-shadow-spread rgba( $_button-border, $solid-button-shadow-opacity );
|
|
110
|
+
}
|
|
111
|
+
}
|
|
134
112
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
113
|
+
// Active state
|
|
114
|
+
&:active,
|
|
115
|
+
&.k-state-active {
|
|
116
|
+
@include fill(
|
|
117
|
+
$_button-active-text,
|
|
118
|
+
$_button-active-bg,
|
|
119
|
+
$_button-active-border
|
|
120
|
+
);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
// Selected
|
|
124
|
+
&.k-state-selected {
|
|
125
|
+
@include fill(
|
|
126
|
+
$_button-active-text,
|
|
127
|
+
$_button-active-bg,
|
|
128
|
+
$_button-active-border
|
|
129
|
+
);
|
|
130
|
+
}
|
|
131
|
+
}
|
|
138
132
|
}
|
|
139
133
|
|
|
140
134
|
|
|
@@ -143,18 +137,7 @@
|
|
|
143
137
|
|
|
144
138
|
|
|
145
139
|
// Button group
|
|
146
|
-
.k-button-group {
|
|
147
|
-
|
|
148
|
-
.k-button:focus,
|
|
149
|
-
.k-button.k-state-focus,
|
|
150
|
-
.k-button.k-state-focused,
|
|
151
|
-
.k-button-outline:focus,
|
|
152
|
-
.k-button-outline.k-state-focus,
|
|
153
|
-
.k-button-outline.k-state-focused {
|
|
154
|
-
@include box-shadow( $button-group-focus-shadow );
|
|
155
|
-
}
|
|
156
|
-
|
|
157
|
-
}
|
|
140
|
+
.k-button-group {}
|
|
158
141
|
|
|
159
142
|
|
|
160
143
|
// Split button
|
|
@@ -176,62 +159,96 @@
|
|
|
176
159
|
@include box-shadow( none );
|
|
177
160
|
border-color: currentColor;
|
|
178
161
|
color: $button-text;
|
|
179
|
-
background:
|
|
162
|
+
background-color: transparent;
|
|
180
163
|
|
|
181
164
|
// Hover state
|
|
182
165
|
&:hover,
|
|
183
166
|
&.k-state-hover {
|
|
184
|
-
@include fill(
|
|
167
|
+
@include fill(
|
|
168
|
+
contrast-wcag( $button-text ),
|
|
169
|
+
$button-text,
|
|
170
|
+
$button-text
|
|
171
|
+
);
|
|
185
172
|
}
|
|
186
173
|
|
|
187
174
|
// Focused state
|
|
188
175
|
&:focus,
|
|
189
176
|
&.k-state-focus,
|
|
190
177
|
&.k-state-focused {
|
|
191
|
-
|
|
178
|
+
@if ($outline-button-shadow) {
|
|
179
|
+
box-shadow: 0 0 $outline-button-shadow-blur $outline-button-shadow-spread rgba( $button-text, $outline-button-shadow-opacity );
|
|
180
|
+
}
|
|
192
181
|
}
|
|
193
182
|
|
|
194
183
|
// Active state
|
|
195
184
|
&:active,
|
|
196
185
|
&.k-state-active {
|
|
197
|
-
@include fill(
|
|
186
|
+
@include fill(
|
|
187
|
+
contrast-wcag( $button-text ),
|
|
188
|
+
$button-text,
|
|
189
|
+
$button-text
|
|
190
|
+
);
|
|
198
191
|
}
|
|
199
192
|
|
|
200
193
|
// Selected state
|
|
201
194
|
&.k-state-selected {
|
|
202
|
-
@include fill(
|
|
195
|
+
@include fill(
|
|
196
|
+
contrast-wcag( $button-text ),
|
|
197
|
+
$button-text,
|
|
198
|
+
$button-text
|
|
199
|
+
);
|
|
203
200
|
}
|
|
204
201
|
}
|
|
205
202
|
.k-button-outline.k-primary {
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
background: none;
|
|
209
|
-
box-shadow: none;
|
|
203
|
+
@extend .k-button-outline-primary !optional;
|
|
204
|
+
}
|
|
210
205
|
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
206
|
+
@each $name, $color in $button-theme-colors {
|
|
207
|
+
.k-button-outline.k-button-outline-#{$name} {
|
|
208
|
+
@include box-shadow( none );
|
|
209
|
+
border-color: currentColor;
|
|
210
|
+
color: $color;
|
|
211
|
+
background-color: transparent;
|
|
212
|
+
|
|
213
|
+
// Hover state
|
|
214
|
+
&:hover,
|
|
215
|
+
&.k-state-hover {
|
|
216
|
+
@include fill(
|
|
217
|
+
contrast-wcag( $color ),
|
|
218
|
+
$color,
|
|
219
|
+
$color
|
|
220
|
+
);
|
|
221
|
+
}
|
|
216
222
|
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
+
// Focused state
|
|
224
|
+
&:focus,
|
|
225
|
+
&.k-state-focus,
|
|
226
|
+
&.k-state-focused {
|
|
227
|
+
@if ($outline-button-shadow) {
|
|
228
|
+
box-shadow: 0 0 $outline-button-shadow-blur $outline-button-shadow-spread rgba( $color, $outline-button-shadow-opacity );
|
|
229
|
+
}
|
|
230
|
+
}
|
|
223
231
|
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
232
|
+
// Active state
|
|
233
|
+
&:active,
|
|
234
|
+
&.k-state-active {
|
|
235
|
+
@include fill(
|
|
236
|
+
contrast-wcag( $color ),
|
|
237
|
+
$color,
|
|
238
|
+
$color
|
|
239
|
+
);
|
|
240
|
+
box-shadow: none;
|
|
241
|
+
}
|
|
230
242
|
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
243
|
+
// Selected state
|
|
244
|
+
&.k-state-selected {
|
|
245
|
+
@include fill(
|
|
246
|
+
contrast-wcag( $color ),
|
|
247
|
+
$color,
|
|
248
|
+
$color
|
|
249
|
+
);
|
|
250
|
+
box-shadow: none;
|
|
251
|
+
}
|
|
235
252
|
}
|
|
236
253
|
}
|
|
237
254
|
|
|
@@ -254,17 +271,65 @@
|
|
|
254
271
|
&.k-state-focus {
|
|
255
272
|
color: inherit;
|
|
256
273
|
}
|
|
274
|
+
|
|
275
|
+
// Disabled state
|
|
276
|
+
&:disabled,
|
|
277
|
+
&.k-state-disabled {
|
|
278
|
+
color: $button-disabled-text;
|
|
279
|
+
}
|
|
257
280
|
}
|
|
258
281
|
.k-button-flat.k-primary {
|
|
282
|
+
@extend .k-button-flat-primary !optional;
|
|
283
|
+
}
|
|
259
284
|
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
285
|
+
@each $name, $color in $button-theme-colors {
|
|
286
|
+
.k-button-flat.k-button-flat-#{$name} {
|
|
287
|
+
|
|
288
|
+
&,
|
|
289
|
+
&:hover,
|
|
290
|
+
&.k-state-hover,
|
|
291
|
+
&:active,
|
|
292
|
+
&.k-state-active,
|
|
293
|
+
&:focus,
|
|
294
|
+
&.k-state-focus {
|
|
295
|
+
color: $color;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
// Disabled state
|
|
299
|
+
&:disabled,
|
|
300
|
+
&.k-state-disabled {
|
|
301
|
+
color: $button-disabled-text;
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
@include exports( "link-button/theme" ) {
|
|
312
|
+
|
|
313
|
+
@each $name, $color in map-merge( $button-theme-colors, ( "base": $base-text ) ) {
|
|
314
|
+
.k-button-link.k-button-link-#{$name} {
|
|
315
|
+
@include box-shadow( none );
|
|
316
|
+
color: $color;
|
|
317
|
+
|
|
318
|
+
&:hover,
|
|
319
|
+
&.k-state-hover {
|
|
320
|
+
color: try-shade( $color, 2 );
|
|
321
|
+
}
|
|
322
|
+
&:focus,
|
|
323
|
+
&.k-state-focus {
|
|
324
|
+
@if ($link-button-shadow) {
|
|
325
|
+
box-shadow: 0 0 $link-button-shadow-blur $link-button-shadow-spread rgba( $color, $link-button-shadow-opacity );
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
&:active,
|
|
329
|
+
&.k-state-active,
|
|
330
|
+
&.k-state-selected {
|
|
331
|
+
color: try-shade( $color, 2 );
|
|
332
|
+
}
|
|
268
333
|
}
|
|
269
334
|
}
|
|
270
335
|
|
|
@@ -1,29 +1,71 @@
|
|
|
1
1
|
// Button
|
|
2
2
|
|
|
3
|
-
/// Width of border around
|
|
3
|
+
/// Width of the border around the button.
|
|
4
4
|
/// @group button
|
|
5
5
|
$button-border-width: 1px !default;
|
|
6
|
-
|
|
6
|
+
|
|
7
|
+
/// Border radius of the button.
|
|
7
8
|
/// @group button
|
|
8
9
|
$button-border-radius: $border-radius !default;
|
|
9
10
|
|
|
10
|
-
/// Horizontal padding of
|
|
11
|
+
/// Horizontal padding of the button.
|
|
12
|
+
/// @group button
|
|
13
|
+
$button-padding-x: map-get( $spacing, 2 ) !default;
|
|
14
|
+
$button-padding-x-sm: null !default;
|
|
15
|
+
$button-padding-x-md: null !default;
|
|
16
|
+
$button-padding-x-lg: null !default;
|
|
17
|
+
|
|
18
|
+
/// Vertical padding of the button.
|
|
11
19
|
/// @group button
|
|
12
|
-
$button-padding-
|
|
13
|
-
|
|
20
|
+
$button-padding-y: map-get( $spacing, 1 ) !default;
|
|
21
|
+
$button-padding-y-sm: null !default;
|
|
22
|
+
$button-padding-y-md: null !default;
|
|
23
|
+
$button-padding-y-lg: null !default;
|
|
24
|
+
|
|
25
|
+
/// Font family of the button.
|
|
14
26
|
/// @group button
|
|
15
|
-
$button-padding-y: $padding-y !default;
|
|
16
27
|
$button-font-family: $font-family !default;
|
|
28
|
+
|
|
29
|
+
/// Font size of the button.
|
|
30
|
+
/// @group button
|
|
17
31
|
$button-font-size: $font-size !default;
|
|
18
|
-
$button-
|
|
32
|
+
$button-font-size-sm: null !default;
|
|
33
|
+
$button-font-size-md: null !default;
|
|
34
|
+
$button-font-size-lg: null !default;
|
|
19
35
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
$button-line-height
|
|
36
|
+
/// Line height used along with $font-size.
|
|
37
|
+
/// @group button
|
|
38
|
+
$button-line-height: $line-height !default;
|
|
39
|
+
$button-line-height-sm: null !default;
|
|
40
|
+
$button-line-height-md: null !default;
|
|
41
|
+
$button-line-height-lg: null !default;
|
|
23
42
|
|
|
43
|
+
/// Calculated height of the button.
|
|
44
|
+
/// @group button
|
|
24
45
|
$button-calc-size: calc( #{$button-line-height * 1em} + #{$button-padding-y * 2} + #{$button-border-width * 2} ) !default;
|
|
46
|
+
|
|
47
|
+
/// Calculated inner height of the button. Without the border width.
|
|
48
|
+
/// @group button
|
|
25
49
|
$button-inner-calc-size: calc( #{$button-line-height * 1em} + #{$button-padding-y * 2} ) !default;
|
|
26
50
|
|
|
51
|
+
$button-arrow-padding-x: $button-padding-y !default;
|
|
52
|
+
$button-arrow-padding-y: $button-padding-y !default;
|
|
53
|
+
|
|
54
|
+
/// Theme colors map for the button.
|
|
55
|
+
/// @group button
|
|
56
|
+
$button-theme-colors: (
|
|
57
|
+
"primary": map-get( $theme-colors, primary ),
|
|
58
|
+
"secondary": map-get( $theme-colors, secondary ),
|
|
59
|
+
"tertiary": map-get( $theme-colors, tertiary ),
|
|
60
|
+
"info": map-get( $theme-colors, info ),
|
|
61
|
+
"success": map-get( $theme-colors, success ),
|
|
62
|
+
"warning": map-get( $theme-colors, warning ),
|
|
63
|
+
"error": map-get( $theme-colors, error ),
|
|
64
|
+
"dark": map-get( $theme-colors, dark ),
|
|
65
|
+
"light": map-get( $theme-colors, light ),
|
|
66
|
+
"inverse": map-get( $theme-colors, inverse )
|
|
67
|
+
) !default;
|
|
68
|
+
|
|
27
69
|
/// The background of the buttons.
|
|
28
70
|
/// @group button
|
|
29
71
|
$button-bg: #f5f5f5 !default;
|
|
@@ -68,13 +110,13 @@ $button-active-shadow: null !default;
|
|
|
68
110
|
|
|
69
111
|
/// The background color of selected buttons.
|
|
70
112
|
/// @group button
|
|
71
|
-
$button-selected-bg: $
|
|
113
|
+
$button-selected-bg: $primary !default;
|
|
72
114
|
/// The text color of selected buttons.
|
|
73
115
|
/// @group button
|
|
74
|
-
$button-selected-text: $button-
|
|
116
|
+
$button-selected-text: contrast-wcag( $button-selected-bg ) !default;
|
|
75
117
|
/// The border color of selected buttons.
|
|
76
118
|
/// @group button
|
|
77
|
-
$button-selected-border: $button-
|
|
119
|
+
$button-selected-border: $button-selected-bg !default;
|
|
78
120
|
/// The background gradient of selected buttons.
|
|
79
121
|
/// @group button
|
|
80
122
|
$button-selected-gradient: null !default;
|
|
@@ -120,7 +162,31 @@ $primary-button-selected-shadow: null !default;
|
|
|
120
162
|
|
|
121
163
|
$primary-button-focused-shadow: 0 0 0 2px rgba( $primary-button-border, .3 ) !default;
|
|
122
164
|
|
|
123
|
-
$button-
|
|
165
|
+
$solid-button-gradient: rgba( black, 0 ), rgba( black, .02 ) !default;
|
|
166
|
+
$solid-button-shade-function: "try-shade";
|
|
167
|
+
$solid-button-shade-text-amount: 0 !default;
|
|
168
|
+
$solid-button-shade-bg-amount: 0 !default;
|
|
169
|
+
$solid-button-shade-border-amount: 0 !default;
|
|
170
|
+
$solid-button-hover-shade-text-amount: null !default;
|
|
171
|
+
$solid-button-hover-shade-bg-amount: .5 !default;
|
|
172
|
+
$solid-button-hover-shade-border-amount: .5 !default;
|
|
173
|
+
$solid-button-active-shade-text-amount: null !default;
|
|
174
|
+
$solid-button-active-shade-bg-amount: 1.5 !default;
|
|
175
|
+
$solid-button-active-shade-border-amount: 1.5 !default;
|
|
176
|
+
$solid-button-shadow: true !default;
|
|
177
|
+
$solid-button-shadow-blur: 0px !default;
|
|
178
|
+
$solid-button-shadow-spread: 2px !default;
|
|
179
|
+
$solid-button-shadow-opacity: .3 !default;
|
|
180
|
+
|
|
181
|
+
$outline-button-shadow: true !default;
|
|
182
|
+
$outline-button-shadow-blur: 0px !default;
|
|
183
|
+
$outline-button-shadow-spread: 2px !default;
|
|
184
|
+
$outline-button-shadow-opacity: .3 !default;
|
|
185
|
+
|
|
186
|
+
$link-button-shadow: true !default;
|
|
187
|
+
$link-button-shadow-blur: 0px !default;
|
|
188
|
+
$link-button-shadow-spread: 2px !default;
|
|
189
|
+
$link-button-shadow-opacity: .3 !default;
|
|
124
190
|
|
|
125
191
|
$flat-button-hover-opacity: .04 !default;
|
|
126
192
|
$flat-button-focus-opacity: null !default;
|
package/scss/card/_layout.scss
CHANGED
|
@@ -27,6 +27,12 @@
|
|
|
27
27
|
overflow: hidden;
|
|
28
28
|
-webkit-touch-callout: none;
|
|
29
29
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
30
|
+
|
|
31
|
+
*,
|
|
32
|
+
*::before,
|
|
33
|
+
*::after {
|
|
34
|
+
box-sizing: border-box;
|
|
35
|
+
}
|
|
30
36
|
}
|
|
31
37
|
.k-card > .k-card-inner {
|
|
32
38
|
@include border-radius( $card-inner-border-radius );
|
package/scss/chat/_layout.scss
CHANGED
|
@@ -444,11 +444,18 @@
|
|
|
444
444
|
|
|
445
445
|
|
|
446
446
|
.k-scroll-button {
|
|
447
|
+
// IMPORTANT: if we don't set padding, the browser will set for us
|
|
448
|
+
padding: 0 map-get( $spacing, 1 );
|
|
447
449
|
height: 100%;
|
|
450
|
+
aspect-ratio: auto;
|
|
448
451
|
position: absolute;
|
|
449
452
|
z-index: 2;
|
|
450
|
-
top:
|
|
451
|
-
|
|
453
|
+
top: 0;
|
|
454
|
+
|
|
455
|
+
.k-button-icon {
|
|
456
|
+
min-width: auto;
|
|
457
|
+
min-height: auto;
|
|
458
|
+
}
|
|
452
459
|
}
|
|
453
460
|
.k-scroll-button-left {
|
|
454
461
|
left: 0;
|
package/scss/chip/_layout.scss
CHANGED
|
@@ -18,6 +18,12 @@
|
|
|
18
18
|
gap: $colorgradient-gap;
|
|
19
19
|
-webkit-touch-callout: none;
|
|
20
20
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
21
|
+
|
|
22
|
+
*,
|
|
23
|
+
*::before,
|
|
24
|
+
*::after {
|
|
25
|
+
box-sizing: border-box;
|
|
26
|
+
}
|
|
21
27
|
}
|
|
22
28
|
|
|
23
29
|
// Canvas
|
|
@@ -104,10 +110,6 @@
|
|
|
104
110
|
z-index: 1;
|
|
105
111
|
}
|
|
106
112
|
|
|
107
|
-
.k-slider-wrap > .k-slider-track {
|
|
108
|
-
height: $colorgradient-slider-vertical-size;
|
|
109
|
-
}
|
|
110
|
-
|
|
111
113
|
.k-slider-selection {
|
|
112
114
|
display: none;
|
|
113
115
|
}
|
|
@@ -22,13 +22,18 @@
|
|
|
22
22
|
-webkit-touch-callout: none;
|
|
23
23
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
24
24
|
|
|
25
|
+
*,
|
|
26
|
+
*::before,
|
|
27
|
+
*::after {
|
|
28
|
+
box-sizing: border-box;
|
|
29
|
+
}
|
|
30
|
+
|
|
25
31
|
.k-selected-color {
|
|
26
32
|
margin: $button-padding-y;
|
|
27
33
|
width: calc( #{$button-inner-calc-size} - #{$button-padding-y * 2} );
|
|
28
34
|
height: calc( #{$button-inner-calc-size} - #{$button-padding-y * 2} );
|
|
29
35
|
border-width: 1px;
|
|
30
36
|
border-style: solid;
|
|
31
|
-
box-sizing: border-box;
|
|
32
37
|
background-clip: content-box;
|
|
33
38
|
line-height: 0;
|
|
34
39
|
position: relative;
|
|
@@ -48,7 +53,6 @@
|
|
|
48
53
|
border-width: 0;
|
|
49
54
|
border-style: solid;
|
|
50
55
|
border-color: inherit;
|
|
51
|
-
box-sizing: border-box;
|
|
52
56
|
font-size: inherit;
|
|
53
57
|
text-align: center;
|
|
54
58
|
flex-direction: column;
|
|
@@ -84,7 +88,6 @@
|
|
|
84
88
|
border-inline-start-width: $picker-select-border-width;
|
|
85
89
|
border-style: solid;
|
|
86
90
|
border-color: transparent;
|
|
87
|
-
box-sizing: border-box;
|
|
88
91
|
display: flex;
|
|
89
92
|
align-items: center;
|
|
90
93
|
justify-content: center;
|
|
@@ -22,6 +22,12 @@
|
|
|
22
22
|
-webkit-touch-callout: none;
|
|
23
23
|
-webkit-tap-highlight-color: $rgba-transparent;
|
|
24
24
|
|
|
25
|
+
*,
|
|
26
|
+
*::before,
|
|
27
|
+
*::after {
|
|
28
|
+
box-sizing: border-box;
|
|
29
|
+
}
|
|
30
|
+
|
|
25
31
|
|
|
26
32
|
// Input
|
|
27
33
|
.k-input {}
|
|
@@ -41,7 +47,6 @@
|
|
|
41
47
|
border-width: 0;
|
|
42
48
|
border-inline-start-width: $picker-select-border-width;
|
|
43
49
|
border-style: solid;
|
|
44
|
-
box-sizing: border-box;
|
|
45
50
|
outline: 0;
|
|
46
51
|
display: flex;
|
|
47
52
|
flex-flow: row nowrap;
|