@progress/kendo-theme-default 5.3.2-dev.0 → 5.3.2-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 +248 -111
- package/dist/all.scss +572 -175
- package/lib/swatches/default-blue.json +1 -1
- package/lib/swatches/default-dataviz-v4.json +1 -1
- package/lib/swatches/default-green.json +1 -1
- package/lib/swatches/default-main-dark.json +1 -1
- package/lib/swatches/default-main.json +1 -1
- package/lib/swatches/default-nordic.json +1 -1
- package/lib/swatches/default-ocean-blue.json +1 -1
- package/lib/swatches/default-orange.json +1 -1
- package/lib/swatches/default-purple.json +1 -1
- package/lib/swatches/default-turquoise.json +1 -1
- package/lib/swatches/default-urban.json +1 -1
- package/package.json +2 -2
- package/scss/_variables.scss +1 -1
- package/scss/button/_index.scss +0 -2
- package/scss/button/_layout.scss +1 -61
- package/scss/button/_theme.scss +0 -10
- package/scss/button/_variables.scss +0 -14
- package/scss/calendar/_theme.scss +21 -9
- package/scss/card/_theme.scss +11 -1
- package/scss/chip/_variables.scss +1 -1
- package/scss/daterangepicker/_layout.scss +1 -1
- package/scss/floating-label/_theme.scss +1 -0
- package/scss/gantt/_layout.scss +7 -3
- package/scss/gantt/_variables.scss +1 -0
- package/scss/grid/_layout.scss +1 -0
- package/scss/icons/_layout.scss +5 -4
- package/scss/icons/font/WebComponentsIcons.scss +1 -1
- package/scss/icons/font/WebComponentsIcons.ttf +0 -0
- package/scss/index.scss +2 -0
- package/scss/input/_layout.scss +12 -6
- package/scss/input/_theme.scss +212 -0
- package/scss/input/_variables.scss +58 -1
- package/scss/menu/_index.scss +1 -1
- package/scss/menu/_layout.scss +37 -36
- package/scss/menu/_theme.scss +4 -4
- package/scss/menu-button/_index.scss +12 -0
- package/scss/menu-button/_layout.scss +29 -0
- package/scss/menu-button/_theme.scss +1 -0
- package/scss/menu-button/_variables.scss +5 -0
- package/scss/orgchart/_theme.scss +2 -0
- package/scss/panelbar/_layout.scss +2 -2
- package/scss/panelbar/_variables.scss +2 -0
- package/scss/split-button/_index.scss +12 -0
- package/scss/split-button/_layout.scss +40 -0
- package/scss/split-button/_theme.scss +9 -0
- package/scss/split-button/_variables.scss +19 -0
- package/scss/taskboard/_layout.scss +2 -0
- package/scss/taskboard/_theme.scss +6 -0
- package/scss/tilelayout/_theme.scss +1 -0
- package/scss/treeview/_variables.scss +24 -13
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.3.2-dev.
|
|
4
|
+
"version": "5.3.2-dev.3",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"prepublishOnly": "node ../../scripts/themes-prepublish.js",
|
|
48
48
|
"postpublish": "echo 'no postpublish for default theme'"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "f5a9f36ab8fec6d7ad76ea720d4db85a46aa8860"
|
|
51
51
|
}
|
package/scss/_variables.scss
CHANGED
|
@@ -360,7 +360,7 @@ $placeholder-bg: rgba(0, 0, 0, .1) !default;
|
|
|
360
360
|
// Validator
|
|
361
361
|
$invalid-bg: null !default;
|
|
362
362
|
$invalid-text: $error !default;
|
|
363
|
-
$invalid-border:
|
|
363
|
+
$invalid-border: $error !default;
|
|
364
364
|
$invalid-shadow: null !default;
|
|
365
365
|
|
|
366
366
|
|
package/scss/button/_index.scss
CHANGED
package/scss/button/_layout.scss
CHANGED
|
@@ -68,26 +68,6 @@
|
|
|
68
68
|
|
|
69
69
|
.k-button-text {}
|
|
70
70
|
|
|
71
|
-
|
|
72
|
-
// Button arrow
|
|
73
|
-
.k-button-arrow {
|
|
74
|
-
padding-left: $kendo-button-arrow-padding-x;
|
|
75
|
-
padding-right: $kendo-button-arrow-padding-x;
|
|
76
|
-
flex: none;
|
|
77
|
-
display: inline-flex;
|
|
78
|
-
align-items: center;
|
|
79
|
-
justify-content: center;
|
|
80
|
-
}
|
|
81
|
-
.k-button > .k-button-arrow {
|
|
82
|
-
margin-inline-start: -$kendo-button-arrow-padding-x;
|
|
83
|
-
margin-inline-end: -$kendo-button-padding-x;
|
|
84
|
-
}
|
|
85
|
-
.k-icon-button > .k-button-arrow {
|
|
86
|
-
margin-inline-start: 0;
|
|
87
|
-
margin-inline-end: -$kendo-button-padding-y;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
|
|
91
71
|
// Sizes
|
|
92
72
|
.k-button-sm {
|
|
93
73
|
padding: $kendo-button-padding-y-sm $kendo-button-padding-x-sm;
|
|
@@ -137,17 +117,6 @@
|
|
|
137
117
|
}
|
|
138
118
|
|
|
139
119
|
|
|
140
|
-
// Menu button
|
|
141
|
-
.k-menu-button,
|
|
142
|
-
.k-dropdown-button {
|
|
143
|
-
aspect-ratio: auto;
|
|
144
|
-
outline: 0;
|
|
145
|
-
display: inline-flex;
|
|
146
|
-
flex-flow: row nowrap;
|
|
147
|
-
vertical-align: middle;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
|
|
151
120
|
// Button group
|
|
152
121
|
.k-button-group {
|
|
153
122
|
margin: 0;
|
|
@@ -210,34 +179,6 @@
|
|
|
210
179
|
}
|
|
211
180
|
|
|
212
181
|
|
|
213
|
-
// Split button
|
|
214
|
-
.k-split-button {
|
|
215
|
-
|
|
216
|
-
.k-split-button-arrow {
|
|
217
|
-
padding: $kendo-button-arrow-padding-y $kendo-button-arrow-padding-x;
|
|
218
|
-
width: auto;
|
|
219
|
-
aspect-ratio: auto;
|
|
220
|
-
flex: none;
|
|
221
|
-
|
|
222
|
-
&.k-button-sm {
|
|
223
|
-
padding: $kendo-button-arrow-padding-y-sm $kendo-button-arrow-padding-x-sm;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
&.k-button-md {
|
|
227
|
-
padding: $kendo-button-arrow-padding-y-md $kendo-button-arrow-padding-x-md;
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
&.k-button-lg {
|
|
231
|
-
padding: $kendo-button-arrow-padding-y-lg $kendo-button-arrow-padding-x-lg;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
.k-button-icon {
|
|
235
|
-
min-width: 0;
|
|
236
|
-
}
|
|
237
|
-
}
|
|
238
|
-
}
|
|
239
|
-
|
|
240
|
-
|
|
241
182
|
// Flat button
|
|
242
183
|
.k-button-flat {
|
|
243
184
|
border-color: transparent !important; // sass-lint:disable-line no-important
|
|
@@ -296,8 +237,7 @@
|
|
|
296
237
|
|
|
297
238
|
|
|
298
239
|
// IE
|
|
299
|
-
.k-ie .k-button-group
|
|
300
|
-
.k-ie .k-split-button {
|
|
240
|
+
.k-ie .k-button-group {
|
|
301
241
|
.k-button {
|
|
302
242
|
@include border-radius( 0 );
|
|
303
243
|
}
|
package/scss/button/_theme.scss
CHANGED
|
@@ -272,18 +272,8 @@
|
|
|
272
272
|
}
|
|
273
273
|
|
|
274
274
|
|
|
275
|
-
// Menu button
|
|
276
|
-
.k-menu-button {}
|
|
277
|
-
|
|
278
|
-
|
|
279
275
|
// Button group
|
|
280
276
|
.k-button-group {}
|
|
281
277
|
|
|
282
278
|
|
|
283
|
-
// Split button
|
|
284
|
-
.k-split-button:focus,
|
|
285
|
-
.k-split-button.k-focus {
|
|
286
|
-
@include box-shadow( $kendo-button-focus-shadow );
|
|
287
|
-
}
|
|
288
|
-
|
|
289
279
|
}
|
|
@@ -48,20 +48,6 @@ $kendo-button-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-but
|
|
|
48
48
|
/// @group button
|
|
49
49
|
$kendo-button-inner-calc-size: calc( #{$kendo-button-line-height * 1em} + #{$kendo-button-padding-y * 2} ) !default;
|
|
50
50
|
|
|
51
|
-
/// Horizontal padding of the arrow button.
|
|
52
|
-
/// @group button
|
|
53
|
-
$kendo-button-arrow-padding-x: $kendo-button-padding-y !default;
|
|
54
|
-
$kendo-button-arrow-padding-x-sm: $kendo-button-padding-y-sm !default;
|
|
55
|
-
$kendo-button-arrow-padding-x-md: $kendo-button-padding-y-md !default;
|
|
56
|
-
$kendo-button-arrow-padding-x-lg: $kendo-button-padding-y-lg !default;
|
|
57
|
-
|
|
58
|
-
/// Vertical padding of the arrow button.
|
|
59
|
-
/// @group button
|
|
60
|
-
$kendo-button-arrow-padding-y: $kendo-button-padding-y !default;
|
|
61
|
-
$kendo-button-arrow-padding-y-sm: $kendo-button-padding-y-sm !default;
|
|
62
|
-
$kendo-button-arrow-padding-y-md: $kendo-button-padding-y-md !default;
|
|
63
|
-
$kendo-button-arrow-padding-y-lg: $kendo-button-padding-y-lg !default;
|
|
64
|
-
|
|
65
51
|
/// Theme colors map for the button.
|
|
66
52
|
/// @group button
|
|
67
53
|
$kendo-button-theme-colors: map-merge(
|
|
@@ -29,9 +29,11 @@
|
|
|
29
29
|
color: $calendar-today-nav-text;
|
|
30
30
|
|
|
31
31
|
&:hover,
|
|
32
|
+
&.k-hover,
|
|
32
33
|
&.k-state-hover,
|
|
33
34
|
&:focus,
|
|
34
|
-
&.k-state-focus
|
|
35
|
+
&.k-state-focus,
|
|
36
|
+
&.k-focus {
|
|
35
37
|
color: $calendar-today-nav-hover-text;
|
|
36
38
|
}
|
|
37
39
|
}
|
|
@@ -52,7 +54,8 @@
|
|
|
52
54
|
.k-link {
|
|
53
55
|
box-shadow: inset 0 0 0 1px $calendar-today-color;
|
|
54
56
|
}
|
|
55
|
-
&.k-state-focused .k-link
|
|
57
|
+
&.k-state-focused .k-link,
|
|
58
|
+
&.k-focus .k-link {
|
|
56
59
|
box-shadow: inset 0 0 0 1px $calendar-today-color, $calendar-cell-focused-shadow;
|
|
57
60
|
}
|
|
58
61
|
} @else if $calendar-today-style == color {
|
|
@@ -87,7 +90,8 @@
|
|
|
87
90
|
|
|
88
91
|
// Interactive states
|
|
89
92
|
.k-calendar-td:hover .k-link,
|
|
90
|
-
.k-calendar-td.k-state-hover .k-link
|
|
93
|
+
.k-calendar-td.k-state-hover .k-link,
|
|
94
|
+
.k-calendar-td.k-hover .k-link {
|
|
91
95
|
@include fill(
|
|
92
96
|
$calendar-cell-hover-text,
|
|
93
97
|
$calendar-cell-hover-bg,
|
|
@@ -95,7 +99,8 @@
|
|
|
95
99
|
$calendar-cell-hover-gradient
|
|
96
100
|
);
|
|
97
101
|
}
|
|
98
|
-
.k-calendar-td.k-state-selected .k-link
|
|
102
|
+
.k-calendar-td.k-state-selected .k-link,
|
|
103
|
+
.k-calendar-td.k-selected .k-link {
|
|
99
104
|
@include fill(
|
|
100
105
|
$calendar-cell-selected-text,
|
|
101
106
|
$calendar-cell-selected-bg,
|
|
@@ -104,7 +109,9 @@
|
|
|
104
109
|
);
|
|
105
110
|
}
|
|
106
111
|
.k-calendar-td.k-state-selected:hover .k-link,
|
|
107
|
-
.k-calendar-td.k-state-selected.k-state-hover .k-link
|
|
112
|
+
.k-calendar-td.k-state-selected.k-state-hover .k-link,
|
|
113
|
+
.k-calendar-td.k-selected:hover .k-link,
|
|
114
|
+
.k-calendar-td.k-selected.k-hover .k-link {
|
|
108
115
|
@include fill(
|
|
109
116
|
$calendar-cell-selected-hover-text,
|
|
110
117
|
$calendar-cell-selected-hover-bg,
|
|
@@ -113,11 +120,14 @@
|
|
|
113
120
|
);
|
|
114
121
|
}
|
|
115
122
|
.k-calendar-td.k-state-focused .k-link,
|
|
116
|
-
.k-calendar-td.k-state-focus .k-link
|
|
123
|
+
.k-calendar-td.k-state-focus .k-link,
|
|
124
|
+
.k-calendar-td.k-focus .k-link {
|
|
117
125
|
box-shadow: $calendar-cell-focused-shadow;
|
|
118
126
|
}
|
|
119
127
|
.k-calendar-td.k-state-selected.k-state-focused .k-link,
|
|
120
|
-
.k-calendar-td.k-state-selected.k-state-focus .k-link
|
|
128
|
+
.k-calendar-td.k-state-selected.k-state-focus .k-link,
|
|
129
|
+
.k-calendar-td.k-selected:focus .k-link,
|
|
130
|
+
.k-calendar-td.k-selected.k-focus .k-link {
|
|
121
131
|
box-shadow: $calendar-cell-selected-focus-shadow;
|
|
122
132
|
}
|
|
123
133
|
|
|
@@ -131,7 +141,8 @@
|
|
|
131
141
|
box-shadow: inset -1px 0 $calendar-navigation-border;
|
|
132
142
|
|
|
133
143
|
li:hover,
|
|
134
|
-
li.k-state-hover
|
|
144
|
+
li.k-state-hover,
|
|
145
|
+
li.k-hover {
|
|
135
146
|
color: $calendar-today-nav-hover-text;
|
|
136
147
|
}
|
|
137
148
|
}
|
|
@@ -214,7 +225,8 @@
|
|
|
214
225
|
}
|
|
215
226
|
|
|
216
227
|
.k-range-start.k-state-active,
|
|
217
|
-
.k-range-end.k-state-active
|
|
228
|
+
.k-range-end.k-state-active,
|
|
229
|
+
.k-range-end.k-active {
|
|
218
230
|
.k-link {
|
|
219
231
|
box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, .2);
|
|
220
232
|
}
|
package/scss/card/_theme.scss
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
@include box-shadow( $card-shadow );
|
|
11
11
|
|
|
12
12
|
&:focus,
|
|
13
|
+
&.k-focus,
|
|
13
14
|
&.k-state-focus {
|
|
14
15
|
@include fill(
|
|
15
16
|
$card-focus-text,
|
|
@@ -18,6 +19,11 @@
|
|
|
18
19
|
);
|
|
19
20
|
@include box-shadow( $card-focus-shadow );
|
|
20
21
|
}
|
|
22
|
+
|
|
23
|
+
&.k-selected,
|
|
24
|
+
&.k-state-selected {
|
|
25
|
+
@include box-shadow( $card-focus-shadow );
|
|
26
|
+
}
|
|
21
27
|
}
|
|
22
28
|
|
|
23
29
|
|
|
@@ -68,7 +74,10 @@
|
|
|
68
74
|
|
|
69
75
|
.k-card-wrap {
|
|
70
76
|
&.k-state-focused,
|
|
71
|
-
&.k-
|
|
77
|
+
&.k-focus,
|
|
78
|
+
&:focus,
|
|
79
|
+
&.k-state-selected,
|
|
80
|
+
&.k-selected {
|
|
72
81
|
> .k-card {
|
|
73
82
|
@include box-shadow( $card-focus-shadow );
|
|
74
83
|
}
|
|
@@ -90,6 +99,7 @@
|
|
|
90
99
|
.k-card-callout.k-callout-w { @include box-shadow( $card-callout-box-shadow-w ); }
|
|
91
100
|
|
|
92
101
|
.k-card:focus .k-card-callout,
|
|
102
|
+
.k-card.k-focus .k-card-callout,
|
|
93
103
|
.k-card.k-state-focus .k-card-callout {
|
|
94
104
|
@include fill(
|
|
95
105
|
$bg: $card-focus-bg,
|
package/scss/gantt/_layout.scss
CHANGED
|
@@ -731,13 +731,17 @@
|
|
|
731
731
|
}
|
|
732
732
|
.k-gantt-tooltip-validation-label {
|
|
733
733
|
display: inline-flex;
|
|
734
|
-
|
|
735
|
-
overflow: hidden;
|
|
736
|
-
text-overflow: ellipsis;
|
|
734
|
+
min-width: $gantt-validation-tooltip-label-width;
|
|
737
735
|
}
|
|
738
736
|
.k-gantt-tooltip-validation-value {
|
|
739
737
|
font-weight: $font-weight-bold;
|
|
740
738
|
}
|
|
739
|
+
.k-gantt-tooltip-validation-label,
|
|
740
|
+
.k-gantt-tooltip-validation-value {
|
|
741
|
+
white-space: nowrap;
|
|
742
|
+
overflow: hidden;
|
|
743
|
+
text-overflow: ellipsis;
|
|
744
|
+
}
|
|
741
745
|
}
|
|
742
746
|
|
|
743
747
|
@include exports("gantt/export") {
|
|
@@ -87,6 +87,7 @@ $gantt-action-on-offset-text: #000000 !default;
|
|
|
87
87
|
$gantt-offset-resize-handler-top: 50% !default;
|
|
88
88
|
|
|
89
89
|
$gantt-validation-tooltip-width: 200px !default;
|
|
90
|
+
$gantt-validation-tooltip-label-width: 50px !default;
|
|
90
91
|
$gantt-validation-tooltip-border: #656565 !default;
|
|
91
92
|
$gantt-validation-tooltip-valid-border: $success !default;
|
|
92
93
|
$gantt-validation-tooltip-invalid-border: $error !default;
|
package/scss/grid/_layout.scss
CHANGED
package/scss/icons/_layout.scss
CHANGED
|
@@ -187,19 +187,19 @@
|
|
|
187
187
|
.k-i-arrows-no-change::before { content: "\e011"; }
|
|
188
188
|
.k-i-arrow-overflow-down::before { content: "\e012"; }
|
|
189
189
|
.k-i-chevron-up::before { content: "\e013"; }
|
|
190
|
-
.k-i-chevron-double-up::before { content: "\
|
|
190
|
+
.k-i-chevron-double-up::before { content: "\e05e"; }
|
|
191
191
|
.k-i-arrow-chevron-up::before { content: "\e013"; }
|
|
192
192
|
.k-i-arrowhead-n::before { content: "\e013"; }
|
|
193
193
|
.k-i-chevron-right::before { content: "\e014"; }
|
|
194
|
-
.k-i-chevron-double-right::before { content: "\
|
|
194
|
+
.k-i-chevron-double-right::before { content: "\e05f"; }
|
|
195
195
|
.k-i-arrow-chevron-right::before { content: "\e014"; }
|
|
196
196
|
.k-i-arrowhead-e::before { content: "\e014"; }
|
|
197
197
|
.k-i-chevron-down::before { content: "\e015"; }
|
|
198
|
-
.k-i-chevron-double-down::before { content: "\
|
|
198
|
+
.k-i-chevron-double-down::before { content: "\e060"; }
|
|
199
199
|
.k-i-arrow-chevron-down::before { content: "\e015"; }
|
|
200
200
|
.k-i-arrowhead-s::before { content: "\e015"; }
|
|
201
201
|
.k-i-chevron-left::before { content: "\e016"; }
|
|
202
|
-
.k-i-chevron-double-left::before { content: "\
|
|
202
|
+
.k-i-chevron-double-left::before { content: "\e061"; }
|
|
203
203
|
.k-i-arrow-chevron-left::before { content: "\e016"; }
|
|
204
204
|
.k-i-arrowhead-w::before { content: "\e016"; }
|
|
205
205
|
.k-i-arrow-up::before { content: "\e017"; }
|
|
@@ -1048,6 +1048,7 @@
|
|
|
1048
1048
|
.k-i-file-image::before { content: "\e93d"; }
|
|
1049
1049
|
.k-i-file-presentation::before { content: "\e93e"; }
|
|
1050
1050
|
.k-i-file-data::before { content: "\e93f"; }
|
|
1051
|
+
.k-i-report-element::before { content: "\e94a"; }
|
|
1051
1052
|
.k-i-file-disc-image::before { content: "\e940"; }
|
|
1052
1053
|
.k-i-file-programming::before { content: "\e941"; }
|
|
1053
1054
|
.k-i-parameters-byte-array::before { content: "\e942"; }
|