@progress/kendo-theme-default 5.0.0-beta.2 → 5.0.0-beta.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/README.md +5 -8
- package/dist/all.css +1060 -935
- package/dist/all.scss +1766 -1499
- package/package.json +2 -2
- package/scss/_layout.scss +0 -0
- package/scss/adaptive/_layout.scss +0 -3
- package/scss/appbar/_layout.scss +19 -3
- package/scss/button/_layout.scss +1 -38
- package/scss/card/_variables.scss +4 -4
- package/scss/chat/_layout.scss +1 -3
- package/scss/chat/_theme.scss +0 -8
- package/scss/chat/_variables.scss +0 -2
- package/scss/checkbox/_index.scss +1 -1
- package/scss/checkbox/_layout.scss +44 -27
- package/scss/checkbox/_variables.scss +2 -8
- package/scss/color-preview/_layout.scss +23 -24
- package/scss/color-preview/_theme.scss +0 -14
- package/scss/coloreditor/_layout.scss +5 -1
- package/scss/coloreditor/_variables.scss +3 -3
- package/scss/combobox/_layout.scss +1 -1
- package/scss/combobox/_theme.scss +1 -1
- package/scss/combobox/_variables.scss +1 -31
- package/scss/daterangepicker/_layout.scss +16 -1
- package/scss/datetimepicker/_layout.scss +39 -2
- package/scss/editor/_layout.scss +24 -7
- package/scss/fab/_layout.scss +24 -58
- package/scss/fab/_theme.scss +43 -48
- package/scss/fab/_variables.scss +129 -72
- package/scss/fab/index.md +0 -0
- package/scss/forms/_layout.scss +4 -2
- package/scss/grid/_layout.scss +95 -98
- package/scss/grid/_variables.scss +7 -7
- package/scss/imageeditor/_layout.scss +4 -8
- package/scss/imageeditor/_variables.scss +1 -0
- package/scss/index.scss +1 -0
- package/scss/input/_layout.scss +17 -0
- package/scss/input/_variables.scss +3 -3
- package/scss/list/_index.scss +1 -0
- package/scss/list/_layout.scss +10 -2
- package/scss/listbox/_variables.scss +1 -1
- package/scss/listview/_layout.scss +2 -9
- package/scss/map/_layout.scss +17 -0
- package/scss/maskedtextbox/_layout.scss +1 -1
- package/scss/maskedtextbox/_theme.scss +1 -1
- package/scss/mediaplayer/_layout.scss +5 -0
- package/scss/menu/_layout.scss +58 -29
- package/scss/menu/_variables.scss +13 -1
- package/scss/multiselect/_layout.scss +4 -1
- package/scss/multiselect/_theme.scss +4 -1
- package/scss/numerictextbox/_layout.scss +12 -2
- package/scss/numerictextbox/_theme.scss +1 -1
- package/scss/orgchart/_variables.scss +2 -2
- package/scss/pager/_variables.scss +1 -1
- package/scss/pdf-viewer/_layout.scss +23 -16
- package/scss/pdf-viewer/_variables.scss +2 -5
- package/scss/radio/_index.scss +1 -1
- package/scss/radio/_layout.scss +43 -27
- package/scss/radio/_variables.scss +2 -8
- package/scss/scheduler/_layout.scss +1 -1
- package/scss/spreadsheet/_layout.scss +29 -20
- package/scss/table/_layout.scss +26 -5
- package/scss/table/_theme.scss +3 -2
- package/scss/table/_variables.scss +9 -9
- package/scss/tabstrip/_layout.scss +1 -1
- package/scss/toolbar/_layout.scss +29 -2
- package/scss/toolbar/_theme.scss +35 -7
- package/scss/toolbar/_variables.scss +2 -0
- package/scss/treeview/_layout.scss +108 -113
- package/scss/treeview/_theme.scss +38 -29
- package/scss/treeview/_variables.scss +34 -50
- package/scss/typography/_variables.scss +3 -3
- package/scss/virtual-scroller/_index.scss +10 -0
- package/scss/virtual-scroller/_layout.scss +35 -0
- package/scss/virtual-scroller/_theme.scss +3 -0
- package/scss/virtual-scroller/_variables.scss +1 -0
- package/scss/window/_variables.scss +1 -1
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": "5.0.0-beta.
|
|
4
|
+
"version": "5.0.0-beta.3",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"prepublishOnly": "echo 'no prebublish for default theme'",
|
|
48
48
|
"postpublish": "echo 'no postpublish for default theme'"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "a508e10c60c1c14b569a908ef7f8584cf449a421"
|
|
51
51
|
}
|
|
File without changes
|
package/scss/appbar/_layout.scss
CHANGED
|
@@ -22,7 +22,6 @@
|
|
|
22
22
|
|
|
23
23
|
> * {
|
|
24
24
|
flex-shrink: 0;
|
|
25
|
-
|
|
26
25
|
}
|
|
27
26
|
|
|
28
27
|
// Appbar section
|
|
@@ -32,15 +31,16 @@
|
|
|
32
31
|
align-items: center;
|
|
33
32
|
}
|
|
34
33
|
|
|
34
|
+
|
|
35
35
|
// Appbar Spacer
|
|
36
36
|
.k-appbar-spacer {
|
|
37
37
|
flex: 1 0 auto;
|
|
38
38
|
}
|
|
39
|
-
|
|
40
39
|
.k-appbar-spacer-sized {
|
|
41
40
|
flex-grow: 0;
|
|
42
41
|
}
|
|
43
42
|
|
|
43
|
+
|
|
44
44
|
// Separator
|
|
45
45
|
.k-appbar-separator {
|
|
46
46
|
margin: 0;
|
|
@@ -50,12 +50,24 @@
|
|
|
50
50
|
border-width: 0 0 0 1px;
|
|
51
51
|
display: inline-block;
|
|
52
52
|
}
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
// Input
|
|
56
|
+
.k-input,
|
|
57
|
+
.k-picker:not(.k-colorpicker) {
|
|
58
|
+
width: 10em;
|
|
59
|
+
}
|
|
60
|
+
|
|
53
61
|
}
|
|
54
62
|
|
|
63
|
+
|
|
64
|
+
// Static appbar
|
|
55
65
|
.k-appbar-static {
|
|
56
66
|
position: static;
|
|
57
67
|
}
|
|
58
68
|
|
|
69
|
+
|
|
70
|
+
// Sticky appbar
|
|
59
71
|
.k-appbar-sticky {
|
|
60
72
|
width: 100%;
|
|
61
73
|
position: sticky;
|
|
@@ -63,17 +75,20 @@
|
|
|
63
75
|
z-index: $appbar-zindex;
|
|
64
76
|
}
|
|
65
77
|
|
|
78
|
+
|
|
79
|
+
// Fixed appbar
|
|
66
80
|
.k-appbar-fixed {
|
|
67
81
|
width: 100%;
|
|
68
82
|
position: fixed;
|
|
69
83
|
z-index: 1;
|
|
70
84
|
}
|
|
71
85
|
|
|
86
|
+
|
|
87
|
+
// Appbar position
|
|
72
88
|
.k-appbar-top {
|
|
73
89
|
top: 0;
|
|
74
90
|
bottom: auto;
|
|
75
91
|
}
|
|
76
|
-
|
|
77
92
|
.k-appbar-bottom {
|
|
78
93
|
top: auto;
|
|
79
94
|
bottom: 0;
|
|
@@ -82,4 +97,5 @@
|
|
|
82
97
|
bottom: 0;
|
|
83
98
|
}
|
|
84
99
|
}
|
|
100
|
+
|
|
85
101
|
}
|
package/scss/button/_layout.scss
CHANGED
|
@@ -361,7 +361,7 @@
|
|
|
361
361
|
.k-button {
|
|
362
362
|
|
|
363
363
|
&::after {
|
|
364
|
-
@include border-radius(
|
|
364
|
+
@include border-radius( inherit );
|
|
365
365
|
content: "";
|
|
366
366
|
opacity: 0;
|
|
367
367
|
display: none;
|
|
@@ -376,40 +376,3 @@
|
|
|
376
376
|
}
|
|
377
377
|
}
|
|
378
378
|
}
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
@include exports( "button/ie-compat" ) {
|
|
384
|
-
|
|
385
|
-
.k-ie {
|
|
386
|
-
|
|
387
|
-
.k-button,
|
|
388
|
-
.k-button-group {
|
|
389
|
-
display: inline-block;
|
|
390
|
-
overflow: visible; // IE9
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
.k-button-icontext {
|
|
394
|
-
|
|
395
|
-
.k-icon,
|
|
396
|
-
.k-image,
|
|
397
|
-
.k-sprite {
|
|
398
|
-
margin: 0 $icon-spacing 0 0;
|
|
399
|
-
}
|
|
400
|
-
|
|
401
|
-
&.k-rtl,
|
|
402
|
-
.k-rtl &,
|
|
403
|
-
&[dir="rtl"],
|
|
404
|
-
[dir="rtl"] & {
|
|
405
|
-
.k-icon,
|
|
406
|
-
.k-image,
|
|
407
|
-
.k-sprite {
|
|
408
|
-
margin: 0 0 0 $icon-spacing;
|
|
409
|
-
}
|
|
410
|
-
}
|
|
411
|
-
}
|
|
412
|
-
|
|
413
|
-
}
|
|
414
|
-
|
|
415
|
-
}
|
|
@@ -38,15 +38,15 @@ $card-footer-text: $header-text !default;
|
|
|
38
38
|
$card-footer-border: $header-border !default;
|
|
39
39
|
|
|
40
40
|
$card-title-margin-bottom: map-get( $spacing, sm ) !default;
|
|
41
|
-
$card-title-font-size: $font-size
|
|
42
|
-
$card-title-font-family:
|
|
43
|
-
$card-title-line-height:
|
|
41
|
+
$card-title-font-size: $h5-font-size !default;
|
|
42
|
+
$card-title-font-family: null !default;
|
|
43
|
+
$card-title-line-height: 1.25 !default;
|
|
44
44
|
$card-title-font-weight: $font-weight-normal !default;
|
|
45
45
|
$card-title-letter-spacing: null !default;
|
|
46
46
|
|
|
47
47
|
$card-subtitle-margin-bottom: map-get( $spacing, sm ) !default;
|
|
48
48
|
$card-subtitle-font-size: $font-size-sm !default;
|
|
49
|
-
$card-subtitle-font-family:
|
|
49
|
+
$card-subtitle-font-family: null !default;
|
|
50
50
|
$card-subtitle-line-height: normal !default;
|
|
51
51
|
$card-subtitle-font-weight: $font-weight-normal !default;
|
|
52
52
|
$card-subtitle-letter-spacing: null !default;
|
package/scss/chat/_layout.scss
CHANGED
|
@@ -288,6 +288,7 @@
|
|
|
288
288
|
.k-input {}
|
|
289
289
|
|
|
290
290
|
.k-button {
|
|
291
|
+
border-width: 0;
|
|
291
292
|
flex-shrink: 0;
|
|
292
293
|
|
|
293
294
|
svg {
|
|
@@ -442,9 +443,6 @@
|
|
|
442
443
|
}
|
|
443
444
|
|
|
444
445
|
.k-button {
|
|
445
|
-
border-color: transparent;
|
|
446
|
-
color: inherit;
|
|
447
|
-
background: none;
|
|
448
446
|
flex: none;
|
|
449
447
|
}
|
|
450
448
|
|
package/scss/chat/_theme.scss
CHANGED
|
@@ -98,14 +98,6 @@
|
|
|
98
98
|
$chat-toolbar-bg,
|
|
99
99
|
$chat-toolbar-border
|
|
100
100
|
);
|
|
101
|
-
|
|
102
|
-
.k-scroll-button {
|
|
103
|
-
@include fill( $bg: $chat-bg );
|
|
104
|
-
@include box-shadow( $chat-toolbar-box-scroll-button-shadow );
|
|
105
|
-
}
|
|
106
|
-
.k-scroll-button:hover {
|
|
107
|
-
@include fill( $bg: $chat-bg );
|
|
108
|
-
}
|
|
109
101
|
}
|
|
110
102
|
|
|
111
103
|
}
|
|
@@ -75,5 +75,3 @@ $chat-message-box-bg: $kendo-input-bg !default;
|
|
|
75
75
|
$chat-message-box-text: $kendo-input-text !default;
|
|
76
76
|
$chat-message-box-border: inherit !default;
|
|
77
77
|
$chat-message-box-focus-shadow: 0 0 40px rgba( $kendo-input-text, .1 ) !default;
|
|
78
|
-
|
|
79
|
-
$chat-toolbar-box-scroll-button-shadow: 0 0 20px 5px $chat-bg !default;
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
background-repeat: no-repeat;
|
|
13
13
|
background-size: contain;
|
|
14
14
|
display: inline-block;
|
|
15
|
+
flex: none;
|
|
15
16
|
vertical-align: middle;
|
|
16
17
|
position: relative;
|
|
17
18
|
cursor: pointer;
|
|
@@ -119,6 +120,26 @@
|
|
|
119
120
|
@include disabled( $disabled-styling );
|
|
120
121
|
}
|
|
121
122
|
|
|
123
|
+
|
|
124
|
+
// Checkbox wrap
|
|
125
|
+
.k-checkbox-wrap {
|
|
126
|
+
flex: none;
|
|
127
|
+
display: inline-flex;
|
|
128
|
+
flex-flow: row nowrap;
|
|
129
|
+
gap: 0;
|
|
130
|
+
align-items: center;
|
|
131
|
+
|
|
132
|
+
&::before {
|
|
133
|
+
content: "\200b";
|
|
134
|
+
width: 0px;
|
|
135
|
+
overflow: hidden;
|
|
136
|
+
flex: none;
|
|
137
|
+
display: inline-block;
|
|
138
|
+
vertical-align: top;
|
|
139
|
+
}
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
|
|
122
143
|
// Checkbox label
|
|
123
144
|
.k-checkbox-label {
|
|
124
145
|
margin: 0;
|
|
@@ -177,7 +198,7 @@
|
|
|
177
198
|
|
|
178
199
|
// Empty label
|
|
179
200
|
.k-checkbox-label:empty {
|
|
180
|
-
display: none;
|
|
201
|
+
display: none !important; // sass-lint:disable-line no-important
|
|
181
202
|
}
|
|
182
203
|
|
|
183
204
|
|
|
@@ -189,25 +210,32 @@
|
|
|
189
210
|
|
|
190
211
|
// Checkbox list
|
|
191
212
|
.k-checkbox-list {
|
|
192
|
-
margin:
|
|
193
|
-
padding:
|
|
213
|
+
margin: 0;
|
|
214
|
+
padding: 0;
|
|
215
|
+
display: flex;
|
|
216
|
+
flex-flow: column nowrap;
|
|
217
|
+
gap: 0;
|
|
194
218
|
list-style: none;
|
|
195
|
-
|
|
196
|
-
.k-checkbox-item {
|
|
197
|
-
padding: $kendo-checkbox-list-item-padding-y $kendo-checkbox-list-item-padding-x;
|
|
198
|
-
}
|
|
199
219
|
}
|
|
200
|
-
|
|
201
|
-
.k-list-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
220
|
+
.k-checkbox-item,
|
|
221
|
+
.k-checkbox-list-item {
|
|
222
|
+
padding: $kendo-checkbox-list-item-padding-y $kendo-checkbox-list-item-padding-x;
|
|
223
|
+
display: flex;
|
|
224
|
+
flex-flow: row nowrap;
|
|
225
|
+
align-items: center;
|
|
226
|
+
align-content: center;
|
|
227
|
+
gap: map-get( $spacing, 1 );
|
|
228
|
+
|
|
229
|
+
.k-checkbox-label {
|
|
230
|
+
line-height: inherit;
|
|
209
231
|
}
|
|
210
232
|
}
|
|
233
|
+
.k-checkbox-list-horizontal,
|
|
234
|
+
.k-checkbox-list.k-list-horizontal {
|
|
235
|
+
display: flex;
|
|
236
|
+
flex-flow: row wrap;
|
|
237
|
+
gap: $kendo-checkbox-list-spacing;
|
|
238
|
+
}
|
|
211
239
|
|
|
212
240
|
|
|
213
241
|
// RTL
|
|
@@ -228,17 +256,6 @@
|
|
|
228
256
|
margin-right: 0;
|
|
229
257
|
margin-left: $kendo-checkbox-label-margin-x;
|
|
230
258
|
}
|
|
231
|
-
|
|
232
|
-
.k-list-horizontal {
|
|
233
|
-
.k-checkbox-item {
|
|
234
|
-
margin-right: 0;
|
|
235
|
-
margin-left: $kendo-checkbox-list-horizontal-item-margin-x;
|
|
236
|
-
|
|
237
|
-
&:last-child {
|
|
238
|
-
margin-left: 0;
|
|
239
|
-
}
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
259
|
}
|
|
243
260
|
|
|
244
261
|
.k-ripple-container {
|
|
@@ -132,21 +132,15 @@ $kendo-checkbox-label-margin-x: map-get( $spacing, 1 ) !default;
|
|
|
132
132
|
|
|
133
133
|
// Checkbox list
|
|
134
134
|
|
|
135
|
-
/// The
|
|
136
|
-
/// @group checkbox
|
|
137
|
-
$kendo-checkbox-list-margin: 0px !default;
|
|
138
|
-
/// The list padding checkbox.
|
|
135
|
+
/// The horizontal margin of list item of checkbox.
|
|
139
136
|
/// @group checkbox
|
|
140
|
-
$kendo-checkbox-list-
|
|
137
|
+
$kendo-checkbox-list-spacing: map-get( $spacing, 4 ) !default;
|
|
141
138
|
/// The horizontal list item padding of checkbox.
|
|
142
139
|
/// @group checkbox
|
|
143
140
|
$kendo-checkbox-list-item-padding-x: 0px !default;
|
|
144
141
|
/// The vertical list item padding of checkbox.
|
|
145
142
|
/// @group checkbox
|
|
146
143
|
$kendo-checkbox-list-item-padding-y: $kendo-list-item-padding-y-md !default;
|
|
147
|
-
/// The horizontal margin of list item of checkbox.
|
|
148
|
-
/// @group checkbox
|
|
149
|
-
$kendo-checkbox-list-horizontal-item-margin-x: 32px !default;
|
|
150
144
|
|
|
151
145
|
|
|
152
146
|
// Checkbox ripple
|
|
@@ -6,31 +6,16 @@
|
|
|
6
6
|
height: 100%;
|
|
7
7
|
border-width: $color-preview-border-width;
|
|
8
8
|
border-radius: $color-preview-border-radius;
|
|
9
|
+
box-sizing: border-box;
|
|
9
10
|
border-style: solid;
|
|
10
11
|
display: inline-flex;
|
|
11
12
|
flex-direction: row;
|
|
12
13
|
flex-wrap: nowrap;
|
|
13
14
|
position: relative;
|
|
14
15
|
overflow: hidden;
|
|
15
|
-
|
|
16
|
-
> .k-color-preview-mask {
|
|
17
|
-
width: 100%;
|
|
18
|
-
height: 100%;
|
|
19
|
-
position: absolute;
|
|
20
|
-
top: 0;
|
|
21
|
-
left: 0;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
&::before {
|
|
25
|
-
content: "";
|
|
26
|
-
width: 100%;
|
|
27
|
-
height: 100%;
|
|
28
|
-
display: block;
|
|
29
|
-
position: relative;
|
|
30
|
-
z-index: -1;
|
|
31
|
-
}
|
|
32
16
|
}
|
|
33
17
|
|
|
18
|
+
|
|
34
19
|
// Current Color
|
|
35
20
|
.k-coloreditor-current-color {
|
|
36
21
|
cursor: pointer;
|
|
@@ -50,23 +35,37 @@
|
|
|
50
35
|
.k-color-preview-mask {
|
|
51
36
|
width: calc( #{$icon-size} - 2px );
|
|
52
37
|
height: 2px;
|
|
53
|
-
position: static;
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
&::before {
|
|
57
|
-
display: none;
|
|
58
38
|
}
|
|
59
39
|
}
|
|
60
40
|
|
|
61
41
|
|
|
62
|
-
//
|
|
63
|
-
.k-
|
|
42
|
+
// Color Preview Mask
|
|
43
|
+
.k-color-preview-mask {
|
|
44
|
+
width: 100%;
|
|
45
|
+
height: 100%;
|
|
46
|
+
position: relative;
|
|
47
|
+
}
|
|
48
|
+
.k-color-preview-mask::before {
|
|
64
49
|
content: "";
|
|
65
50
|
width: 100%;
|
|
66
51
|
height: 100%;
|
|
67
52
|
position: absolute;
|
|
68
53
|
top: 0;
|
|
69
54
|
left: 0;
|
|
55
|
+
z-index: -1;
|
|
56
|
+
background: $color-preview-transparent-color-image;
|
|
57
|
+
background-size: contain;
|
|
58
|
+
background-position: 0 0;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
// No Color
|
|
63
|
+
.k-no-color .k-color-preview-mask::before {
|
|
64
|
+
content: "";
|
|
65
|
+
background-color: $color-preview-no-color-bg;
|
|
66
|
+
background-image: $color-preview-no-color-image;
|
|
67
|
+
background-size: 100% 100%;
|
|
68
|
+
background-position: 0 0;
|
|
70
69
|
}
|
|
71
70
|
|
|
72
71
|
}
|
|
@@ -8,24 +8,10 @@
|
|
|
8
8
|
$color-preview-border
|
|
9
9
|
);
|
|
10
10
|
|
|
11
|
-
&::before {
|
|
12
|
-
background: $color-preview-transparent-color-image;
|
|
13
|
-
background-size: contain;
|
|
14
|
-
background-position: 0;
|
|
15
|
-
}
|
|
16
|
-
|
|
17
11
|
&:hover,
|
|
18
12
|
&.k-hover {
|
|
19
13
|
@include fill( $border: $color-preview-hover-border );
|
|
20
14
|
}
|
|
21
15
|
}
|
|
22
16
|
|
|
23
|
-
// No Color
|
|
24
|
-
.k-no-color::before {
|
|
25
|
-
background-color: $color-preview-no-color-bg;
|
|
26
|
-
background-image: $color-preview-no-color-image;
|
|
27
|
-
background-size: 100% 100%;
|
|
28
|
-
background-position: 0 0;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
17
|
}
|
|
@@ -26,8 +26,12 @@
|
|
|
26
26
|
}
|
|
27
27
|
|
|
28
28
|
.k-coloreditor-preview {
|
|
29
|
-
|
|
29
|
+
display: flex;
|
|
30
|
+
flex-flow: column nowrap;
|
|
31
|
+
align-items: stretch;
|
|
32
|
+
justify-content: center;
|
|
30
33
|
gap: $coloreditor-preview-gap;
|
|
34
|
+
position: relative;
|
|
31
35
|
z-index: 1;
|
|
32
36
|
}
|
|
33
37
|
.k-coloreditor-preview .k-color-preview {
|
|
@@ -18,9 +18,9 @@ $coloreditor-header-padding-y: $coloreditor-spacer !default;
|
|
|
18
18
|
$coloreditor-header-padding-x: $coloreditor-header-padding-y !default;
|
|
19
19
|
$coloreditor-header-actions-gap: ( $coloreditor-spacer / 1.5 ) !default;
|
|
20
20
|
|
|
21
|
-
$coloreditor-preview-gap: ( $
|
|
22
|
-
$coloreditor-color-preview-width:
|
|
23
|
-
$coloreditor-color-preview-height:
|
|
21
|
+
$coloreditor-preview-gap: map-get( $spacing, 1 ) !default;
|
|
22
|
+
$coloreditor-color-preview-width: 32px !default;
|
|
23
|
+
$coloreditor-color-preview-height: 12px !default;
|
|
24
24
|
|
|
25
25
|
$coloreditor-views-padding-y: $coloreditor-spacer !default;
|
|
26
26
|
$coloreditor-views-padding-x: $coloreditor-views-padding-y !default;
|
|
@@ -1,31 +1 @@
|
|
|
1
|
-
//
|
|
2
|
-
$combobox-select-padding-x: 0px !default;
|
|
3
|
-
$combobox-select-padding-y: 0px !default;
|
|
4
|
-
|
|
5
|
-
$combobox-bg: $kendo-input-bg !default;
|
|
6
|
-
$combobox-text: $kendo-input-text !default;
|
|
7
|
-
$combobox-border: $kendo-input-border !default;
|
|
8
|
-
|
|
9
|
-
$combobox-hovered-bg: $kendo-input-hover-bg !default;
|
|
10
|
-
$combobox-hovered-text: $kendo-input-hover-text !default;
|
|
11
|
-
$combobox-hovered-border: $kendo-input-hover-border !default;
|
|
12
|
-
|
|
13
|
-
$combobox-focused-bg: $kendo-input-focus-bg !default;
|
|
14
|
-
$combobox-focused-text: $kendo-input-focus-text !default;
|
|
15
|
-
$combobox-focused-border: $kendo-input-focus-border !default;
|
|
16
|
-
$combobox-focused-shadow: $kendo-input-focus-shadow !default;
|
|
17
|
-
|
|
18
|
-
$combobox-select-bg: $kendo-button-bg !default;
|
|
19
|
-
$combobox-select-text: $kendo-button-text !default;
|
|
20
|
-
$combobox-select-border: $kendo-button-border !default;
|
|
21
|
-
$combobox-select-gradient: $kendo-button-gradient !default;
|
|
22
|
-
|
|
23
|
-
$combobox-select-hovered-bg: $kendo-button-hover-bg !default;
|
|
24
|
-
$combobox-select-hovered-text: $kendo-button-hover-text !default;
|
|
25
|
-
$combobox-select-hovered-border: $kendo-button-hover-border !default;
|
|
26
|
-
$combobox-select-hovered-gradient: $kendo-button-hover-gradient !default;
|
|
27
|
-
|
|
28
|
-
$combobox-select-pressed-bg: $kendo-button-active-bg !default;
|
|
29
|
-
$combobox-select-pressed-text: $kendo-button-active-text !default;
|
|
30
|
-
$combobox-select-pressed-border: $kendo-button-active-border !default;
|
|
31
|
-
$combobox-select-pressed-gradient: $kendo-button-active-gradient !default;
|
|
1
|
+
// Combobox
|
|
@@ -1,3 +1,18 @@
|
|
|
1
|
-
@include exports("daterangepicker/layout") {
|
|
1
|
+
@include exports( "daterangepicker/layout" ) {
|
|
2
|
+
|
|
3
|
+
// Daterange picker
|
|
4
|
+
.k-daterange-picker {
|
|
5
|
+
width: $kendo-input-default-width;
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-flow: row nowrap;
|
|
8
|
+
align-items: flex-start;
|
|
9
|
+
gap: map-get( $spacing, 2 );
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
// Alias
|
|
14
|
+
.k-daterangepicker {
|
|
15
|
+
@extend .k-daterange-picker;
|
|
16
|
+
}
|
|
2
17
|
|
|
3
18
|
}
|
|
@@ -1,6 +1,43 @@
|
|
|
1
1
|
@include exports( "datetimepicker/layout" ) {
|
|
2
2
|
|
|
3
|
-
// Datetime
|
|
4
|
-
.k-
|
|
3
|
+
// Datetime selector
|
|
4
|
+
.k-datetime-selector {
|
|
5
|
+
display: flex;
|
|
6
|
+
transition: transform .2s;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
// Wrap
|
|
10
|
+
.k-datetime-wrap {
|
|
11
|
+
width: $datetime-width;
|
|
12
|
+
overflow: hidden;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
// Inner wrap
|
|
16
|
+
.k-datetime-calendar-wrap,
|
|
17
|
+
.k-datetime-time-wrap {
|
|
18
|
+
text-align: center;
|
|
19
|
+
flex: 0 0 $datetime-width;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
// Tabs
|
|
23
|
+
.k-date-tab .k-datetime-selector {
|
|
24
|
+
transform: translateX(0);
|
|
25
|
+
}
|
|
26
|
+
.k-time-tab .k-datetime-selector {
|
|
27
|
+
transform: translateX(-100%);
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
@include exports( "datetimepicker/layout/rtl" ) {
|
|
33
|
+
|
|
34
|
+
.k-datetimepicker {
|
|
35
|
+
&[dir="rtl"],
|
|
36
|
+
.k-rtl & {
|
|
37
|
+
.k-time-tab .k-datetime-selector {
|
|
38
|
+
transform: translateX(100%);
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
5
42
|
|
|
6
43
|
}
|
package/scss/editor/_layout.scss
CHANGED
|
@@ -153,6 +153,7 @@
|
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
// Toolbar
|
|
156
|
+
.k-editor-toolbar,
|
|
156
157
|
.k-editor > .k-toolbar {
|
|
157
158
|
border-width: 0 0 $toolbar-border-width 0;
|
|
158
159
|
flex-shrink: 0;
|
|
@@ -180,13 +181,10 @@
|
|
|
180
181
|
top: 0;
|
|
181
182
|
right: 0;
|
|
182
183
|
visibility: hidden;
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
width: $toolbar-inner-calc-size;
|
|
188
|
-
height: $toolbar-inner-calc-size;
|
|
189
|
-
position: relative;
|
|
184
|
+
|
|
185
|
+
.k-overflow-anchor {
|
|
186
|
+
position: relative;
|
|
187
|
+
}
|
|
190
188
|
}
|
|
191
189
|
|
|
192
190
|
.k-editor-export {
|
|
@@ -304,6 +302,7 @@
|
|
|
304
302
|
}
|
|
305
303
|
}
|
|
306
304
|
|
|
305
|
+
|
|
307
306
|
// Find and replace dialog
|
|
308
307
|
.k-editor-find-replace {
|
|
309
308
|
.k-content {
|
|
@@ -560,6 +559,24 @@
|
|
|
560
559
|
}
|
|
561
560
|
}
|
|
562
561
|
|
|
562
|
+
// Generic widgets
|
|
563
|
+
.k-numerictextbox {
|
|
564
|
+
width: 10em;
|
|
565
|
+
|
|
566
|
+
& + .k-dropdown-list {
|
|
567
|
+
width: 5em;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
& + .k-colorpicker,
|
|
571
|
+
& + .k-dropdown-list {
|
|
572
|
+
margin-left: map-get( $spacing, 2 );
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
|
|
576
|
+
.k-colorpicker {
|
|
577
|
+
vertical-align: middle;
|
|
578
|
+
}
|
|
579
|
+
|
|
563
580
|
.k-edit-field > .k-checkbox {
|
|
564
581
|
position: relative; // fix scrolling
|
|
565
582
|
}
|