@progress/kendo-theme-default 4.42.0 → 4.42.1-dev.3
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 +439 -209
- package/dist/all.scss +174 -250
- package/package.json +2 -2
- package/scss/action-buttons/_layout.scss +1 -0
- package/scss/autocomplete/_layout.scss +0 -20
- package/scss/card/_layout.scss +4 -68
- package/scss/card/_theme.scss +2 -1
- package/scss/chat/_layout.scss +24 -20
- package/scss/chat/_variables.scss +5 -5
- package/scss/checkbox/_theme.scss +1 -1
- package/scss/chip/_layout.scss +2 -0
- package/scss/chip/_theme.scss +1 -0
- package/scss/combobox/_layout.scss +0 -22
- package/scss/datetime/_layout.scss +0 -45
- package/scss/dropdownlist/_layout.scss +0 -12
- package/scss/editor/_layout.scss +84 -0
- package/scss/editor/_theme.scss +9 -0
- package/scss/editor/_variables.scss +8 -0
- package/scss/forms/_layout.scss +2 -1
- package/scss/input/_layout.scss +3 -16
- package/scss/menu/_layout.scss +0 -1
- package/scss/multiselect/_layout.scss +0 -19
- package/scss/numerictextbox/_layout.scss +0 -11
- package/scss/pivotgrid/_layout.scss +21 -0
- package/scss/popup/_layout.scss +0 -4
- package/scss/searchbox/_layout.scss +1 -0
- package/scss/spreadsheet/_layout.scss +0 -4
- package/scss/utils/_border.scss +5 -0
- package/scss/window/_layout.scss +1 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-default",
|
|
3
3
|
"description": "SASS resources for the default Kendo UI theme",
|
|
4
|
-
"version": "4.42.
|
|
4
|
+
"version": "4.42.1-dev.3",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"dart:flat": "gulp dart:flat",
|
|
48
48
|
"prepublishOnly": "echo 'no prebublish for default theme'"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "39ad5cd911f1a5d7a041e0929f0dcd04339e4f64"
|
|
51
51
|
}
|
|
@@ -33,26 +33,6 @@
|
|
|
33
33
|
height: $input-icon-height;
|
|
34
34
|
}
|
|
35
35
|
|
|
36
|
-
|
|
37
|
-
// Clear value
|
|
38
|
-
.k-clear-value {
|
|
39
|
-
visibility: hidden;
|
|
40
|
-
}
|
|
41
|
-
&:hover,
|
|
42
|
-
// &:focus-within,
|
|
43
|
-
&.k-state-hover,
|
|
44
|
-
&.k-state-focused,
|
|
45
|
-
&.k-state-focus {
|
|
46
|
-
.k-clear-value {
|
|
47
|
-
visibility: visible;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
&:focus-within {
|
|
51
|
-
.k-clear-value {
|
|
52
|
-
visibility: visible;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
36
|
}
|
|
57
37
|
|
|
58
38
|
|
package/scss/card/_layout.scss
CHANGED
|
@@ -187,13 +187,6 @@
|
|
|
187
187
|
flex-shrink: 0;
|
|
188
188
|
flex-basis: auto;
|
|
189
189
|
gap: $card-actions-gap;
|
|
190
|
-
|
|
191
|
-
> .k-button {
|
|
192
|
-
padding-left: calc( #{$card-body-padding-x} - ( #{$card-actions-padding-x} + #{$button-border-width} ) );
|
|
193
|
-
padding-right: calc( #{$card-body-padding-x} - ( #{$card-actions-padding-x} + #{$button-border-width} ) );
|
|
194
|
-
max-width: 100%;
|
|
195
|
-
white-space: normal;
|
|
196
|
-
}
|
|
197
190
|
}
|
|
198
191
|
|
|
199
192
|
|
|
@@ -208,40 +201,9 @@
|
|
|
208
201
|
.k-card-actions-vertical { flex-flow: column nowrap; } // stylelint-disable-line block-opening-brace-space-before
|
|
209
202
|
|
|
210
203
|
|
|
211
|
-
//
|
|
212
|
-
.k-card-actions-stretched {
|
|
213
|
-
|
|
214
|
-
gap: 0;
|
|
215
|
-
|
|
216
|
-
> .k-button,
|
|
217
|
-
> .k-card-action {
|
|
218
|
-
flex: 1 1 auto;
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
// TODO: refactor once we have button size
|
|
222
|
-
.k-button {
|
|
223
|
-
@include border-radius( 0 );
|
|
224
|
-
padding-top: calc( #{$card-actions-padding-y} + #{$button-padding-y} );
|
|
225
|
-
padding-bottom: calc( #{$card-actions-padding-y} + #{$button-padding-y} );
|
|
226
|
-
}
|
|
227
|
-
|
|
228
|
-
.k-card & {
|
|
229
|
-
border-top-width: $card-actions-border-width;
|
|
230
|
-
}
|
|
231
|
-
.k-card-horizontal > & {
|
|
232
|
-
border-top-width: 0;
|
|
233
|
-
border-inline-start-width: $card-actions-border-width;
|
|
234
|
-
}
|
|
235
|
-
.k-card-vertical > & {
|
|
236
|
-
border-top-width: $card-actions-border-width;
|
|
237
|
-
}
|
|
238
|
-
|
|
239
|
-
&.k-card-actions-horizontal > .k-card-action + .k-card-action {
|
|
240
|
-
border-inline-start-width: $card-actions-border-width;
|
|
241
|
-
}
|
|
242
|
-
&.k-card-actions-vertical > .k-card-action + .k-card-action {
|
|
243
|
-
border-top-width: $card-actions-border-width;
|
|
244
|
-
}
|
|
204
|
+
// Stretched actions
|
|
205
|
+
.k-card-actions-stretched > * {
|
|
206
|
+
flex: 1 1 auto;
|
|
245
207
|
}
|
|
246
208
|
|
|
247
209
|
|
|
@@ -367,6 +329,7 @@
|
|
|
367
329
|
height: $card-callout-height;
|
|
368
330
|
border-width: $card-border-width $card-border-width 0 0;
|
|
369
331
|
border-style: solid;
|
|
332
|
+
box-sizing: border-box;
|
|
370
333
|
position: absolute;
|
|
371
334
|
}
|
|
372
335
|
|
|
@@ -415,33 +378,6 @@
|
|
|
415
378
|
|
|
416
379
|
|
|
417
380
|
|
|
418
|
-
@include exports("card/layout/rtl") {
|
|
419
|
-
|
|
420
|
-
.k-rtl,
|
|
421
|
-
[dir="rtl"] {
|
|
422
|
-
|
|
423
|
-
.k-card-actions-stretched {
|
|
424
|
-
.k-card-action + .k-card-action {
|
|
425
|
-
border-right-width: $card-actions-border-width;
|
|
426
|
-
border-left-width: 0;
|
|
427
|
-
}
|
|
428
|
-
}
|
|
429
|
-
|
|
430
|
-
.k-card-horizontal {
|
|
431
|
-
> .k-card-actions-stretched,
|
|
432
|
-
.k-card-actions-vertical {
|
|
433
|
-
border-right-width: $card-actions-border-width;
|
|
434
|
-
border-left-width: 0;
|
|
435
|
-
}
|
|
436
|
-
}
|
|
437
|
-
|
|
438
|
-
}
|
|
439
|
-
|
|
440
|
-
}
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
381
|
@include exports("card/layout/ie11") {
|
|
446
382
|
|
|
447
383
|
.k-ie11 {
|
package/scss/card/_theme.scss
CHANGED
package/scss/chat/_layout.scss
CHANGED
|
@@ -266,14 +266,24 @@
|
|
|
266
266
|
|
|
267
267
|
// Message box
|
|
268
268
|
.k-message-box {
|
|
269
|
+
width: 100%;
|
|
270
|
+
height: auto;
|
|
269
271
|
padding: $chat-message-box-padding-y $chat-message-box-padding-x;
|
|
272
|
+
box-sizing: border-box;
|
|
270
273
|
border-width: 1px 0 0;
|
|
271
274
|
border-style: solid;
|
|
272
|
-
flex:
|
|
275
|
+
flex: none;
|
|
273
276
|
display: flex;
|
|
274
277
|
flex-flow: row nowrap;
|
|
275
278
|
align-items: center;
|
|
276
279
|
|
|
280
|
+
&:focus,
|
|
281
|
+
&.k-state-focus,
|
|
282
|
+
&:focus-within {
|
|
283
|
+
outline: 0;
|
|
284
|
+
box-shadow: none;
|
|
285
|
+
}
|
|
286
|
+
|
|
277
287
|
// Input
|
|
278
288
|
.k-input {
|
|
279
289
|
padding: 0;
|
|
@@ -411,11 +421,17 @@
|
|
|
411
421
|
|
|
412
422
|
.k-chat-toolbar,
|
|
413
423
|
.k-chat .k-toolbar-box {
|
|
424
|
+
padding: $chat-toolbar-padding-y $chat-toolbar-padding-x;
|
|
414
425
|
width: 100%;
|
|
426
|
+
border-width: 1px 0 0;
|
|
415
427
|
box-sizing: border-box;
|
|
428
|
+
flex: none;
|
|
416
429
|
overflow: hidden;
|
|
417
430
|
position: relative;
|
|
418
|
-
|
|
431
|
+
|
|
432
|
+
&::before {
|
|
433
|
+
display: none;
|
|
434
|
+
}
|
|
419
435
|
|
|
420
436
|
.k-button-list {
|
|
421
437
|
// Needed for native scrolling. Will uncoment when it's implemented.
|
|
@@ -426,18 +442,13 @@
|
|
|
426
442
|
overflow: hidden;
|
|
427
443
|
// overflow-x: auto;
|
|
428
444
|
scroll-behavior: smooth;
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
// fix for flex container disregarding the right padding
|
|
432
|
-
&::after {
|
|
433
|
-
content: "";
|
|
434
|
-
padding-right: $chat-toolbar-padding-x;
|
|
435
|
-
}
|
|
445
|
+
}
|
|
436
446
|
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
447
|
+
.k-button {
|
|
448
|
+
border-color: transparent;
|
|
449
|
+
color: inherit;
|
|
450
|
+
background: none;
|
|
451
|
+
flex: none;
|
|
441
452
|
}
|
|
442
453
|
|
|
443
454
|
|
|
@@ -454,13 +465,6 @@
|
|
|
454
465
|
right: 0;
|
|
455
466
|
}
|
|
456
467
|
|
|
457
|
-
.k-button {
|
|
458
|
-
border-width: 0;
|
|
459
|
-
color: inherit;
|
|
460
|
-
background: none;
|
|
461
|
-
flex-shrink: 0;
|
|
462
|
-
}
|
|
463
|
-
|
|
464
468
|
|
|
465
469
|
}
|
|
466
470
|
|
|
@@ -32,12 +32,12 @@ $chat-bubble-border-radius-sm: 2px !default;
|
|
|
32
32
|
$chat-avatar-size: 32px !default;
|
|
33
33
|
$chat-avatar-spacing: $chat-item-spacing-x !default;
|
|
34
34
|
|
|
35
|
-
$chat-message-box-padding-x: $
|
|
36
|
-
$chat-message-box-padding-y:
|
|
35
|
+
$chat-message-box-padding-x: $input-padding-x !default;
|
|
36
|
+
$chat-message-box-padding-y: $input-padding-y !default;
|
|
37
37
|
|
|
38
|
-
$chat-toolbar-padding-x: $
|
|
39
|
-
$chat-toolbar-padding-y:
|
|
40
|
-
$chat-toolbar-spacing:
|
|
38
|
+
$chat-toolbar-padding-x: $toolbar-padding-x !default;
|
|
39
|
+
$chat-toolbar-padding-y: $toolbar-padding-y !default;
|
|
40
|
+
$chat-toolbar-spacing: $toolbar-spacing !default;
|
|
41
41
|
$chat-toolbar-bg: $toolbar-bg !default;
|
|
42
42
|
$chat-toolbar-text: $toolbar-text !default;
|
|
43
43
|
$chat-toolbar-border: inherit !default;
|
package/scss/chip/_layout.scss
CHANGED
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
font-size: $chip-selected-icon-font-size;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
+
.k-chip.k-state-selected .k-selected-icon-wrapper,
|
|
38
39
|
.k-chip.k-selected .k-selected-icon-wrapper {
|
|
39
40
|
width: $chip-selected-icon-size;
|
|
40
41
|
visibility: visible;
|
|
@@ -54,6 +55,7 @@
|
|
|
54
55
|
transition: width .2s, opacity .2s;
|
|
55
56
|
}
|
|
56
57
|
|
|
58
|
+
&.k-state-selected .k-selected-icon-wrapper,
|
|
57
59
|
&.k-selected .k-selected-icon-wrapper {
|
|
58
60
|
opacity: 1;
|
|
59
61
|
}
|
package/scss/chip/_theme.scss
CHANGED
|
@@ -36,28 +36,6 @@
|
|
|
36
36
|
// Input
|
|
37
37
|
.k-input {}
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
// Clear value
|
|
41
|
-
.k-clear-value {
|
|
42
|
-
visibility: hidden;
|
|
43
|
-
}
|
|
44
|
-
&:hover,
|
|
45
|
-
// &:focus-within,
|
|
46
|
-
&.k-state-hover,
|
|
47
|
-
&.k-state-focused,
|
|
48
|
-
&.k-state-focus,
|
|
49
|
-
.k-dropdown-wrap.k-state-hover,
|
|
50
|
-
.k-dropdown-wrap.k-state-focused {
|
|
51
|
-
.k-clear-value {
|
|
52
|
-
visibility: visible;
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
&:focus-within {
|
|
56
|
-
.k-clear-value {
|
|
57
|
-
visibility: visible;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
|
|
61
39
|
// Select
|
|
62
40
|
.k-select {
|
|
63
41
|
@include border-right-radius-only( $input-border-radius );
|
|
@@ -77,26 +77,11 @@
|
|
|
77
77
|
}
|
|
78
78
|
|
|
79
79
|
|
|
80
|
-
// Validation icon
|
|
81
|
-
.k-i-warning {
|
|
82
|
-
position: absolute;
|
|
83
|
-
right: $padding-x;
|
|
84
|
-
top: 50%;
|
|
85
|
-
transform: translateY(-50%);
|
|
86
|
-
overflow: visible;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
|
|
90
80
|
// RTL
|
|
91
81
|
.k-rtl &,
|
|
92
82
|
&[dir="rtl"] {
|
|
93
83
|
text-align: right;
|
|
94
84
|
|
|
95
|
-
.k-dateinput-wrap .k-i-warning {
|
|
96
|
-
left: $padding-x;
|
|
97
|
-
right: auto;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
85
|
.k-select {
|
|
101
86
|
@include border-left-radius-only( $input-border-radius );
|
|
102
87
|
border-width: 0 $picker-select-border-width 0 0;
|
|
@@ -184,16 +169,6 @@
|
|
|
184
169
|
}
|
|
185
170
|
|
|
186
171
|
|
|
187
|
-
// Validation icon
|
|
188
|
-
.k-i-warning {
|
|
189
|
-
position: absolute;
|
|
190
|
-
top: 50%;
|
|
191
|
-
right: calc( #{ $button-inner-calc-size } + #{ $input-padding-x-sm });
|
|
192
|
-
transform: translateY(-50%);
|
|
193
|
-
overflow: visible;
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
|
|
197
172
|
// RTL
|
|
198
173
|
.k-rtl &,
|
|
199
174
|
&[dir="rtl"] {
|
|
@@ -203,11 +178,6 @@
|
|
|
203
178
|
@include border-left-radius-only( $input-border-radius );
|
|
204
179
|
border-width: 0 $picker-select-border-width 0 0;
|
|
205
180
|
}
|
|
206
|
-
|
|
207
|
-
.k-i-warning {
|
|
208
|
-
right: auto;
|
|
209
|
-
left: calc( #{ $button-inner-calc-size } + #{ $input-padding-x-sm });
|
|
210
|
-
}
|
|
211
181
|
}
|
|
212
182
|
}
|
|
213
183
|
|
|
@@ -279,16 +249,6 @@
|
|
|
279
249
|
}
|
|
280
250
|
|
|
281
251
|
|
|
282
|
-
// Validation icon
|
|
283
|
-
.k-i-warning {
|
|
284
|
-
position: absolute;
|
|
285
|
-
top: 50%;
|
|
286
|
-
right: calc( #{ $button-inner-calc-size } * 2 + #{ $input-padding-x-sm });
|
|
287
|
-
transform: translateY(-50%);
|
|
288
|
-
overflow: visible;
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
|
|
292
252
|
// RTL
|
|
293
253
|
.k-rtl &,
|
|
294
254
|
&[dir="rtl"] {
|
|
@@ -298,11 +258,6 @@
|
|
|
298
258
|
@include border-left-radius-only( $input-border-radius );
|
|
299
259
|
border-width: 0 $picker-select-border-width 0 0;
|
|
300
260
|
}
|
|
301
|
-
|
|
302
|
-
.k-i-warning {
|
|
303
|
-
right: auto;
|
|
304
|
-
left: calc( #{ $button-inner-calc-size } * 2 + #{ $input-padding-x-sm });
|
|
305
|
-
}
|
|
306
261
|
}
|
|
307
262
|
}
|
|
308
263
|
|
package/scss/editor/_layout.scss
CHANGED
|
@@ -68,6 +68,89 @@
|
|
|
68
68
|
overflow: auto;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
+
// Resizable images
|
|
72
|
+
.k-editor-resize-handles-wrapper {
|
|
73
|
+
position: absolute;
|
|
74
|
+
visibility: hidden;
|
|
75
|
+
}
|
|
76
|
+
.k-editor-resize-handle {
|
|
77
|
+
width: $editor-resize-handle-size;
|
|
78
|
+
height: $editor-resize-handle-size;
|
|
79
|
+
border-width: $editor-resize-handle-border-width;
|
|
80
|
+
border-style: solid;
|
|
81
|
+
position: absolute;
|
|
82
|
+
visibility: visible;
|
|
83
|
+
z-index: 100;
|
|
84
|
+
|
|
85
|
+
&.northwest {
|
|
86
|
+
top: 0;
|
|
87
|
+
left: 0;
|
|
88
|
+
transform: translate(-50%, -50%);
|
|
89
|
+
cursor: nw-resize;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
&.north {
|
|
93
|
+
top: 0;
|
|
94
|
+
left: 50%;
|
|
95
|
+
transform: translate(-50%, -50%);
|
|
96
|
+
cursor: n-resize;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
&.northeast {
|
|
100
|
+
top: 0;
|
|
101
|
+
right: 0;
|
|
102
|
+
transform: translate(50%, -50%);
|
|
103
|
+
cursor: ne-resize;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
&.southwest {
|
|
107
|
+
left: 0;
|
|
108
|
+
bottom: 0;
|
|
109
|
+
transform: translate(-50%, 50%);
|
|
110
|
+
cursor: sw-resize;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
&.south {
|
|
114
|
+
bottom: 0;
|
|
115
|
+
left: 50%;
|
|
116
|
+
transform: translate(-50%, 50%);
|
|
117
|
+
cursor: s-resize;
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
&.southeast {
|
|
121
|
+
right: 0;
|
|
122
|
+
bottom: 0;
|
|
123
|
+
transform: translate(50%, 50%);
|
|
124
|
+
cursor: se-resize;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
&.west {
|
|
128
|
+
top: 50%;
|
|
129
|
+
left: 0;
|
|
130
|
+
transform: translate(-50%, -50%);
|
|
131
|
+
cursor: w-resize;
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
&.east {
|
|
135
|
+
top: 50%;
|
|
136
|
+
right: 0;
|
|
137
|
+
transform: translate(50%, -50%);
|
|
138
|
+
cursor: e-resize;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
.ProseMirror-selectednode { // sass-lint:disable-line class-name-format
|
|
142
|
+
outline-width: $editor-selectednode-outline-width;
|
|
143
|
+
outline-style: solid;
|
|
144
|
+
}
|
|
145
|
+
.ProseMirror-hideselection { // sass-lint:disable-line class-name-format
|
|
146
|
+
caret-color: transparent;
|
|
147
|
+
|
|
148
|
+
*::selection,
|
|
149
|
+
*::-moz-selection {
|
|
150
|
+
background: transparent;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
|
|
71
154
|
// Toolbar
|
|
72
155
|
.k-editor > .k-toolbar {
|
|
73
156
|
border-width: 0 0 $toolbar-border-width 0;
|
|
@@ -141,6 +224,7 @@
|
|
|
141
224
|
padding: $padding-x;
|
|
142
225
|
width: 100%;
|
|
143
226
|
height: 100%;
|
|
227
|
+
position: relative;
|
|
144
228
|
box-sizing: border-box;
|
|
145
229
|
outline: none;
|
|
146
230
|
white-space: pre-wrap;
|
package/scss/editor/_theme.scss
CHANGED
|
@@ -52,6 +52,15 @@
|
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
|
|
55
|
+
// Resizable images
|
|
56
|
+
.k-editor-resize-handle {
|
|
57
|
+
background-color: $editor-resize-handle-bg;
|
|
58
|
+
border-color: $editor-resize-handle-border;
|
|
59
|
+
}
|
|
60
|
+
.ProseMirror-selectednode { // sass-lint:disable-line class-name-format
|
|
61
|
+
outline-color: $editor-selectednode-outline-color;
|
|
62
|
+
}
|
|
63
|
+
|
|
55
64
|
|
|
56
65
|
// Insert table
|
|
57
66
|
.k-ct-popup {
|
|
@@ -13,3 +13,11 @@ $editor-selected-bg: $primary !default;
|
|
|
13
13
|
$editor-highlighted-bg: mix($primary, #ffffff, 20%) !default;
|
|
14
14
|
|
|
15
15
|
$editor-export-tool-icon-margin-x: .25em !default;
|
|
16
|
+
|
|
17
|
+
$editor-resize-handle-size: 5px !default;
|
|
18
|
+
$editor-resize-handle-border-width: 1px !default;
|
|
19
|
+
$editor-resize-handle-border: #000000 !default;
|
|
20
|
+
$editor-resize-handle-bg: #ffffff !default;
|
|
21
|
+
|
|
22
|
+
$editor-selectednode-outline-width: 2px !default;
|
|
23
|
+
$editor-selectednode-outline-color: #8cf !default; // sass-lint:disable-line hex-length
|
package/scss/forms/_layout.scss
CHANGED
|
@@ -159,7 +159,7 @@
|
|
|
159
159
|
.k-maskedtextbox,
|
|
160
160
|
.k-textbox-container,
|
|
161
161
|
.k-floating-label-container {
|
|
162
|
-
display: flex;
|
|
162
|
+
display: inline-flex;
|
|
163
163
|
width: 100%;
|
|
164
164
|
}
|
|
165
165
|
|
|
@@ -220,6 +220,7 @@
|
|
|
220
220
|
margin-right: $horizontal-form-label-margin-x;
|
|
221
221
|
padding-top: $horizontal-form-label-padding-top;
|
|
222
222
|
width: $horizontal-form-label-width;
|
|
223
|
+
text-align: end;
|
|
223
224
|
flex-direction: column;
|
|
224
225
|
align-items: $horizontal-form-label-align;
|
|
225
226
|
justify-content: flex-start;
|
package/scss/input/_layout.scss
CHANGED
|
@@ -116,7 +116,9 @@
|
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
// Input with icon styles
|
|
119
|
-
.k-input-icon
|
|
119
|
+
.k-input-icon,
|
|
120
|
+
.k-input-validation-icon,
|
|
121
|
+
.k-input-loading-icon {
|
|
120
122
|
width: $input-icon-width;
|
|
121
123
|
height: $input-icon-height;
|
|
122
124
|
display: inline-flex;
|
|
@@ -124,21 +126,6 @@
|
|
|
124
126
|
align-items: center;
|
|
125
127
|
justify-content: center;
|
|
126
128
|
flex-shrink: 0;
|
|
127
|
-
|
|
128
|
-
.k-ie9 & {
|
|
129
|
-
position: absolute;
|
|
130
|
-
height: 100%;
|
|
131
|
-
right: 0;
|
|
132
|
-
top: 0;
|
|
133
|
-
}
|
|
134
|
-
|
|
135
|
-
.k-rtl &,
|
|
136
|
-
[dir="rtl"] & {
|
|
137
|
-
.k-ie9 & {
|
|
138
|
-
left: 0;
|
|
139
|
-
right: auto;
|
|
140
|
-
}
|
|
141
|
-
}
|
|
142
129
|
}
|
|
143
130
|
|
|
144
131
|
|
package/scss/menu/_layout.scss
CHANGED
|
@@ -107,18 +107,10 @@
|
|
|
107
107
|
|
|
108
108
|
// Clear value
|
|
109
109
|
.k-clear-value {
|
|
110
|
-
visibility: hidden;
|
|
111
110
|
position: absolute;
|
|
112
111
|
top: 0;
|
|
113
112
|
right: 0;
|
|
114
113
|
}
|
|
115
|
-
&:hover,
|
|
116
|
-
&.k-state-hover,
|
|
117
|
-
&.k-state-focused {
|
|
118
|
-
.k-clear-value {
|
|
119
|
-
visibility: visible;
|
|
120
|
-
}
|
|
121
|
-
}
|
|
122
114
|
|
|
123
115
|
// Select
|
|
124
116
|
> .k-select {
|
|
@@ -140,17 +132,6 @@
|
|
|
140
132
|
right: $multiselect-clear-right;
|
|
141
133
|
}
|
|
142
134
|
|
|
143
|
-
|
|
144
|
-
&.k-state-hover,
|
|
145
|
-
&.k-state-focused,
|
|
146
|
-
&.k-state-focus {
|
|
147
|
-
> .k-multiselect-wrap {
|
|
148
|
-
.k-clear-value {
|
|
149
|
-
visibility: visible;
|
|
150
|
-
}
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
|
|
154
135
|
&[dir="rtl"],
|
|
155
136
|
.k-rtl & {
|
|
156
137
|
text-align: right;
|
|
@@ -81,23 +81,12 @@
|
|
|
81
81
|
top: -$spinner-icon-offset;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
.k-i-warning {
|
|
85
|
-
align-self: center;
|
|
86
|
-
margin-right: $spacer-x / 2;
|
|
87
|
-
}
|
|
88
|
-
|
|
89
84
|
|
|
90
85
|
// RTL
|
|
91
86
|
.k-rtl &,
|
|
92
87
|
&[dir="rtl"] {
|
|
93
88
|
text-align: right;
|
|
94
89
|
|
|
95
|
-
.k-numeric-wrap .k-i-warning {
|
|
96
|
-
align-self: center;
|
|
97
|
-
margin-right: 0;
|
|
98
|
-
margin-left: $spacer-x / 2;
|
|
99
|
-
}
|
|
100
|
-
|
|
101
90
|
.k-select {
|
|
102
91
|
@include border-left-radius-only( $input-border-radius );
|
|
103
92
|
border-width: 0 $picker-select-border-width 0 0;
|