@progress/kendo-theme-default 5.0.0-alpha.1 → 5.0.0-alpha.2
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 +3 -387
- package/dist/all.scss +258 -529
- package/package.json +2 -2
- package/scss/all.scss +5 -0
- package/scss/calendar/_layout.scss +0 -12
- package/scss/calendar/_theme.scss +0 -17
- package/scss/chip/_layout.scss +2 -0
- package/scss/chip/_theme.scss +1 -0
- package/scss/dateinput/_index.scss +15 -0
- package/scss/dateinput/_layout.scss +6 -0
- package/scss/dateinput/_theme.scss +6 -0
- package/scss/dateinput/_variables.scss +1 -0
- package/scss/datepicker/_index.scss +15 -0
- package/scss/datepicker/_layout.scss +6 -0
- package/scss/datepicker/_theme.scss +6 -0
- package/scss/datepicker/_variables.scss +1 -0
- package/scss/daterangepicker/_index.scss +15 -0
- package/scss/daterangepicker/_layout.scss +3 -0
- package/scss/daterangepicker/_theme.scss +3 -0
- package/scss/daterangepicker/_variables.scss +1 -0
- package/scss/datetime/_layout.scss +0 -252
- package/scss/datetime/_theme.scss +0 -227
- package/scss/datetimepicker/_index.scss +15 -0
- package/scss/datetimepicker/_layout.scss +6 -0
- package/scss/datetimepicker/_theme.scss +6 -0
- package/scss/datetimepicker/_variables.scss +1 -0
- package/scss/forms/_layout.scss +0 -5
- package/scss/no-flexbox.scss +0 -32
- package/scss/timepicker/_index.scss +15 -0
- package/scss/timepicker/_layout.scss +6 -0
- package/scss/timepicker/_theme.scss +6 -0
- package/scss/timepicker/_variables.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": "5.0.0-alpha.
|
|
4
|
+
"version": "5.0.0-alpha.2",
|
|
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": "f7a672c3f60bdfa52a6fb04262352b0a45ac7029"
|
|
51
51
|
}
|
package/scss/all.scss
CHANGED
|
@@ -55,6 +55,11 @@
|
|
|
55
55
|
@import "coloreditor/_index.scss";
|
|
56
56
|
@import "colorpicker/_index.scss";
|
|
57
57
|
@import "combobox/_index.scss";
|
|
58
|
+
@import "dateinput/_index.scss";
|
|
59
|
+
@import "datepicker/_index.scss";
|
|
60
|
+
@import "timepicker/_index.scss";
|
|
61
|
+
@import "datetimepicker/_index.scss";
|
|
62
|
+
@import "daterangepicker/_index.scss";
|
|
58
63
|
@import "datetime/_index.scss";
|
|
59
64
|
@import "dropdowngrid/_index.scss";
|
|
60
65
|
@import "dropdownlist/_index.scss";
|
|
@@ -430,18 +430,6 @@
|
|
|
430
430
|
|
|
431
431
|
|
|
432
432
|
|
|
433
|
-
|
|
434
|
-
@include exports("daterangepicker/layout") {
|
|
435
|
-
|
|
436
|
-
// jQuery DateRangePicker
|
|
437
|
-
.k-widget.k-daterangepicker {
|
|
438
|
-
border: 0;
|
|
439
|
-
}
|
|
440
|
-
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
433
|
@include exports("calendar/layout/rtl") {
|
|
446
434
|
|
|
447
435
|
.k-rtl .k-calendar,
|
|
@@ -249,20 +249,3 @@
|
|
|
249
249
|
}
|
|
250
250
|
|
|
251
251
|
}
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
@include exports( "daterangepicker/theme" ) {
|
|
257
|
-
|
|
258
|
-
// jQuery DateRangePicker
|
|
259
|
-
.k-daterangepicker {
|
|
260
|
-
// Invalid
|
|
261
|
-
&.k-state-invalid {
|
|
262
|
-
.k-dateinput-wrap {
|
|
263
|
-
border-color: $invalid-border;
|
|
264
|
-
}
|
|
265
|
-
}
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
}
|
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
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
@import "../core/_index.scss";
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
// Dependencies
|
|
5
|
+
@import "../common/_index.scss";
|
|
6
|
+
@import "../input/_index.scss";
|
|
7
|
+
@import "../floating-label/_index.scss";
|
|
8
|
+
@import "../popup/_index.scss";
|
|
9
|
+
@import "../icons/_index.scss";
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
// Component
|
|
13
|
+
@import "_variables.scss";
|
|
14
|
+
@import "_layout.scss";
|
|
15
|
+
@import "_theme.scss";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// Dateinput
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
@import "../core/_index.scss";
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
// Dependencies
|
|
5
|
+
@import "../common/_index.scss";
|
|
6
|
+
@import "../input/_index.scss";
|
|
7
|
+
@import "../floating-label/_index.scss";
|
|
8
|
+
@import "../popup/_index.scss";
|
|
9
|
+
@import "../icons/_index.scss";
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
// Component
|
|
13
|
+
@import "_variables.scss";
|
|
14
|
+
@import "_layout.scss";
|
|
15
|
+
@import "_theme.scss";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// Datepicker
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
@import "../core/_index.scss";
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
// Dependencies
|
|
5
|
+
@import "../common/_index.scss";
|
|
6
|
+
@import "../input/_index.scss";
|
|
7
|
+
@import "../floating-label/_index.scss";
|
|
8
|
+
@import "../popup/_index.scss";
|
|
9
|
+
@import "../icons/_index.scss";
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
// Component
|
|
13
|
+
@import "_variables.scss";
|
|
14
|
+
@import "_layout.scss";
|
|
15
|
+
@import "_theme.scss";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
// Daterangepicker
|
|
@@ -1,257 +1,5 @@
|
|
|
1
1
|
@include exports("datetime/layout") {
|
|
2
2
|
|
|
3
|
-
// Dateinput
|
|
4
|
-
.k-dateinput {
|
|
5
|
-
border-width: 0;
|
|
6
|
-
box-sizing: border-box;
|
|
7
|
-
outline: 0;
|
|
8
|
-
background: none;
|
|
9
|
-
font-family: $kendo-input-font-family;
|
|
10
|
-
font-size: $kendo-input-font-size;
|
|
11
|
-
line-height: $kendo-input-line-height;
|
|
12
|
-
text-align: left;
|
|
13
|
-
white-space: nowrap;
|
|
14
|
-
display: inline-flex;
|
|
15
|
-
vertical-align: middle;
|
|
16
|
-
position: relative;
|
|
17
|
-
-webkit-touch-callout: none;
|
|
18
|
-
-webkit-tap-highlight-color: $rgba-transparent;
|
|
19
|
-
|
|
20
|
-
.k-dateinput-wrap {
|
|
21
|
-
@include border-radius( $kendo-input-border-radius );
|
|
22
|
-
padding: 0;
|
|
23
|
-
width: 100%;
|
|
24
|
-
border-width: 1px;
|
|
25
|
-
border-style: solid;
|
|
26
|
-
box-sizing: border-box;
|
|
27
|
-
position: relative;
|
|
28
|
-
transition: all .1s ease; // sass-lint:disable-line no-transition-all
|
|
29
|
-
cursor: default;
|
|
30
|
-
outline: 0;
|
|
31
|
-
display: flex;
|
|
32
|
-
flex-flow: row nowrap;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
// Input
|
|
37
|
-
.k-input {}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
// Select
|
|
41
|
-
.k-select {
|
|
42
|
-
@include border-right-radius-only( $kendo-input-border-radius );
|
|
43
|
-
padding: 0;
|
|
44
|
-
width: $kendo-input-spinner-width;
|
|
45
|
-
border-width: 0 0 0 $picker-select-border-width;
|
|
46
|
-
border-style: solid;
|
|
47
|
-
box-sizing: border-box;
|
|
48
|
-
outline: 0;
|
|
49
|
-
display: flex;
|
|
50
|
-
flex-direction: column;
|
|
51
|
-
align-items: stretch;
|
|
52
|
-
justify-content: center;
|
|
53
|
-
flex: 0 0 auto;
|
|
54
|
-
text-align: center;
|
|
55
|
-
cursor: pointer;
|
|
56
|
-
}
|
|
57
|
-
.k-link {
|
|
58
|
-
padding: 0 $picker-select-padding-x;
|
|
59
|
-
min-width: $icon-size;
|
|
60
|
-
flex: 1 1 auto;
|
|
61
|
-
display: block;
|
|
62
|
-
overflow: hidden;
|
|
63
|
-
position: relative;
|
|
64
|
-
|
|
65
|
-
.k-icon {
|
|
66
|
-
position: absolute;
|
|
67
|
-
right: 50%;
|
|
68
|
-
transform: translateX(50%);
|
|
69
|
-
}
|
|
70
|
-
}
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
// RTL
|
|
74
|
-
.k-rtl &,
|
|
75
|
-
&[dir="rtl"] {
|
|
76
|
-
text-align: right;
|
|
77
|
-
|
|
78
|
-
.k-select {
|
|
79
|
-
@include border-left-radius-only( $kendo-input-border-radius );
|
|
80
|
-
border-width: 0 $picker-select-border-width 0 0;
|
|
81
|
-
}
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
// Nested dateinput
|
|
86
|
-
.k-picker-wrap & {
|
|
87
|
-
margin: 0 !important; // sass-lint:disable-line no-important
|
|
88
|
-
width: 100%;
|
|
89
|
-
flex: 1 1 auto;
|
|
90
|
-
|
|
91
|
-
.k-dateinput-wrap {
|
|
92
|
-
@include border-left-radius-only( $kendo-input-border-radius );
|
|
93
|
-
border-width: 0;
|
|
94
|
-
box-shadow: none !important; // sass-lint:disable-line no-important
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
[dir="rtl"] &,
|
|
98
|
-
.k-rtl & {
|
|
99
|
-
.k-dateinput-wrap {
|
|
100
|
-
@include border-right-radius-only( $kendo-input-border-radius );
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
// Datepicker / timepicker
|
|
109
|
-
.k-datepicker,
|
|
110
|
-
.k-timepicker {
|
|
111
|
-
border-width: 0;
|
|
112
|
-
box-sizing: border-box;
|
|
113
|
-
outline: 0;
|
|
114
|
-
font-family: $kendo-input-font-family;
|
|
115
|
-
font-size: $kendo-input-font-size;
|
|
116
|
-
line-height: $kendo-input-line-height;
|
|
117
|
-
white-space: nowrap;
|
|
118
|
-
background: none;
|
|
119
|
-
display: inline-flex;
|
|
120
|
-
vertical-align: middle;
|
|
121
|
-
position: relative;
|
|
122
|
-
-webkit-touch-callout: none;
|
|
123
|
-
-webkit-tap-highlight-color: $rgba-transparent;
|
|
124
|
-
|
|
125
|
-
// Wrapper
|
|
126
|
-
.k-picker-wrap {
|
|
127
|
-
@include border-radius( $kendo-input-border-radius );
|
|
128
|
-
padding: 0;
|
|
129
|
-
width: 100%;
|
|
130
|
-
border-width: $kendo-input-border-width;
|
|
131
|
-
border-style: solid;
|
|
132
|
-
box-sizing: border-box;
|
|
133
|
-
display: flex;
|
|
134
|
-
flex-direction: row;
|
|
135
|
-
position: relative;
|
|
136
|
-
transition: all .1s ease; // sass-lint:disable-block no-transition-all
|
|
137
|
-
cursor: default;
|
|
138
|
-
outline: 0;
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
// Input
|
|
143
|
-
.k-input {}
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
// Select
|
|
147
|
-
.k-select {
|
|
148
|
-
@include border-right-radius-only( $kendo-input-border-radius );
|
|
149
|
-
padding: $picker-select-padding-y $picker-select-padding-x;
|
|
150
|
-
width: if( $use-picker-select-width, $picker-select-calc-size, null );
|
|
151
|
-
border-width: 0 0 0 $picker-select-border-width;
|
|
152
|
-
border-style: solid;
|
|
153
|
-
box-sizing: border-box;
|
|
154
|
-
outline: 0;
|
|
155
|
-
display: flex;
|
|
156
|
-
align-items: center;
|
|
157
|
-
justify-content: center;
|
|
158
|
-
flex: 0 0 auto;
|
|
159
|
-
text-align: center;
|
|
160
|
-
cursor: pointer;
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
// RTL
|
|
165
|
-
.k-rtl &,
|
|
166
|
-
&[dir="rtl"] {
|
|
167
|
-
text-align: right;
|
|
168
|
-
|
|
169
|
-
.k-select {
|
|
170
|
-
@include border-left-radius-only( $kendo-input-border-radius );
|
|
171
|
-
border-width: 0 $picker-select-border-width 0 0;
|
|
172
|
-
}
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
// Datetimepicker
|
|
178
|
-
.k-datetimepicker {
|
|
179
|
-
border-width: 0;
|
|
180
|
-
box-sizing: border-box;
|
|
181
|
-
outline: 0;
|
|
182
|
-
font-family: $kendo-input-font-family;
|
|
183
|
-
font-size: $kendo-input-font-size;
|
|
184
|
-
line-height: $kendo-input-line-height;
|
|
185
|
-
text-align: left;
|
|
186
|
-
white-space: nowrap;
|
|
187
|
-
background: none;
|
|
188
|
-
display: inline-flex;
|
|
189
|
-
vertical-align: middle;
|
|
190
|
-
position: relative;
|
|
191
|
-
-webkit-touch-callout: none;
|
|
192
|
-
-webkit-tap-highlight-color: $rgba-transparent;
|
|
193
|
-
|
|
194
|
-
// Wrappers
|
|
195
|
-
.k-picker-wrap {
|
|
196
|
-
@include border-radius( $kendo-input-border-radius );
|
|
197
|
-
padding: 0;
|
|
198
|
-
width: 100%;
|
|
199
|
-
border-width: 1px;
|
|
200
|
-
border-style: solid;
|
|
201
|
-
box-sizing: border-box;
|
|
202
|
-
display: flex;
|
|
203
|
-
flex-direction: row;
|
|
204
|
-
position: relative;
|
|
205
|
-
transition: all .1s ease; // sass-lint:disable-block no-transition-all
|
|
206
|
-
cursor: default;
|
|
207
|
-
outline: 0;
|
|
208
|
-
}
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
// Input
|
|
212
|
-
.k-input {}
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
// Select
|
|
216
|
-
.k-select {
|
|
217
|
-
@include border-right-radius-only( $kendo-input-border-radius );
|
|
218
|
-
border-width: 0 0 0 $picker-select-border-width;
|
|
219
|
-
border-style: solid;
|
|
220
|
-
box-sizing: border-box;
|
|
221
|
-
outline: 0;
|
|
222
|
-
display: flex;
|
|
223
|
-
align-items: stretch;
|
|
224
|
-
justify-content: center;
|
|
225
|
-
flex: 0 0 auto;
|
|
226
|
-
text-align: center;
|
|
227
|
-
cursor: pointer;
|
|
228
|
-
}
|
|
229
|
-
.k-link {
|
|
230
|
-
padding: $picker-select-padding-y $picker-select-padding-x;
|
|
231
|
-
width: if( $use-picker-select-width, $kendo-button-inner-calc-size, null );
|
|
232
|
-
height: 100%;
|
|
233
|
-
border-width: 0;
|
|
234
|
-
border-style: solid;
|
|
235
|
-
border-color: inherit;
|
|
236
|
-
display: flex;
|
|
237
|
-
align-items: center;
|
|
238
|
-
justify-content: center;
|
|
239
|
-
box-sizing: border-box;
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
// RTL
|
|
244
|
-
.k-rtl &,
|
|
245
|
-
&[dir="rtl"] {
|
|
246
|
-
text-align: right;
|
|
247
|
-
|
|
248
|
-
.k-select {
|
|
249
|
-
@include border-left-radius-only( $kendo-input-border-radius );
|
|
250
|
-
border-width: 0 $picker-select-border-width 0 0;
|
|
251
|
-
}
|
|
252
|
-
}
|
|
253
|
-
}
|
|
254
|
-
|
|
255
3
|
.k-datetime-container {
|
|
256
4
|
|
|
257
5
|
.k-datetime-wrap {
|
|
@@ -1,103 +1,5 @@
|
|
|
1
1
|
@include exports("datetime/theme") {
|
|
2
2
|
|
|
3
|
-
// Common
|
|
4
|
-
.k-datepicker,
|
|
5
|
-
.k-timepicker,
|
|
6
|
-
.k-datetimepicker,
|
|
7
|
-
.k-dateinput {
|
|
8
|
-
|
|
9
|
-
.k-select {
|
|
10
|
-
@include fill(
|
|
11
|
-
$datetime-select-text,
|
|
12
|
-
$datetime-select-bg,
|
|
13
|
-
$datetime-select-border,
|
|
14
|
-
$datetime-select-gradient
|
|
15
|
-
);
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
.k-i-warning {
|
|
19
|
-
color: $error;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
.k-datepicker .k-picker-wrap,
|
|
25
|
-
.k-timepicker .k-picker-wrap,
|
|
26
|
-
.k-datetimepicker .k-picker-wrap,
|
|
27
|
-
.k-dateinput .k-dateinput-wrap {
|
|
28
|
-
@include fill(
|
|
29
|
-
$datetime-text,
|
|
30
|
-
$datetime-bg,
|
|
31
|
-
$datetime-border
|
|
32
|
-
);
|
|
33
|
-
|
|
34
|
-
// Hovered state
|
|
35
|
-
&:hover,
|
|
36
|
-
&.k-state-hover {
|
|
37
|
-
@include fill(
|
|
38
|
-
$datetime-hovered-text,
|
|
39
|
-
$datetime-hovered-bg,
|
|
40
|
-
$datetime-hovered-border
|
|
41
|
-
);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
// Selected state
|
|
45
|
-
&.k-state-focused,
|
|
46
|
-
&.k-state-active {
|
|
47
|
-
@include fill(
|
|
48
|
-
$datetime-focused-text,
|
|
49
|
-
$datetime-focused-bg,
|
|
50
|
-
$datetime-focused-border
|
|
51
|
-
);
|
|
52
|
-
@include box-shadow($datetime-focused-shadow);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
|
|
56
|
-
.k-datepicker,
|
|
57
|
-
.k-timepicker {
|
|
58
|
-
|
|
59
|
-
.k-select:hover,
|
|
60
|
-
.k-select.k-state-hover {
|
|
61
|
-
@include fill(
|
|
62
|
-
$datetime-select-hovered-text,
|
|
63
|
-
$datetime-select-hovered-bg,
|
|
64
|
-
$datetime-select-hovered-border,
|
|
65
|
-
$datetime-select-hovered-gradient
|
|
66
|
-
);
|
|
67
|
-
}
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
.k-dateinput,
|
|
72
|
-
.k-datetimepicker {
|
|
73
|
-
|
|
74
|
-
.k-link:hover,
|
|
75
|
-
.k-link.k-state-hover {
|
|
76
|
-
@include fill(
|
|
77
|
-
$datetime-select-hovered-text,
|
|
78
|
-
$datetime-select-hovered-bg,
|
|
79
|
-
$datetime-select-hovered-border,
|
|
80
|
-
$datetime-select-hovered-gradient
|
|
81
|
-
);
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
.k-link:active,
|
|
85
|
-
.k-link.k-state-active,
|
|
86
|
-
.k-link.k-state-selected {
|
|
87
|
-
@include fill(
|
|
88
|
-
$datetime-select-pressed-text,
|
|
89
|
-
$datetime-select-pressed-bg,
|
|
90
|
-
$datetime-select-pressed-border,
|
|
91
|
-
$datetime-select-pressed-gradient
|
|
92
|
-
);
|
|
93
|
-
}
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
// Timepicker
|
|
98
|
-
.k-timepicker {}
|
|
99
|
-
|
|
100
|
-
|
|
101
3
|
// Timepicker header
|
|
102
4
|
.k-time-header {
|
|
103
5
|
|
|
@@ -165,133 +67,4 @@
|
|
|
165
67
|
}
|
|
166
68
|
}
|
|
167
69
|
|
|
168
|
-
.k-datepicker,
|
|
169
|
-
.k-datetimepicker,
|
|
170
|
-
.k-timepicker {
|
|
171
|
-
.k-picker-wrap {
|
|
172
|
-
// Invalid
|
|
173
|
-
&.k-invalid,
|
|
174
|
-
&.k-state-invalid {
|
|
175
|
-
border-color: $invalid-border;
|
|
176
|
-
|
|
177
|
-
&:focus,
|
|
178
|
-
&.k-state-focused {
|
|
179
|
-
@include box-shadow($invalid-shadow);
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
// Invalid
|
|
184
|
-
&.k-state-invalid,
|
|
185
|
-
&.ng-invalid.ng-touched,
|
|
186
|
-
&.ng-invalid.ng-dirty {
|
|
187
|
-
.k-picker-wrap {
|
|
188
|
-
border-color: $invalid-border;
|
|
189
|
-
|
|
190
|
-
&:focus,
|
|
191
|
-
&.k-state-focused {
|
|
192
|
-
@include box-shadow($invalid-shadow);
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
}
|
|
197
|
-
.k-dateinput {
|
|
198
|
-
.k-dateinput-wrap {
|
|
199
|
-
// Invalid
|
|
200
|
-
&.k-invalid,
|
|
201
|
-
&.k-state-invalid {
|
|
202
|
-
border-color: $invalid-border;
|
|
203
|
-
|
|
204
|
-
&:focus,
|
|
205
|
-
&.k-state-focused {
|
|
206
|
-
@include box-shadow($invalid-shadow);
|
|
207
|
-
}
|
|
208
|
-
}
|
|
209
|
-
}
|
|
210
|
-
// Invalid
|
|
211
|
-
&.k-state-invalid,
|
|
212
|
-
&.ng-invalid.ng-touched,
|
|
213
|
-
&.ng-invalid.ng-dirty {
|
|
214
|
-
.k-dateinput-wrap {
|
|
215
|
-
border-color: $invalid-border;
|
|
216
|
-
|
|
217
|
-
&:focus,
|
|
218
|
-
&.k-state-focused {
|
|
219
|
-
@include box-shadow($invalid-shadow);
|
|
220
|
-
}
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
}
|
|
224
|
-
|
|
225
|
-
// Universal rendering
|
|
226
|
-
.k-datepicker {
|
|
227
|
-
&.k-state-hover {
|
|
228
|
-
.k-picker-wrap {
|
|
229
|
-
@include fill(
|
|
230
|
-
$datetime-hovered-text,
|
|
231
|
-
$datetime-hovered-bg,
|
|
232
|
-
$datetime-hovered-border
|
|
233
|
-
);
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
&.k-state-focus {
|
|
238
|
-
.k-picker-wrap {
|
|
239
|
-
@include fill(
|
|
240
|
-
$datetime-focused-text,
|
|
241
|
-
$datetime-focused-bg,
|
|
242
|
-
$datetime-focused-border
|
|
243
|
-
);
|
|
244
|
-
@include box-shadow($datetime-focused-shadow);
|
|
245
|
-
}
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
&.k-invalid {
|
|
249
|
-
.k-picker-wrap {
|
|
250
|
-
border-color: $invalid-border;
|
|
251
|
-
}
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
&.k-invalid.k-state-focus {
|
|
255
|
-
.k-picker-wrap {
|
|
256
|
-
@include box-shadow($invalid-shadow);
|
|
257
|
-
}
|
|
258
|
-
}
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
.k-dateinput,
|
|
262
|
-
.k-daterangepicker {
|
|
263
|
-
&.k-state-hover {
|
|
264
|
-
.k-dateinput-wrap {
|
|
265
|
-
@include fill(
|
|
266
|
-
$datetime-hovered-text,
|
|
267
|
-
$datetime-hovered-bg,
|
|
268
|
-
$datetime-hovered-border
|
|
269
|
-
);
|
|
270
|
-
}
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
&.k-state-focus {
|
|
274
|
-
.k-dateinput-wrap {
|
|
275
|
-
@include fill(
|
|
276
|
-
$datetime-focused-text,
|
|
277
|
-
$datetime-focused-bg,
|
|
278
|
-
$datetime-focused-border
|
|
279
|
-
);
|
|
280
|
-
@include box-shadow($datetime-focused-shadow);
|
|
281
|
-
}
|
|
282
|
-
}
|
|
283
|
-
|
|
284
|
-
&.k-invalid {
|
|
285
|
-
.k-dateinput-wrap {
|
|
286
|
-
border-color: $invalid-border;
|
|
287
|
-
}
|
|
288
|
-
}
|
|
289
|
-
|
|
290
|
-
&.k-invalid.k-state-focus {
|
|
291
|
-
.k-dateinput-wrap {
|
|
292
|
-
@include box-shadow($invalid-shadow);
|
|
293
|
-
}
|
|
294
|
-
}
|
|
295
|
-
}
|
|
296
|
-
|
|
297
70
|
}
|