@progress/kendo-theme-default 4.42.1-dev.3 → 4.42.1-dev.4

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.
@@ -134,59 +134,6 @@
134
134
 
135
135
 
136
136
 
137
- @include exports( "panelbar/layout/legacy" ) {
138
-
139
- .k-no-flexbox .k-panelbar {
140
-
141
- // Item
142
- > .k-item > .k-link,
143
- .k-group > .k-link {
144
- display: block;
145
- }
146
-
147
- // Icons
148
- .k-link > .k-image,
149
- .k-link > .k-sprite,
150
- .k-link > .k-icon {
151
- margin-right: $icon-spacing;
152
- }
153
-
154
- // Expand collapse
155
- .k-panelbar-expand,
156
- .k-panelbar-collapse {
157
- margin: 0 !important; // sass-lint:disable-line no-important
158
- transform: translateY( -50% );
159
- position: absolute;
160
- top: 50%;
161
- right: $panelbar-header-padding-x;
162
- }
163
-
164
- }
165
-
166
-
167
- .k-no-flexbox .k-panelbar[dir="rtl"],
168
- .k-no-flexbox .k-rtl .k-panelbar {
169
-
170
- .k-link > .k-image,
171
- .k-link > .k-sprite,
172
- .k-link > .k-icon {
173
- margin-left: $icon-spacing;
174
- margin-right: 0;
175
- }
176
-
177
- .k-panelbar-expand,
178
- .k-panelbar-collapse {
179
- right: auto;
180
- left: $panelbar-header-padding-x;
181
- }
182
-
183
- }
184
-
185
- }
186
-
187
-
188
-
189
-
190
137
  @include exports( "panelbar/layout/compatibility" ) {
191
138
 
192
139
  .k-ie {
@@ -71,14 +71,6 @@
71
71
  margin: $rating-label-margin-y $rating-label-margin-x;
72
72
  }
73
73
 
74
- .k-ie9 {
75
- .k-rating-label,
76
- .k-rating-container,
77
- .k-rating-item {
78
- display: inline-block;
79
- }
80
- }
81
-
82
74
  .k-rtl,
83
75
  [dir="rtl"] {
84
76
  .k-rating-precision-part {
@@ -506,21 +506,3 @@
506
506
  }
507
507
  }
508
508
  }
509
-
510
-
511
-
512
-
513
- @include exports( "slider/layout/legacy" ) {
514
-
515
- .k-no-flexbox .k-slider {
516
-
517
- &-horizontal {
518
- display: inline-block;
519
- }
520
- &-vertical {
521
- display: inline-block;
522
- }
523
-
524
- }
525
-
526
- }
@@ -110,29 +110,3 @@
110
110
  }
111
111
 
112
112
  }
113
-
114
-
115
-
116
-
117
- @include exports( "switch/layout/legacy" ) {
118
-
119
- .k-ie9 {
120
-
121
- // Switch
122
- .k-switch {
123
- display: inline-block;
124
- }
125
-
126
- // Switch track
127
- .k-switch-container {
128
- display: block;
129
- }
130
-
131
- // Switch thumb
132
- .k-switch-handle {
133
- display: block;
134
- }
135
-
136
- }
137
-
138
- }
@@ -112,7 +112,8 @@
112
112
  // Toolbar group
113
113
  .k-toolbar-group {
114
114
  display: flex;
115
- flex-flow: inherit nowrap;
115
+ flex-direction: inherit;
116
+ flex-wrap: nowrap;
116
117
  gap: inherit;
117
118
  }
118
119
 
@@ -422,84 +422,4 @@
422
422
  }
423
423
  }
424
424
 
425
- .k-ie9 {
426
- .k-upload-status-total {
427
- top: 1.5em;
428
-
429
- > .k-icon {
430
- margin-top: -3px;
431
- }
432
- }
433
- }
434
-
435
- // No flexbox variant for older browsers
436
- .k-no-flexbox {
437
-
438
- // Upload files list
439
- .k-upload-files {
440
- .k-file-multiple,
441
- .k-file-single {
442
- display: block;
443
- width: 100%;
444
- }
445
-
446
- .k-upload-status {
447
- position: absolute;
448
- right: $upload-item-padding-x;
449
- top: $upload-item-padding-y;
450
- }
451
-
452
- .k-file-group-wrapper,
453
- .k-file-invalid-group-wrapper,
454
- .k-multiple-files-group-wrapper,
455
- .k-multiple-files-invalid-group-wrapper {
456
- position: absolute;
457
- top: $upload-item-padding-y;
458
- }
459
-
460
- .k-multiple-files-wrapper,
461
- .k-file-single > .k-file-name-size-wrapper,
462
- .k-file > .k-file-name-size-wrapper {
463
- margin-left: calc( #{$upload-group-icon-size} + #{$padding-x} );
464
- margin-right: calc( (#{$button-calc-size} + #{$button-padding-x} * 2) + 2em );
465
- }
466
- }
467
-
468
- .k-dropzone {
469
- position: relative;
470
- text-align: left;
471
-
472
- .k-upload-button {
473
- display: inline-block;
474
- }
475
-
476
- .k-dropzone-hint,
477
- .k-upload-status-total {
478
- position: absolute;
479
- top: 50%;
480
- right: $upload-dropzone-padding-x;
481
- transform: translateY(-50%);
482
- }
483
- }
484
-
485
- // RTL styles
486
- [dir = "rtl"],
487
- .k-rtl {
488
- .k-dropzone-hint,
489
- .k-upload-status-total,
490
- .k-upload-files .k-upload-status {
491
- right: auto;
492
- left: $upload-dropzone-padding-x;
493
- }
494
-
495
- .k-multiple-files-wrapper,
496
- .k-file-single > .k-file-name-size-wrapper,
497
- .k-file > .k-file-name-size-wrapper {
498
- margin-left: calc( (#{$button-calc-size} + #{$button-padding-x} * 2) + 2em );
499
- margin-right: calc( #{$upload-group-icon-size} + #{$padding-x} );
500
-
501
- }
502
- }
503
- }
504
-
505
425
  }
@@ -1,72 +0,0 @@
1
- .k-no-flexbox {
2
- .k-calendar-infinite {
3
- height: 330px;
4
-
5
- .k-calendar-navigation,
6
- .k-calendar-monthview {
7
- height: 100%;
8
- float: left;
9
- }
10
-
11
- .k-calendar-header {
12
- display: block;
13
-
14
- .k-today,
15
- .k-nav-today {
16
- display: inline-block;
17
- }
18
- }
19
- }
20
-
21
- .k-dateinput-wrap,
22
- .k-dropdown-wrap,
23
- .k-numeric-wrap,
24
- .k-picker-wrap {
25
- $k-select-width: 2em;
26
- display: block;
27
-
28
- .k-input {
29
- width: calc(100% - #{$k-select-width});
30
- display: inline-block;
31
- vertical-align: middle;
32
- }
33
- .k-select {
34
- display: inline-block;
35
- vertical-align: middle;
36
- }
37
- }
38
-
39
- .k-timepicker,
40
- .k-datepicker {
41
- display: inline-block;
42
-
43
- .k-dateinput-wrap {
44
- display: inline-block;
45
- }
46
-
47
- .k-select {
48
- position: absolute;
49
- top: 0;
50
- right: 0;
51
- bottom: 0;
52
- }
53
- }
54
-
55
- .k-time-list-wrapper,
56
- .k-time-separator {
57
- display: inline-block;
58
- vertical-align: middle;
59
- }
60
-
61
- .k-grid {
62
- $grid-chrome-height: 37px !default;
63
- .k-grid-container {
64
- height: calc( 100% - #{$grid-chrome-height} );
65
- display: block;
66
- }
67
-
68
- .k-grid-content {
69
- height: 100%;
70
- }
71
- }
72
- }