@progress/kendo-theme-default 4.42.1-dev.1 → 4.43.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 +7968 -9729
- package/dist/all.scss +12193 -12317
- package/package.json +2 -2
- package/scss/action-buttons/_layout.scss +1 -0
- package/scss/adaptive/_layout.scss +6 -12
- package/scss/all.scss +1 -154
- package/scss/autocomplete/_theme.scss +7 -8
- package/scss/autocomplete/_variables.scss +0 -5
- package/scss/avatar/_layout.scss +4 -1
- package/scss/avatar/_variables.scss +1 -1
- package/scss/breadcrumb/_layout.scss +0 -13
- package/scss/button/_layout.scss +0 -12
- package/scss/button/index.md +3 -0
- package/scss/calendar/_theme.scss +5 -2
- package/scss/chat/_layout.scss +3 -5
- package/scss/chat/_theme.scss +0 -10
- package/scss/chat/_variables.scss +0 -8
- package/scss/chip/_layout.scss +2 -0
- package/scss/chip/_theme.scss +1 -0
- package/scss/chip/_variables.scss +4 -4
- package/scss/color-preview/_layout.scss +5 -1
- package/scss/colorgradient/_layout.scss +7 -0
- package/scss/colorpicker/_layout.scss +5 -14
- package/scss/colorpicker/_theme.scss +8 -0
- package/scss/colorpicker/_variables.scss +0 -2
- package/scss/combobox/_layout.scss +4 -7
- package/scss/combobox/_theme.scss +20 -21
- package/scss/combobox/_variables.scss +0 -1
- package/scss/core/functions/_colors.scss +4 -1
- package/scss/core/mixins/_index.scss +1 -0
- package/scss/core/mixins/_module-system.scss +149 -0
- package/scss/datetime/_layout.scss +11 -32
- package/scss/datetime/_theme.scss +24 -0
- package/scss/dropdownlist/_layout.scss +4 -5
- package/scss/dropdownlist/_theme.scss +8 -0
- package/scss/dropzone/_layout.scss +0 -16
- package/scss/editor/_layout.scss +2 -23
- package/scss/editor/_variables.scss +1 -1
- package/scss/filemanager/_theme.scss +1 -1
- package/scss/forms/_layout.scss +0 -50
- package/scss/gantt/_layout.scss +5 -3
- package/scss/grid/_layout.scss +1 -1
- package/scss/icons/_layout.scss +6 -1
- package/scss/icons/font/WebComponentsIcons.scss +1 -1
- package/scss/icons/font/WebComponentsIcons.ttf +0 -0
- package/scss/index.scss +151 -0
- package/scss/maskedtextbox/_layout.scss +1 -0
- package/scss/maskedtextbox/_theme.scss +4 -0
- package/scss/multiselect/_layout.scss +1 -1
- package/scss/multiselect/_theme.scss +12 -0
- package/scss/notification/_layout.scss +0 -22
- package/scss/numerictextbox/_layout.scss +4 -8
- package/scss/numerictextbox/_theme.scss +8 -0
- package/scss/numerictextbox/_variables.scss +0 -4
- package/scss/panelbar/_layout.scss +0 -53
- package/scss/pivotgrid/_layout.scss +0 -8
- package/scss/rating/_layout.scss +0 -8
- package/scss/searchbox/_theme.scss +16 -0
- package/scss/slider/_layout.scss +0 -18
- package/scss/spreadsheet/_layout.scss +2 -1
- package/scss/switch/_layout.scss +0 -26
- package/scss/tabstrip/_layout.scss +10 -0
- package/scss/tabstrip/_theme.scss +1 -0
- package/scss/textarea/_theme.scss +4 -0
- package/scss/textbox/_theme.scss +5 -1
- package/scss/toolbar/_layout.scss +2 -1
- package/scss/upload/_layout.scss +0 -80
- package/scss/no-flexbox.scss +0 -72
|
@@ -16,6 +16,10 @@
|
|
|
16
16
|
&.k-state-invalid {
|
|
17
17
|
border-color: $invalid-border;
|
|
18
18
|
|
|
19
|
+
.k-input-validation-icon {
|
|
20
|
+
color: $invalid-text;
|
|
21
|
+
}
|
|
22
|
+
|
|
19
23
|
&:focus,
|
|
20
24
|
&.k-state-focused {
|
|
21
25
|
@include box-shadow($invalid-shadow);
|
|
@@ -40,15 +44,14 @@
|
|
|
40
44
|
$combobox-hovered-bg,
|
|
41
45
|
$combobox-hovered-border
|
|
42
46
|
);
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
}
|
|
47
|
+
}
|
|
48
|
+
.k-select:hover {
|
|
49
|
+
@include fill(
|
|
50
|
+
$combobox-select-hovered-text,
|
|
51
|
+
$combobox-select-hovered-bg,
|
|
52
|
+
$combobox-select-hovered-border,
|
|
53
|
+
$combobox-select-hovered-gradient
|
|
54
|
+
);
|
|
52
55
|
}
|
|
53
56
|
|
|
54
57
|
// Focus state
|
|
@@ -61,18 +64,6 @@
|
|
|
61
64
|
@include box-shadow($combobox-focused-shadow);
|
|
62
65
|
}
|
|
63
66
|
|
|
64
|
-
// Active state
|
|
65
|
-
.k-state-active {
|
|
66
|
-
.k-select {
|
|
67
|
-
@include fill(
|
|
68
|
-
$combobox-select-pressed-text,
|
|
69
|
-
$combobox-select-pressed-bg,
|
|
70
|
-
$combobox-select-pressed-border,
|
|
71
|
-
$combobox-select-pressed-gradient
|
|
72
|
-
);
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
|
|
76
67
|
// Invalid
|
|
77
68
|
&.k-state-invalid,
|
|
78
69
|
&.ng-invalid.ng-touched,
|
|
@@ -80,6 +71,10 @@
|
|
|
80
71
|
.k-dropdown-wrap {
|
|
81
72
|
border-color: $invalid-border;
|
|
82
73
|
|
|
74
|
+
.k-input-validation-icon {
|
|
75
|
+
color: $invalid-text;
|
|
76
|
+
}
|
|
77
|
+
|
|
83
78
|
&:focus,
|
|
84
79
|
&.k-state-focused {
|
|
85
80
|
@include box-shadow($invalid-shadow);
|
|
@@ -114,6 +109,10 @@
|
|
|
114
109
|
&.k-invalid {
|
|
115
110
|
.k-dropdown-wrap {
|
|
116
111
|
border-color: $invalid-border;
|
|
112
|
+
|
|
113
|
+
.k-input-validation-icon {
|
|
114
|
+
color: $invalid-text;
|
|
115
|
+
}
|
|
117
116
|
}
|
|
118
117
|
}
|
|
119
118
|
|
|
@@ -2,7 +2,6 @@
|
|
|
2
2
|
$combobox-select-padding-x: 0px !default;
|
|
3
3
|
$combobox-select-padding-y: 0px !default;
|
|
4
4
|
$combobox-select-width: $button-inner-calc-size !default;
|
|
5
|
-
$combobox-select-border-width: 0px !default;
|
|
6
5
|
|
|
7
6
|
$combobox-bg: $input-bg !default;
|
|
8
7
|
$combobox-text: $input-text !default;
|
|
@@ -314,6 +314,9 @@ $yiq-light: if(
|
|
|
314
314
|
white
|
|
315
315
|
) !default;
|
|
316
316
|
|
|
317
|
+
$wcag-dark: black !default;
|
|
318
|
+
$wcag-light: white !default;
|
|
319
|
+
|
|
317
320
|
// Calculate the luminance for a color.
|
|
318
321
|
// See https://www.w3.org/TR/WCAG20-TECHS/G17.html#G17-tests
|
|
319
322
|
@function luminance($color) {
|
|
@@ -409,7 +412,7 @@ $yiq-light: if(
|
|
|
409
412
|
// @debug yiq;
|
|
410
413
|
@return $out;
|
|
411
414
|
}
|
|
412
|
-
@function contrast-wcag($color, $dark:
|
|
415
|
+
@function contrast-wcag($color, $dark: $wcag-dark, $light: $wcag-light) {
|
|
413
416
|
$luma: luminance($color);
|
|
414
417
|
$out: if($luma < .5, $light, $dark);
|
|
415
418
|
// @debug $luma;
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
// Load all modules by default
|
|
2
|
+
$kendo-components: (
|
|
3
|
+
// Typography and utils
|
|
4
|
+
"typography",
|
|
5
|
+
"utils",
|
|
6
|
+
"cursor",
|
|
7
|
+
|
|
8
|
+
// Generic content
|
|
9
|
+
"styling",
|
|
10
|
+
"icon",
|
|
11
|
+
"messagebox",
|
|
12
|
+
|
|
13
|
+
// Primitive components
|
|
14
|
+
"list",
|
|
15
|
+
"listgroup",
|
|
16
|
+
"overlay",
|
|
17
|
+
"popup",
|
|
18
|
+
"ripple",
|
|
19
|
+
"table",
|
|
20
|
+
|
|
21
|
+
// Indicators
|
|
22
|
+
"avatar",
|
|
23
|
+
"badge",
|
|
24
|
+
"chip",
|
|
25
|
+
"color-preview",
|
|
26
|
+
"loader",
|
|
27
|
+
"loading",
|
|
28
|
+
"skeleton",
|
|
29
|
+
|
|
30
|
+
// Form helpers
|
|
31
|
+
"form",
|
|
32
|
+
"validator",
|
|
33
|
+
"floating-label",
|
|
34
|
+
|
|
35
|
+
// Native forms
|
|
36
|
+
"button",
|
|
37
|
+
"input",
|
|
38
|
+
"textbox",
|
|
39
|
+
"textarea",
|
|
40
|
+
"checkbox",
|
|
41
|
+
"listbox",
|
|
42
|
+
"progressbar",
|
|
43
|
+
"radio",
|
|
44
|
+
"slider",
|
|
45
|
+
|
|
46
|
+
// Form requirements
|
|
47
|
+
"calendar",
|
|
48
|
+
|
|
49
|
+
// Augmented inputs
|
|
50
|
+
"autocomplete",
|
|
51
|
+
"captcha",
|
|
52
|
+
"color-palette",
|
|
53
|
+
"color-gradient",
|
|
54
|
+
"color-editor",
|
|
55
|
+
"color-picker",
|
|
56
|
+
"combobox",
|
|
57
|
+
"datetime",
|
|
58
|
+
"dropdowngrid",
|
|
59
|
+
"dropdownlist",
|
|
60
|
+
"dropdowntree",
|
|
61
|
+
"maskedtextbox",
|
|
62
|
+
"multiselect",
|
|
63
|
+
"numerictextbox",
|
|
64
|
+
"rating",
|
|
65
|
+
"searchbox",
|
|
66
|
+
"switch",
|
|
67
|
+
"upload",
|
|
68
|
+
"dropzone",
|
|
69
|
+
|
|
70
|
+
// Command interfaces
|
|
71
|
+
"actions",
|
|
72
|
+
"appbar",
|
|
73
|
+
"fab",
|
|
74
|
+
"menu",
|
|
75
|
+
"toolbar",
|
|
76
|
+
|
|
77
|
+
// Popups and modals
|
|
78
|
+
"action-sheet",
|
|
79
|
+
"dialog",
|
|
80
|
+
"drawer",
|
|
81
|
+
"notification",
|
|
82
|
+
"popover",
|
|
83
|
+
"responsivepanel",
|
|
84
|
+
"tooltip",
|
|
85
|
+
"window",
|
|
86
|
+
|
|
87
|
+
// Navigation
|
|
88
|
+
"bottom-nav",
|
|
89
|
+
"breadcrumb",
|
|
90
|
+
"pager",
|
|
91
|
+
"stepper",
|
|
92
|
+
"tabstrip",
|
|
93
|
+
"treeview",
|
|
94
|
+
"wizard",
|
|
95
|
+
|
|
96
|
+
// Layout & containers
|
|
97
|
+
"card",
|
|
98
|
+
"expander",
|
|
99
|
+
"panelbar",
|
|
100
|
+
"splitter",
|
|
101
|
+
"tilelayout",
|
|
102
|
+
|
|
103
|
+
// Data management
|
|
104
|
+
"grid",
|
|
105
|
+
"listview",
|
|
106
|
+
"spreadsheet",
|
|
107
|
+
"pivotgrid",
|
|
108
|
+
"treelist",
|
|
109
|
+
"filter",
|
|
110
|
+
"filemanager",
|
|
111
|
+
"taskboard",
|
|
112
|
+
|
|
113
|
+
// Editors
|
|
114
|
+
"editor",
|
|
115
|
+
"imageeditor",
|
|
116
|
+
|
|
117
|
+
// Scheduling
|
|
118
|
+
"gantt",
|
|
119
|
+
"scheduler",
|
|
120
|
+
|
|
121
|
+
// Misc
|
|
122
|
+
"adaptive",
|
|
123
|
+
"chat",
|
|
124
|
+
"mediaplayer",
|
|
125
|
+
"timeline",
|
|
126
|
+
"pdf-viewer",
|
|
127
|
+
"scroller",
|
|
128
|
+
"scrollview",
|
|
129
|
+
|
|
130
|
+
// Dataviz
|
|
131
|
+
"dataviz",
|
|
132
|
+
"map",
|
|
133
|
+
"orgchart"
|
|
134
|
+
|
|
135
|
+
) !default;
|
|
136
|
+
|
|
137
|
+
$_kendo-imported-modules: ();
|
|
138
|
+
|
|
139
|
+
@mixin register-module( $name: null, $dependencies: null ) {
|
|
140
|
+
@if ( index( $kendo-components, $name ) != null ) and ( index( $_kendo-imported-modules, $name ) == null) {
|
|
141
|
+
$_kendo-imported-modules: append( $_kendo-imported-modules, $name ) !global;
|
|
142
|
+
@content;
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
@mixin load-modules( $names... ) {
|
|
146
|
+
@each $name in $names {
|
|
147
|
+
$kendo-components: append( $kendo-components, $name ) !global;
|
|
148
|
+
}
|
|
149
|
+
}
|
|
@@ -31,6 +31,7 @@
|
|
|
31
31
|
outline: 0;
|
|
32
32
|
display: flex;
|
|
33
33
|
flex-flow: row nowrap;
|
|
34
|
+
overflow: hidden;
|
|
34
35
|
}
|
|
35
36
|
|
|
36
37
|
|
|
@@ -40,10 +41,10 @@
|
|
|
40
41
|
|
|
41
42
|
// Select
|
|
42
43
|
.k-select {
|
|
43
|
-
@include border-right-radius-only( $input-border-radius );
|
|
44
44
|
padding: 0;
|
|
45
45
|
width: if( $use-picker-select-width, $spinner-width, null );
|
|
46
|
-
border-width: 0
|
|
46
|
+
border-width: 0;
|
|
47
|
+
border-inline-start-width: $picker-select-border-width;
|
|
47
48
|
border-style: solid;
|
|
48
49
|
box-sizing: border-box;
|
|
49
50
|
outline: 0;
|
|
@@ -81,11 +82,6 @@
|
|
|
81
82
|
.k-rtl &,
|
|
82
83
|
&[dir="rtl"] {
|
|
83
84
|
text-align: right;
|
|
84
|
-
|
|
85
|
-
.k-select {
|
|
86
|
-
@include border-left-radius-only( $input-border-radius );
|
|
87
|
-
border-width: 0 $picker-select-border-width 0 0;
|
|
88
|
-
}
|
|
89
85
|
}
|
|
90
86
|
|
|
91
87
|
|
|
@@ -96,18 +92,10 @@
|
|
|
96
92
|
flex: 1 1 auto;
|
|
97
93
|
|
|
98
94
|
.k-dateinput-wrap {
|
|
99
|
-
|
|
100
|
-
border-width: 0;
|
|
95
|
+
border-radius: 0 !important; // sass-lint:disable-line no-important
|
|
96
|
+
border-width: 0; // sass-lint:disable-line no-important
|
|
101
97
|
box-shadow: none !important; // sass-lint:disable-line no-important
|
|
102
98
|
}
|
|
103
|
-
|
|
104
|
-
[dir="rtl"] &,
|
|
105
|
-
.k-rtl & {
|
|
106
|
-
.k-dateinput-wrap {
|
|
107
|
-
@include border-right-radius-only( $input-border-radius );
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
|
|
111
99
|
}
|
|
112
100
|
}
|
|
113
101
|
|
|
@@ -144,6 +132,7 @@
|
|
|
144
132
|
transition: all .1s ease; // sass-lint:disable-block no-transition-all
|
|
145
133
|
cursor: default;
|
|
146
134
|
outline: 0;
|
|
135
|
+
overflow: hidden;
|
|
147
136
|
}
|
|
148
137
|
|
|
149
138
|
|
|
@@ -153,10 +142,10 @@
|
|
|
153
142
|
|
|
154
143
|
// Select
|
|
155
144
|
.k-select {
|
|
156
|
-
@include border-right-radius-only( $input-border-radius );
|
|
157
145
|
padding: $picker-select-padding-y $picker-select-padding-x;
|
|
158
146
|
width: if( $use-picker-select-width, $picker-select-calc-size, null );
|
|
159
|
-
border-width: 0
|
|
147
|
+
border-width: 0;
|
|
148
|
+
border-inline-start-width: $picker-select-border-width;
|
|
160
149
|
border-style: solid;
|
|
161
150
|
box-sizing: border-box;
|
|
162
151
|
outline: 0;
|
|
@@ -173,11 +162,6 @@
|
|
|
173
162
|
.k-rtl &,
|
|
174
163
|
&[dir="rtl"] {
|
|
175
164
|
text-align: right;
|
|
176
|
-
|
|
177
|
-
.k-select {
|
|
178
|
-
@include border-left-radius-only( $input-border-radius );
|
|
179
|
-
border-width: 0 $picker-select-border-width 0 0;
|
|
180
|
-
}
|
|
181
165
|
}
|
|
182
166
|
}
|
|
183
167
|
|
|
@@ -214,6 +198,7 @@
|
|
|
214
198
|
transition: all .1s ease; // sass-lint:disable-block no-transition-all
|
|
215
199
|
cursor: default;
|
|
216
200
|
outline: 0;
|
|
201
|
+
overflow: hidden;
|
|
217
202
|
}
|
|
218
203
|
|
|
219
204
|
|
|
@@ -223,8 +208,8 @@
|
|
|
223
208
|
|
|
224
209
|
// Select
|
|
225
210
|
.k-select {
|
|
226
|
-
|
|
227
|
-
border-width:
|
|
211
|
+
border-width: 0;
|
|
212
|
+
border-inline-start-width: $picker-select-border-width;
|
|
228
213
|
border-style: solid;
|
|
229
214
|
box-sizing: border-box;
|
|
230
215
|
outline: 0;
|
|
@@ -253,11 +238,6 @@
|
|
|
253
238
|
.k-rtl &,
|
|
254
239
|
&[dir="rtl"] {
|
|
255
240
|
text-align: right;
|
|
256
|
-
|
|
257
|
-
.k-select {
|
|
258
|
-
@include border-left-radius-only( $input-border-radius );
|
|
259
|
-
border-width: 0 $picker-select-border-width 0 0;
|
|
260
|
-
}
|
|
261
241
|
}
|
|
262
242
|
}
|
|
263
243
|
|
|
@@ -462,7 +442,6 @@
|
|
|
462
442
|
z-index: 1;
|
|
463
443
|
border-width: $time-highlight-size 0;
|
|
464
444
|
border-style: solid;
|
|
465
|
-
border-radius: .1px; // workaround for https://bugs.webkit.org/show_bug.cgi?id=175117
|
|
466
445
|
}
|
|
467
446
|
|
|
468
447
|
.k-time-container .k-scrollable-placeholder {
|
|
@@ -174,6 +174,10 @@
|
|
|
174
174
|
&.k-state-invalid {
|
|
175
175
|
border-color: $invalid-border;
|
|
176
176
|
|
|
177
|
+
.k-input-validation-icon {
|
|
178
|
+
color: $invalid-text;
|
|
179
|
+
}
|
|
180
|
+
|
|
177
181
|
&:focus,
|
|
178
182
|
&.k-state-focused {
|
|
179
183
|
@include box-shadow($invalid-shadow);
|
|
@@ -187,6 +191,10 @@
|
|
|
187
191
|
.k-picker-wrap {
|
|
188
192
|
border-color: $invalid-border;
|
|
189
193
|
|
|
194
|
+
.k-input-validation-icon {
|
|
195
|
+
color: $invalid-text;
|
|
196
|
+
}
|
|
197
|
+
|
|
190
198
|
&:focus,
|
|
191
199
|
&.k-state-focused {
|
|
192
200
|
@include box-shadow($invalid-shadow);
|
|
@@ -201,6 +209,10 @@
|
|
|
201
209
|
&.k-state-invalid {
|
|
202
210
|
border-color: $invalid-border;
|
|
203
211
|
|
|
212
|
+
.k-input-validation-icon {
|
|
213
|
+
color: $invalid-text;
|
|
214
|
+
}
|
|
215
|
+
|
|
204
216
|
&:focus,
|
|
205
217
|
&.k-state-focused {
|
|
206
218
|
@include box-shadow($invalid-shadow);
|
|
@@ -214,6 +226,10 @@
|
|
|
214
226
|
.k-dateinput-wrap {
|
|
215
227
|
border-color: $invalid-border;
|
|
216
228
|
|
|
229
|
+
.k-input-validation-icon {
|
|
230
|
+
color: $invalid-text;
|
|
231
|
+
}
|
|
232
|
+
|
|
217
233
|
&:focus,
|
|
218
234
|
&.k-state-focused {
|
|
219
235
|
@include box-shadow($invalid-shadow);
|
|
@@ -248,6 +264,10 @@
|
|
|
248
264
|
&.k-invalid {
|
|
249
265
|
.k-picker-wrap {
|
|
250
266
|
border-color: $invalid-border;
|
|
267
|
+
|
|
268
|
+
.k-input-validation-icon {
|
|
269
|
+
color: $invalid-text;
|
|
270
|
+
}
|
|
251
271
|
}
|
|
252
272
|
}
|
|
253
273
|
|
|
@@ -284,6 +304,10 @@
|
|
|
284
304
|
&.k-invalid {
|
|
285
305
|
.k-dateinput-wrap {
|
|
286
306
|
border-color: $invalid-border;
|
|
307
|
+
|
|
308
|
+
.k-input-validation-icon {
|
|
309
|
+
color: $invalid-text;
|
|
310
|
+
}
|
|
287
311
|
}
|
|
288
312
|
}
|
|
289
313
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
@include exports("dropdownlist/layout") {
|
|
2
2
|
|
|
3
|
+
// Dropdown list
|
|
3
4
|
.k-dropdown {
|
|
4
5
|
width: $input-default-width;
|
|
5
6
|
border-width: 0;
|
|
@@ -30,6 +31,7 @@
|
|
|
30
31
|
transition: all .1s ease; // sass-lint:disable-line no-transition-all
|
|
31
32
|
cursor: pointer;
|
|
32
33
|
outline: 0;
|
|
34
|
+
overflow: hidden;
|
|
33
35
|
|
|
34
36
|
|
|
35
37
|
// Input
|
|
@@ -38,10 +40,11 @@
|
|
|
38
40
|
|
|
39
41
|
// Select
|
|
40
42
|
.k-select {
|
|
41
|
-
@include border-right-radius-only( $input-border-radius );
|
|
42
43
|
padding: $picker-select-padding-y $picker-select-padding-x;
|
|
43
44
|
width: if( $use-picker-select-width, $button-inner-calc-size, null );
|
|
44
45
|
border-width: 0;
|
|
46
|
+
border-inline-start-width: $picker-select-border-width;
|
|
47
|
+
border-color: transparent;
|
|
45
48
|
box-sizing: border-box;
|
|
46
49
|
border-style: solid;
|
|
47
50
|
display: flex;
|
|
@@ -63,10 +66,6 @@
|
|
|
63
66
|
.k-rtl .k-dropdown,
|
|
64
67
|
[dir="rtl"] .k-dropdown {
|
|
65
68
|
text-align: right;
|
|
66
|
-
|
|
67
|
-
.k-select {
|
|
68
|
-
@include border-left-radius-only( $input-border-radius );
|
|
69
|
-
}
|
|
70
69
|
}
|
|
71
70
|
|
|
72
71
|
|
|
@@ -40,6 +40,10 @@
|
|
|
40
40
|
&.k-state-invalid {
|
|
41
41
|
border-color: $invalid-border;
|
|
42
42
|
|
|
43
|
+
.k-input-validation-icon {
|
|
44
|
+
color: $invalid-text;
|
|
45
|
+
}
|
|
46
|
+
|
|
43
47
|
&:focus,
|
|
44
48
|
&.k-state-focused {
|
|
45
49
|
@include box-shadow($invalid-shadow);
|
|
@@ -54,6 +58,10 @@
|
|
|
54
58
|
> .k-dropdown-wrap {
|
|
55
59
|
border-color: $invalid-border;
|
|
56
60
|
|
|
61
|
+
.k-input-validation-icon {
|
|
62
|
+
color: $invalid-text;
|
|
63
|
+
}
|
|
64
|
+
|
|
57
65
|
&:focus,
|
|
58
66
|
&.k-state-focused {
|
|
59
67
|
@include box-shadow($invalid-shadow);
|
|
@@ -41,20 +41,4 @@
|
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
|
|
44
|
-
|
|
45
|
-
// No flexbox
|
|
46
|
-
.k-no-flexbox {
|
|
47
|
-
.k-dropzone-inner {
|
|
48
|
-
padding-top: ( $dropzone-padding-y * 6 );
|
|
49
|
-
padding-bottom: ( $dropzone-padding-y * 6 );
|
|
50
|
-
width: 100%;
|
|
51
|
-
height: 100%;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
.k-dropzone-hint,
|
|
55
|
-
.k-dropzone-note {
|
|
56
|
-
display: block;
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
|
|
60
44
|
}
|
package/scss/editor/_layout.scss
CHANGED
|
@@ -78,6 +78,7 @@
|
|
|
78
78
|
height: $editor-resize-handle-size;
|
|
79
79
|
border-width: $editor-resize-handle-border-width;
|
|
80
80
|
border-style: solid;
|
|
81
|
+
box-sizing: border-box;
|
|
81
82
|
position: absolute;
|
|
82
83
|
visibility: visible;
|
|
83
84
|
z-index: 100;
|
|
@@ -162,13 +163,6 @@
|
|
|
162
163
|
.k-editor-toolbar {
|
|
163
164
|
border-width: 0 0 $toolbar-border-width 0;
|
|
164
165
|
|
|
165
|
-
// Group
|
|
166
|
-
.k-tool-group {
|
|
167
|
-
.k-widget ~ .k-widget {
|
|
168
|
-
margin-inline-start: $toolbar-spacing;
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
|
|
172
166
|
// Tool
|
|
173
167
|
.k-tool {
|
|
174
168
|
padding: $button-padding-y;
|
|
@@ -245,26 +239,13 @@
|
|
|
245
239
|
}
|
|
246
240
|
}
|
|
247
241
|
}
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
// Editable area
|
|
251
|
-
.k-editable-area {
|
|
242
|
+
td.k-editor-content {
|
|
252
243
|
padding: $input-padding-y;
|
|
253
244
|
width: 100%;
|
|
254
245
|
height: 100%;
|
|
255
246
|
border-width: 0;
|
|
256
247
|
outline: 0;
|
|
257
248
|
|
|
258
|
-
iframe.k-content {
|
|
259
|
-
margin: 0;
|
|
260
|
-
padding: 0;
|
|
261
|
-
width: 100%;
|
|
262
|
-
height: 100%;
|
|
263
|
-
border-width: 0;
|
|
264
|
-
background: none;
|
|
265
|
-
display: block;
|
|
266
|
-
}
|
|
267
|
-
|
|
268
249
|
.k-resizable & {
|
|
269
250
|
padding: $input-padding-y $input-padding-y 16px;
|
|
270
251
|
}
|
|
@@ -393,8 +374,6 @@
|
|
|
393
374
|
.k-edit-field {
|
|
394
375
|
width: 66%;
|
|
395
376
|
}
|
|
396
|
-
|
|
397
|
-
.k-edit-buttons {}
|
|
398
377
|
}
|
|
399
378
|
|
|
400
379
|
// View HTML dialog using flex to fit child textarea
|
|
@@ -14,7 +14,7 @@ $editor-highlighted-bg: mix($primary, #ffffff, 20%) !default;
|
|
|
14
14
|
|
|
15
15
|
$editor-export-tool-icon-margin-x: .25em !default;
|
|
16
16
|
|
|
17
|
-
$editor-resize-handle-size:
|
|
17
|
+
$editor-resize-handle-size: 8px !default;
|
|
18
18
|
$editor-resize-handle-border-width: 1px !default;
|
|
19
19
|
$editor-resize-handle-border: #000000 !default;
|
|
20
20
|
$editor-resize-handle-bg: #ffffff !default;
|
package/scss/forms/_layout.scss
CHANGED
|
@@ -364,40 +364,6 @@
|
|
|
364
364
|
}
|
|
365
365
|
|
|
366
366
|
|
|
367
|
-
// Tabstrip
|
|
368
|
-
.k-edit-form-container .k-tabstrip-wrapper {
|
|
369
|
-
margin: (-$window-inner-padding-y) (-$window-inner-padding-x);
|
|
370
|
-
}
|
|
371
|
-
.k-edit-form-container .k-tabstrip.k-root-tabs {
|
|
372
|
-
margin-bottom: $window-inner-padding-y;
|
|
373
|
-
}
|
|
374
|
-
.k-edit-form-container .k-tabstrip .k-tabstrip-items {
|
|
375
|
-
padding: $window-inner-padding-y $window-inner-padding-x 0;
|
|
376
|
-
}
|
|
377
|
-
.k-edit-form-container .k-tabstrip .k-content {
|
|
378
|
-
padding: $window-inner-padding-y $window-inner-padding-x;
|
|
379
|
-
border-width: 0;
|
|
380
|
-
}
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
// Edit buttons
|
|
384
|
-
.k-edit-buttons {
|
|
385
|
-
padding: $toolbar-padding-y $toolbar-padding-x;
|
|
386
|
-
border-width: 1px 0 0;
|
|
387
|
-
border-style: solid;
|
|
388
|
-
border-color: inherit;
|
|
389
|
-
text-align: right;
|
|
390
|
-
clear: both;
|
|
391
|
-
}
|
|
392
|
-
.k-edit-buttons .k-button + .k-button {
|
|
393
|
-
margin-left: ( $spacer-x / 2 );
|
|
394
|
-
}
|
|
395
|
-
.k-edit-form-container .k-edit-buttons {
|
|
396
|
-
margin: $window-inner-padding-y (-$window-inner-padding-x) (-$window-inner-padding-y);
|
|
397
|
-
padding: $window-inner-padding-y $window-inner-padding-x;
|
|
398
|
-
}
|
|
399
|
-
|
|
400
|
-
|
|
401
367
|
// Action buttons
|
|
402
368
|
.k-popup-edit-form > .k-actions,
|
|
403
369
|
.k-edit-form-container .k-actions {
|
|
@@ -458,19 +424,3 @@
|
|
|
458
424
|
}
|
|
459
425
|
|
|
460
426
|
}
|
|
461
|
-
|
|
462
|
-
@include exports("edit-form/rtl") {
|
|
463
|
-
|
|
464
|
-
.k-rtl {
|
|
465
|
-
|
|
466
|
-
.k-edit-buttons {
|
|
467
|
-
text-align: left;
|
|
468
|
-
|
|
469
|
-
.k-button + .k-button {
|
|
470
|
-
margin-left: 0;
|
|
471
|
-
margin-right: .5em;
|
|
472
|
-
}
|
|
473
|
-
}
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
}
|