@progress/kendo-theme-default 4.42.1-dev.0 → 4.42.1-dev.1
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 +140 -143
- package/dist/all.scss +140 -172
- 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 +1 -0
- package/scss/chat/_layout.scss +24 -20
- package/scss/chat/_variables.scss +5 -5
- package/scss/checkbox/_theme.scss +1 -1
- 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/multiselect/_layout.scss +0 -19
- package/scss/numerictextbox/_layout.scss +0 -11
- package/scss/searchbox/_layout.scss +1 -0
- package/scss/window/_layout.scss +1 -0
|
@@ -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
|
|
|
@@ -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;
|
package/scss/window/_layout.scss
CHANGED