@progress/kendo-theme-classic 4.42.1-dev.4 → 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.
Files changed (55) hide show
  1. package/dist/all.css +1629 -3184
  2. package/dist/all.scss +209 -235
  3. package/modules/@progress/kendo-theme-default/package.json +2 -2
  4. package/modules/@progress/kendo-theme-default/scss/action-buttons/_layout.scss +1 -0
  5. package/modules/@progress/kendo-theme-default/scss/adaptive/_layout.scss +6 -12
  6. package/modules/@progress/kendo-theme-default/scss/autocomplete/_theme.scss +7 -8
  7. package/modules/@progress/kendo-theme-default/scss/autocomplete/_variables.scss +0 -5
  8. package/modules/@progress/kendo-theme-default/scss/avatar/_layout.scss +4 -1
  9. package/modules/@progress/kendo-theme-default/scss/avatar/_variables.scss +1 -1
  10. package/modules/@progress/kendo-theme-default/scss/calendar/_theme.scss +4 -0
  11. package/modules/@progress/kendo-theme-default/scss/chat/_layout.scss +3 -5
  12. package/modules/@progress/kendo-theme-default/scss/chat/_theme.scss +0 -10
  13. package/modules/@progress/kendo-theme-default/scss/chat/_variables.scss +0 -8
  14. package/modules/@progress/kendo-theme-default/scss/color-preview/_layout.scss +5 -1
  15. package/modules/@progress/kendo-theme-default/scss/colorgradient/_layout.scss +7 -0
  16. package/modules/@progress/kendo-theme-default/scss/colorpicker/_layout.scss +5 -14
  17. package/modules/@progress/kendo-theme-default/scss/colorpicker/_theme.scss +8 -0
  18. package/modules/@progress/kendo-theme-default/scss/colorpicker/_variables.scss +0 -2
  19. package/modules/@progress/kendo-theme-default/scss/combobox/_layout.scss +4 -7
  20. package/modules/@progress/kendo-theme-default/scss/combobox/_theme.scss +20 -21
  21. package/modules/@progress/kendo-theme-default/scss/combobox/_variables.scss +0 -1
  22. package/modules/@progress/kendo-theme-default/scss/core/functions/_colors.scss +4 -1
  23. package/modules/@progress/kendo-theme-default/scss/datetime/_layout.scss +11 -32
  24. package/modules/@progress/kendo-theme-default/scss/datetime/_theme.scss +24 -0
  25. package/modules/@progress/kendo-theme-default/scss/dropdownlist/_layout.scss +4 -5
  26. package/modules/@progress/kendo-theme-default/scss/dropdownlist/_theme.scss +8 -0
  27. package/modules/@progress/kendo-theme-default/scss/editor/_layout.scss +2 -23
  28. package/modules/@progress/kendo-theme-default/scss/editor/_variables.scss +1 -1
  29. package/modules/@progress/kendo-theme-default/scss/forms/_layout.scss +0 -50
  30. package/modules/@progress/kendo-theme-default/scss/gantt/_layout.scss +5 -3
  31. package/modules/@progress/kendo-theme-default/scss/grid/_layout.scss +1 -1
  32. package/modules/@progress/kendo-theme-default/scss/icons/_layout.scss +6 -0
  33. package/modules/@progress/kendo-theme-default/scss/icons/font/WebComponentsIcons.scss +1 -1
  34. package/modules/@progress/kendo-theme-default/scss/icons/font/WebComponentsIcons.ttf +0 -0
  35. package/modules/@progress/kendo-theme-default/scss/maskedtextbox/_layout.scss +1 -0
  36. package/modules/@progress/kendo-theme-default/scss/maskedtextbox/_theme.scss +4 -0
  37. package/modules/@progress/kendo-theme-default/scss/multiselect/_layout.scss +1 -1
  38. package/modules/@progress/kendo-theme-default/scss/multiselect/_theme.scss +12 -0
  39. package/modules/@progress/kendo-theme-default/scss/numerictextbox/_layout.scss +4 -8
  40. package/modules/@progress/kendo-theme-default/scss/numerictextbox/_theme.scss +8 -0
  41. package/modules/@progress/kendo-theme-default/scss/numerictextbox/_variables.scss +0 -4
  42. package/modules/@progress/kendo-theme-default/scss/pivotgrid/_layout.scss +0 -8
  43. package/modules/@progress/kendo-theme-default/scss/searchbox/_theme.scss +16 -0
  44. package/modules/@progress/kendo-theme-default/scss/spreadsheet/_layout.scss +2 -1
  45. package/modules/@progress/kendo-theme-default/scss/tabstrip/_layout.scss +10 -0
  46. package/modules/@progress/kendo-theme-default/scss/tabstrip/_theme.scss +1 -0
  47. package/modules/@progress/kendo-theme-default/scss/textarea/_theme.scss +4 -0
  48. package/modules/@progress/kendo-theme-default/scss/textbox/_theme.scss +5 -1
  49. package/package.json +3 -3
  50. package/scss/autocomplete/_variables.scss +0 -5
  51. package/scss/chat/_variables.scss +0 -8
  52. package/scss/colorpicker/_variables.scss +0 -2
  53. package/scss/combobox/_variables.scss +0 -1
  54. package/scss/editor/_variables.scss +1 -1
  55. package/scss/numerictextbox/_variables.scss +0 -4
@@ -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);
@@ -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: 5px !default;
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;
@@ -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
- }
@@ -121,10 +121,11 @@
121
121
  background: none;
122
122
 
123
123
  .k-task-milestone-content {
124
- width: .875em;
125
- height: .875em;
124
+ width: 100%;
125
+ height: 100%;
126
126
  border-width: 1px;
127
127
  border-style: solid;
128
+ box-sizing: border-box;
128
129
  transform: rotate(45deg);
129
130
  }
130
131
  }
@@ -455,6 +456,7 @@
455
456
  height: 1em;
456
457
  border-width: 1px;
457
458
  border-style: solid;
459
+ box-sizing: border-box;
458
460
  transform: rotate(45deg);
459
461
  }
460
462
 
@@ -507,6 +509,7 @@
507
509
  @include border-radius( $border-radius );
508
510
  border-width: $gantt-task-border-width;
509
511
  border-style: solid;
512
+ box-sizing: border-box;
510
513
  cursor: default;
511
514
 
512
515
  .k-resize-handle {
@@ -743,7 +746,6 @@
743
746
 
744
747
  .k-gantt-edit-form {}
745
748
 
746
- .k-gantt-edit-form .k-edit-buttons {}
747
749
  .k-gantt-edit-form .k-gantt-update {}
748
750
  .k-gantt-edit-form .k-gantt-cancel {}
749
751
  .k-gantt-edit-form .k-gantt-delete {
@@ -1056,7 +1056,7 @@
1056
1056
  }
1057
1057
 
1058
1058
  .k-grid-header .k-grid-column-menu {
1059
- z-index: 5;
1059
+ z-index: 1;
1060
1060
  }
1061
1061
  }
1062
1062
 
@@ -281,6 +281,8 @@
281
281
  .k-i-display-inline-flex::before { content: "\e059"; }
282
282
  .k-i-gap-column::before { content: "\e05a"; }
283
283
  .k-i-gap-row::before { content: "\e05b"; }
284
+ .k-i-handle-resize-alt::before { content: "\e05c"; }
285
+ .k-i-handle-resize::before { content: "\e05d"; }
284
286
  .k-i-undo::before { content: "\e100"; }
285
287
  .k-i-undo-large::before { content: "\e100"; }
286
288
  .k-i-redo::before { content: "\e101"; }
@@ -1067,6 +1069,10 @@
1067
1069
  .k-i-replace-all::before { content: "\e6ad"; }
1068
1070
  .k-i-letter-space::before { content: "\e6ae"; }
1069
1071
  .k-i-line-height::before { content: "\e6af"; }
1072
+ .k-i-blockquote::before { content: "\e6b0"; }
1073
+ .k-i-list-latin-big::before { content: "\e6b1"; }
1074
+ .k-i-list-latin-small::before { content: "\e6b2"; }
1075
+ .k-i-list-unordered-square::before { content: "\e6b3"; }
1070
1076
  .k-i-graph::before { content: "\ea00"; }
1071
1077
  .k-i-chart-column-clustered::before { content: "\ea01"; }
1072
1078
  .k-i-chart-column-stacked::before { content: "\ea02"; }