@progress/kendo-theme-default 4.43.1-dev.5 → 4.44.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.
Files changed (78) hide show
  1. package/dist/all.css +2131 -1183
  2. package/dist/all.scss +1801 -1408
  3. package/package.json +2 -2
  4. package/scss/action-buttons/_layout.scss +7 -0
  5. package/scss/action-sheet/_layout.scss +6 -0
  6. package/scss/appbar/_layout.scss +6 -1
  7. package/scss/autocomplete/_layout.scss +6 -0
  8. package/scss/avatar/_layout.scss +6 -0
  9. package/scss/badge/_layout.scss +6 -0
  10. package/scss/bottom-navigation/_layout.scss +6 -0
  11. package/scss/breadcrumb/_layout.scss +6 -0
  12. package/scss/button/_layout.scss +80 -92
  13. package/scss/button/_theme.scss +177 -112
  14. package/scss/button/_variables.scss +80 -14
  15. package/scss/captcha/_layout.scss +6 -0
  16. package/scss/card/_layout.scss +6 -0
  17. package/scss/chat/_layout.scss +9 -2
  18. package/scss/chip/_layout.scss +6 -0
  19. package/scss/color-preview/_layout.scss +6 -0
  20. package/scss/coloreditor/_layout.scss +6 -0
  21. package/scss/colorgradient/_layout.scss +6 -4
  22. package/scss/colorpalette/_layout.scss +6 -0
  23. package/scss/colorpicker/_layout.scss +6 -3
  24. package/scss/combobox/_layout.scss +6 -1
  25. package/scss/common/_loading.scss +15 -13
  26. package/scss/dateinput/_layout.scss +7 -1
  27. package/scss/datepicker/_layout.scss +6 -0
  28. package/scss/daterangepicker/_layout.scss +6 -0
  29. package/scss/datetimepicker/_layout.scss +6 -2
  30. package/scss/drawer/_layout.scss +6 -0
  31. package/scss/dropdownlist/_layout.scss +6 -1
  32. package/scss/expansion-panel/_layout.scss +6 -1
  33. package/scss/fab/_layout.scss +6 -0
  34. package/scss/filter/_layout.scss +8 -0
  35. package/scss/floating-label/_layout.scss +7 -0
  36. package/scss/grid/_layout.scss +4 -3
  37. package/scss/grid/_theme.scss +2 -8
  38. package/scss/imageeditor/_layout.scss +6 -0
  39. package/scss/list/_layout.scss +10 -28
  40. package/scss/list/_theme.scss +4 -4
  41. package/scss/listbox/_layout.scss +9 -0
  42. package/scss/map/_layout.scss +7 -0
  43. package/scss/maskedtextbox/_layout.scss +6 -0
  44. package/scss/mediaplayer/_layout.scss +14 -1
  45. package/scss/multiselect/_layout.scss +8 -2
  46. package/scss/notification/_layout.scss +6 -0
  47. package/scss/numerictextbox/_layout.scss +6 -2
  48. package/scss/orgchart/_layout.scss +6 -0
  49. package/scss/pager/_layout.scss +6 -2
  50. package/scss/panelbar/_layout.scss +6 -0
  51. package/scss/pivotgrid/_layout.scss +55 -83
  52. package/scss/pivotgrid/_theme.scss +39 -73
  53. package/scss/popover/_layout.scss +6 -0
  54. package/scss/progressbar/_layout.scss +6 -0
  55. package/scss/rating/_layout.scss +6 -1
  56. package/scss/scheduler/_layout.scss +6 -0
  57. package/scss/searchbox/_layout.scss +6 -0
  58. package/scss/slider/_layout.scss +71 -144
  59. package/scss/slider/_theme.scss +0 -6
  60. package/scss/spreadsheet/_layout.scss +1 -0
  61. package/scss/stepper/_layout.scss +6 -1
  62. package/scss/switch/_layout.scss +14 -9
  63. package/scss/switch/_variables.scss +127 -33
  64. package/scss/tabstrip/_layout.scss +26 -4
  65. package/scss/taskboard/_layout.scss +6 -2
  66. package/scss/textarea/_layout.scss +6 -0
  67. package/scss/textbox/_layout.scss +6 -0
  68. package/scss/timeline/_layout.scss +8 -4
  69. package/scss/timepicker/_layout.scss +6 -1
  70. package/scss/timeselector/_layout.scss +1 -0
  71. package/scss/toolbar/_index.scss +1 -0
  72. package/scss/toolbar/_layout.scss +1 -0
  73. package/scss/tooltip/_layout.scss +6 -1
  74. package/scss/treelist/_layout.scss +4 -0
  75. package/scss/treeview/_layout.scss +17 -18
  76. package/scss/upload/_layout.scss +6 -1
  77. package/scss/window/_layout.scss +2 -2
  78. package/scss/wizard/_layout.scss +4 -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": "4.43.1-dev.5",
4
+ "version": "4.44.0",
5
5
  "author": "Progress",
6
6
  "license": "Apache-2.0",
7
7
  "keywords": [
@@ -47,5 +47,5 @@
47
47
  "dart:flat": "gulp dart:flat",
48
48
  "prepublishOnly": "echo 'no prebublish for default theme'"
49
49
  },
50
- "gitHead": "ac48eb1c0df9b906d3bef3e7881332555f14a232"
50
+ "gitHead": "3632cd4d3b93f2ec215392497839837d54477e63"
51
51
  }
@@ -2,6 +2,7 @@
2
2
 
3
3
  .k-actions {
4
4
  padding: $actions-padding-y $actions-padding-x;
5
+ box-sizing: border-box;
5
6
  border-width: $actions-border-width 0 0 0;
6
7
  border-style: solid;
7
8
  border-color: inherit;
@@ -13,6 +14,12 @@
13
14
  overflow: hidden;
14
15
  // TODO: remove
15
16
  clear: both;
17
+
18
+ *,
19
+ *::before,
20
+ *::after {
21
+ box-sizing: border-box;
22
+ }
16
23
  }
17
24
 
18
25
 
@@ -27,6 +27,12 @@
27
27
  overflow-y: auto;
28
28
  position: fixed;
29
29
  z-index: 10002;
30
+
31
+ *,
32
+ *::before,
33
+ *::after {
34
+ box-sizing: border-box;
35
+ }
30
36
  }
31
37
 
32
38
 
@@ -20,9 +20,14 @@
20
20
  -webkit-touch-callout: none;
21
21
  -webkit-tap-highlight-color: $rgba-transparent;
22
22
 
23
+ *,
24
+ *::before,
25
+ *::after {
26
+ box-sizing: border-box;
27
+ }
28
+
23
29
  > * {
24
30
  flex-shrink: 0;
25
-
26
31
  }
27
32
 
28
33
  // Appbar section
@@ -22,6 +22,12 @@
22
22
  -webkit-touch-callout: none;
23
23
  -webkit-tap-highlight-color: $rgba-transparent;
24
24
 
25
+ *,
26
+ *::before,
27
+ *::after {
28
+ box-sizing: border-box;
29
+ }
30
+
25
31
 
26
32
  // Input
27
33
  .k-input {}
@@ -12,6 +12,12 @@
12
12
  justify-content: center;
13
13
  vertical-align: middle;
14
14
  overflow: hidden;
15
+
16
+ *,
17
+ *::before,
18
+ *::after {
19
+ box-sizing: border-box;
20
+ }
15
21
  }
16
22
 
17
23
 
@@ -17,6 +17,12 @@
17
17
  vertical-align: middle;
18
18
  overflow: hidden;
19
19
  text-overflow: ellipsis;
20
+
21
+ *,
22
+ *::before,
23
+ *::after {
24
+ box-sizing: border-box;
25
+ }
20
26
  }
21
27
  .k-badge > * {
22
28
  color: inherit;
@@ -20,6 +20,12 @@
20
20
  outline: none;
21
21
  -webkit-touch-callout: none;
22
22
  -webkit-tap-highlight-color: $rgba-transparent;
23
+
24
+ *,
25
+ *::before,
26
+ *::after {
27
+ box-sizing: border-box;
28
+ }
23
29
  }
24
30
 
25
31
  .k-bottom-nav-border {
@@ -15,6 +15,12 @@
15
15
  flex-direction: row;
16
16
  -webkit-touch-callout: none;
17
17
  -webkit-tap-highlight-color: $rgba-transparent;
18
+
19
+ *,
20
+ *::before,
21
+ *::after {
22
+ box-sizing: border-box;
23
+ }
18
24
  }
19
25
 
20
26
 
@@ -24,6 +24,12 @@
24
24
  -webkit-appearance: none;
25
25
  position: relative;
26
26
 
27
+ *,
28
+ *::before,
29
+ *::after {
30
+ box-sizing: border-box;
31
+ }
32
+
27
33
  &:disabled,
28
34
  &.k-state-disabled {
29
35
  @include disabled( $disabled-styling );
@@ -64,6 +70,21 @@
64
70
  .k-button .k-button-text {}
65
71
 
66
72
 
73
+ // Button arrow
74
+ .k-button-arrow {
75
+ padding-left: $button-arrow-padding-x;
76
+ padding-right: $button-arrow-padding-x;
77
+ flex: none;
78
+ display: inline-flex;
79
+ align-items: center;
80
+ justify-content: center;
81
+ }
82
+ .k-button > .k-button-arrow {
83
+ margin-inline-start: -$button-arrow-padding-x;
84
+ margin-inline-end: -$button-padding-x;
85
+ }
86
+
87
+
67
88
  // Text button
68
89
  .k-text-button {
69
90
 
@@ -91,6 +112,10 @@
91
112
  min-height: calc( #{$button-font-size} * #{$button-line-height} );
92
113
  }
93
114
  }
115
+ .k-icon-button > .k-button-arrow {
116
+ margin-inline-start: 0;
117
+ margin-inline-end: -$button-padding-y;
118
+ }
94
119
  // TODO: REMOVE
95
120
  .k-button.k-button-icon {
96
121
  padding: $button-padding-y;
@@ -130,50 +155,51 @@
130
155
  -webkit-touch-callout: none;
131
156
  -webkit-tap-highlight-color: $rgba-transparent;
132
157
 
133
- .k-button {
134
- @include border-radius( 0 );
135
- }
136
- .k-button ~ .k-button {
158
+ > .k-button + .k-button {
137
159
  margin-inline-start: if( $button-border-width == 0, null, -$button-border-width );
138
160
  }
139
161
 
140
- .k-button:hover,
141
- .k-button.k-state-hover,
142
- .k-button:active,
143
- .k-button.k-state-active,
144
- .k-button.k-state-selected,
145
- .k-button:focus,
146
- .k-button.k-state-focus {
162
+ > .k-button:hover,
163
+ > .k-button.k-state-hover,
164
+ > .k-button:focus,
165
+ > .k-button.k-state-focus,
166
+ > .k-button:active,
167
+ > .k-button.k-state-active,
168
+ > .k-button.k-state-selected {
147
169
  z-index: 2;
148
170
  }
149
171
 
150
- .k-group-start,
151
- .k-button:first-child {
152
- @include border-left-radius( $button-border-radius );
172
+ .k-button:not(:first-child):not(:last-child) {
173
+ border-start-end-radius: 0;
174
+ border-end-end-radius: 0;
175
+ border-start-start-radius: 0;
176
+ border-end-start-radius: 0;
153
177
  }
154
- .k-group-end,
155
- .k-button:last-child {
156
- @include border-right-radius( $button-border-radius );
178
+ > .k-button:first-child:not(:only-child) {
179
+ border-start-end-radius: 0;
180
+ border-end-end-radius: 0;
157
181
  }
158
- .k-group-start.k-group-end,
159
- .k-button:first-child:last-child {
160
- @include border-radius( $button-border-radius );
182
+ > .k-button:last-child:not(:only-child) {
183
+ border-start-start-radius: 0;
184
+ border-end-start-radius: 0;
185
+ }
186
+
187
+ &:disabled,
188
+ &[disabled],
189
+ &.k-disabled,
190
+ &.k-state-disabled {
191
+ opacity: 1;
192
+ filter: none;
161
193
  }
162
194
 
163
195
  }
164
196
 
165
197
  .k-button-group-stretched {
166
- display: flex;
198
+ width: 100%;
167
199
 
168
- .k-button {
169
- display: inline-block;
200
+ > * {
170
201
  flex: 1 0 0%;
171
202
  overflow: hidden;
172
- text-overflow: ellipsis;
173
-
174
- > .k-icon {
175
- vertical-align: text-bottom;
176
- }
177
203
  }
178
204
  }
179
205
 
@@ -187,32 +213,13 @@
187
213
  flex-flow: row nowrap;
188
214
  vertical-align: middle;
189
215
 
190
- .k-button {
191
- @include border-radius( 0 );
192
- }
193
-
194
- // .k-button
195
- > .k-button:first-child {
196
- @include border-left-radius( $button-border-radius );
197
- }
198
- > .k-split-button-arrow,
199
- > .k-button:last-child {
200
- @include border-right-radius( $button-border-radius );
201
- margin-inline-start: if( $button-border-width == 0, null, -$button-border-width );
202
- padding: $button-padding-y;
216
+ .k-split-button-arrow {
217
+ padding: $button-arrow-padding-y $button-arrow-padding-x;
203
218
  width: auto;
204
219
  flex: none;
205
- }
206
220
 
207
- &[dir="rtl"] {
208
- // k-button
209
- > .k-button:first-child {
210
- @include border-left-radius( 0 );
211
- @include border-right-radius( $button-border-radius );
212
- }
213
- > .k-button:last-child {
214
- @include border-right-radius( 0 );
215
- @include border-left-radius( $button-border-radius );
221
+ .k-button-icon {
222
+ min-width: 0;
216
223
  }
217
224
  }
218
225
  }
@@ -256,13 +263,29 @@
256
263
  .k-button-outline {
257
264
  @include box-shadow( none );
258
265
  color: inherit;
259
- background: none;
266
+ background-color: transparent;
267
+ background-image: none !important; // sass-lint:disable-line no-important
260
268
  }
261
269
  .k-button.k-outline {
262
270
  @extend .k-button-outline;
263
271
  }
264
272
 
265
273
 
274
+ // Link button
275
+ .k-button-link {
276
+ @include box-shadow( none );
277
+ border-color: transparent !important; // sass-lint:disable-line no-important
278
+ color: inherit;
279
+ background-color: transparent !important; // sass-lint:disable-line no-important
280
+ background-image: none !important; // sass-lint:disable-line no-important
281
+ text-decoration: none;
282
+ }
283
+ .k-button-link:hover,
284
+ .k-button-link.k-state-hover {
285
+ text-decoration: underline;
286
+ }
287
+
288
+
266
289
  // Clear button
267
290
  .k-button-clear {
268
291
  border-color: transparent !important; // sass-lint:disable-line no-important
@@ -272,46 +295,11 @@
272
295
  }
273
296
 
274
297
 
275
- // RTL
276
- .k-rtl {
277
-
278
- // Button group
279
- .k-button-group {
280
-
281
- .k-button {
282
- @include border-radius( 0 );
283
- }
284
-
285
- .k-group-start,
286
- .k-button:first-child {
287
- @include border-right-radius( $button-border-radius );
288
- }
289
- .k-group-end,
290
- .k-button:last-child {
291
- @include border-left-radius( $button-border-radius );
292
- }
293
- .k-group-start.k-group-end,
294
- .k-button:first-child:last-child {
295
- @include border-radius( $button-border-radius );
296
- }
297
-
298
- }
299
-
300
- // Split button
301
- .k-split-button {
302
-
303
- .k-button {
304
- @include border-radius( 0 );
305
- }
306
-
307
- // k-button
308
- > .k-button:first-child {
309
- @include border-right-radius( $button-border-radius );
310
- }
311
- > .k-split-button-arrow,
312
- > .k-button:last-child {
313
- @include border-left-radius( $button-border-radius );
314
- }
298
+ // IE
299
+ .k-ie .k-button-group,
300
+ .k-ie .k-split-button {
301
+ .k-button {
302
+ @include border-radius( 0 );
315
303
  }
316
304
  }
317
305