@progress/kendo-theme-default 5.5.0 → 5.5.1-dev.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.
Files changed (84) hide show
  1. package/dist/all.css +672 -436
  2. package/dist/all.scss +783 -361
  3. package/lib/swatches/default-blue.json +1 -1
  4. package/lib/swatches/default-dataviz-v4.json +1 -1
  5. package/lib/swatches/default-green.json +1 -1
  6. package/lib/swatches/default-main-dark.json +1 -1
  7. package/lib/swatches/default-main.json +1 -1
  8. package/lib/swatches/default-nordic.json +1 -1
  9. package/lib/swatches/default-ocean-blue.json +1 -1
  10. package/lib/swatches/default-orange.json +1 -1
  11. package/lib/swatches/default-purple.json +1 -1
  12. package/lib/swatches/default-turquoise.json +1 -1
  13. package/lib/swatches/default-urban.json +1 -1
  14. package/package.json +7 -10
  15. package/scss/action-sheet/_layout.scss +64 -0
  16. package/scss/action-sheet/_theme.scss +3 -3
  17. package/scss/adaptive/_theme.scss +2 -2
  18. package/scss/bottom-navigation/_layout.scss +1 -1
  19. package/scss/bottom-navigation/_theme.scss +2 -2
  20. package/scss/breadcrumb/_theme.scss +5 -5
  21. package/scss/button/_layout.scss +17 -35
  22. package/scss/button/_variables.scss +34 -14
  23. package/scss/calendar/_layout.scss +103 -41
  24. package/scss/calendar/_theme.scss +30 -48
  25. package/scss/calendar/_variables.scss +44 -1
  26. package/scss/chat/_layout.scss +2 -2
  27. package/scss/chat/_theme.scss +2 -2
  28. package/scss/chip/_variables.scss +1 -1
  29. package/scss/colorpalette/_layout.scss +1 -1
  30. package/scss/dataviz/_theme.scss +1 -3
  31. package/scss/drawer/_theme.scss +5 -5
  32. package/scss/editor/_layout.scss +2 -2
  33. package/scss/editor/_theme.scss +3 -3
  34. package/scss/expansion-panel/_theme.scss +3 -3
  35. package/scss/filemanager/_theme.scss +1 -1
  36. package/scss/forms/_layout.scss +2 -1
  37. package/scss/gantt/_layout.scss +3 -3
  38. package/scss/gantt/_theme.scss +7 -7
  39. package/scss/grid/_layout.scss +6 -27
  40. package/scss/grid/_theme.scss +25 -25
  41. package/scss/index.scss +1 -0
  42. package/scss/input/_variables.scss +21 -4
  43. package/scss/list/_variables.scss +6 -6
  44. package/scss/listview/_theme.scss +2 -2
  45. package/scss/orgchart/_theme.scss +1 -1
  46. package/scss/pager/_layout.scss +3 -3
  47. package/scss/pager/_theme.scss +10 -10
  48. package/scss/panelbar/_theme.scss +14 -14
  49. package/scss/pivotgrid/_theme.scss +1 -1
  50. package/scss/progressbar/_layout.scss +54 -11
  51. package/scss/progressbar/_theme.scss +14 -1
  52. package/scss/progressbar/_variables.scss +5 -0
  53. package/scss/radio/_layout.scss +1 -1
  54. package/scss/radio/_theme.scss +3 -3
  55. package/scss/rating/_theme.scss +5 -5
  56. package/scss/scheduler/_layout.scss +4 -4
  57. package/scss/scheduler/_theme.scss +8 -8
  58. package/scss/scrollview/_theme.scss +4 -4
  59. package/scss/signature/_index.scss +10 -0
  60. package/scss/signature/_layout.scss +63 -0
  61. package/scss/signature/_theme.scss +12 -0
  62. package/scss/signature/_variables.scss +45 -0
  63. package/scss/slider/_layout.scss +1 -1
  64. package/scss/slider/_theme.scss +3 -3
  65. package/scss/splitter/_theme.scss +1 -1
  66. package/scss/spreadsheet/_layout.scss +3 -3
  67. package/scss/spreadsheet/_theme.scss +6 -6
  68. package/scss/stepper/_layout.scss +1 -1
  69. package/scss/stepper/_theme.scss +1 -1
  70. package/scss/tabstrip/_layout.scss +7 -7
  71. package/scss/tabstrip/_theme.scss +5 -5
  72. package/scss/taskboard/_theme.scss +1 -1
  73. package/scss/tilelayout/_theme.scss +1 -1
  74. package/scss/timeline/_theme.scss +2 -2
  75. package/scss/timeselector/_layout.scss +31 -1
  76. package/scss/timeselector/_theme.scss +1 -1
  77. package/scss/timeselector/_variables.scss +38 -0
  78. package/scss/treelist/_layout.scss +1 -1
  79. package/scss/treeview/_variables.scss +4 -4
  80. package/scss/upload/_layout.scss +1 -1
  81. package/scss/upload/_theme.scss +2 -2
  82. package/scss/window/_theme.scss +1 -1
  83. package/scss/wizard/_layout.scss +1 -1
  84. package/scss/wizard/_theme.scss +2 -2
@@ -2,6 +2,8 @@
2
2
 
3
3
  // Base
4
4
  .k-calendar {
5
+ inline-size: var( --INTERNAL--kendo-calendar-width, min-content );
6
+ block-size: var( --INTERNAL--kendo-calendar-height, min-content );
5
7
  border-width: $calendar-border-width;
6
8
  border-style: solid;
7
9
  box-sizing: border-box;
@@ -22,19 +24,12 @@
22
24
  > .k-calendar {
23
25
  border: 0;
24
26
  }
25
-
26
- // Common
27
- .k-link {
28
- white-space: normal;
29
- position: relative;
30
- overflow: hidden;
31
- }
32
27
  }
33
28
 
34
29
 
35
30
  // Calendar table
36
31
  .k-calendar-table {
37
- margin: 0;
32
+ margin: 0 auto;
38
33
  border-width: 0;
39
34
  border-color: inherit;
40
35
  border-spacing: 0;
@@ -42,8 +37,7 @@
42
37
  table-layout: fixed;
43
38
  text-align: center;
44
39
  outline: 0;
45
- display: inline-table;
46
- vertical-align: top;
40
+ display: table;
47
41
  position: relative;
48
42
  z-index: 1;
49
43
  }
@@ -61,6 +55,9 @@
61
55
  font-weight: $calendar-caption-font-weight;
62
56
  cursor: default;
63
57
  }
58
+
59
+
60
+ // Calendar cell
64
61
  .k-calendar-th,
65
62
  .k-calendar-td {
66
63
  border-width: 0;
@@ -82,10 +79,32 @@
82
79
  }
83
80
  .k-calendar-td {
84
81
  @include border-radius( $calendar-cell-border-radius );
82
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, min-content );
83
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, min-content );
85
84
  border-color: transparent;
86
85
  }
87
86
 
88
87
 
88
+ // Calendar cell inner
89
+ // Remove .k-calendar once we remove k-link
90
+ .k-calendar .k-calendar-cell-inner {
91
+ @include border-radius( $calendar-cell-border-radius );
92
+ padding: $calendar-cell-padding-y $calendar-cell-padding-x;
93
+ padding-inline: var( --INTERNAL--kendo-calendar-cell-padding-x, #{$calendar-cell-padding-x} );
94
+ padding-block: var( --INTERNAL--kendo-calendar-cell-padding-y, #{$calendar-cell-padding-y} );
95
+ width: 100%;
96
+ height: 100%;
97
+ box-sizing: border-box;
98
+ display: flex;
99
+ flex-direction: row;
100
+ align-items: center;
101
+ justify-content: center;
102
+ white-space: normal;
103
+ position: relative;
104
+ overflow: hidden;
105
+ }
106
+
107
+
89
108
  // Calendar header
90
109
  .k-calendar .k-header {
91
110
  padding: $calendar-header-padding-y $calendar-header-padding-x;
@@ -103,7 +122,7 @@
103
122
  // Calendar header
104
123
  .k-calendar-header {
105
124
  padding: $calendar-header-padding-y $calendar-header-padding-x;
106
- min-width: $calendar-header-min-width;
125
+ min-width: ($calendar-cell-size * 8);
107
126
  box-sizing: border-box;
108
127
  display: flex;
109
128
  align-items: center;
@@ -145,22 +164,13 @@
145
164
  padding: 0 $calendar-header-padding-x;
146
165
  // setting width / height prevents layout changes in meta views
147
166
  width: $calendar-view-width;
167
+ inline-size: var( --INTERNAL--kendo-calendar-view-width, #{$calendar-view-width});
148
168
  min-height: $calendar-view-height;
149
169
  box-sizing: content-box;
150
170
  gap: $calendar-view-gap;
151
171
  position: relative;
152
172
  z-index: 1;
153
173
  overflow: hidden;
154
-
155
- .k-link {
156
- @include border-radius( $calendar-cell-border-radius );
157
- padding: $calendar-cell-padding-y $calendar-cell-padding-x;
158
- box-sizing: border-box;
159
- display: flex;
160
- flex-direction: row;
161
- align-items: center;
162
- justify-content: center;
163
- }
164
174
  }
165
175
  .k-week-number .k-calendar-view {
166
176
  width: (8 * $calendar-cell-size);
@@ -168,61 +178,59 @@
168
178
 
169
179
 
170
180
  // Month view
181
+ .k-month-calendar,
171
182
  .k-calendar-monthview {
172
183
  $_month-cell-size: $calendar-cell-size;
173
184
 
174
185
  .k-calendar-td {
175
186
  width: $_month-cell-size;
176
187
  height: $_month-cell-size;
177
- }
178
- .k-link {
179
- width: $_month-cell-size;
180
- height: $_month-cell-size;
188
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_month-cell-size} );
189
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_month-cell-size} );
181
190
  }
182
191
  }
183
192
 
184
193
 
185
194
  // Year view
195
+ .k-year-calendar,
186
196
  .k-calendar-yearview {
187
- $_year-cell-size: ( (7 / 4) * $calendar-cell-size);
197
+ $_year-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
188
198
 
189
199
  .k-calendar-td {
190
- width: auto;
191
- height: auto;
192
- }
193
- .k-link {
194
200
  width: $_year-cell-size;
195
201
  height: $_year-cell-size;
202
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_year-cell-size} );
203
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_year-cell-size} );
196
204
  }
197
205
  }
198
206
 
199
207
 
200
208
  // Decade view
209
+ .k-decade-calendar,
201
210
  .k-calendar-decadeview {
202
- $_decade-cell-size: ( (7 / 4) * $calendar-cell-size);
211
+ $_decade-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
203
212
 
204
213
  .k-calendar-td {
205
- width: auto;
206
- height: auto;
207
- }
208
- .k-link {
209
214
  width: $_decade-cell-size;
210
215
  height: $_decade-cell-size;
216
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_decade-cell-size} );
217
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_decade-cell-size} );
211
218
  }
212
219
  }
213
220
 
214
221
 
215
222
  // Century view
223
+ .k-century-calendar,
216
224
  .k-calendar-centuryview {
217
- $_century-cell-size: ( (7 / 4) * $calendar-cell-size);
225
+ $_century-cell-size: ( 1.75 * $calendar-cell-size ); // 7 / 4 => 1.75
218
226
 
219
227
  .k-calendar-td {
220
- width: auto;
221
- height: auto;
222
- }
223
- .k-link {
224
228
  width: $_century-cell-size;
225
229
  height: $_century-cell-size;
230
+ inline-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_century-cell-size} );
231
+ block-size: var( --INTERNAL--kendo-calendar-cell-size, #{$_century-cell-size} );
232
+ }
233
+ .k-calendar-cell-inner {
226
234
  text-align: left;
227
235
  }
228
236
  }
@@ -262,6 +270,56 @@
262
270
  top: 0;
263
271
  right: 0;
264
272
  }
273
+
274
+
275
+
276
+
277
+ // Calendar sizes
278
+ @each $size, $size-props in $kendo-calendar-sizes {
279
+ $_font-size: map-get( $size-props, font-size );
280
+ $_line-height: map-get( $size-props, line-height );
281
+ $_cell-size: map-get( $size-props, cell-size );
282
+ $_cell-padding-x: map-get( $size-props, cell-padding-x );
283
+ $_cell-padding-y: map-get( $size-props, cell-padding-y );
284
+
285
+ $_month-cell-size: $_cell-size;
286
+ $_year-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
287
+ $_decade-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
288
+ $_century-cell-size: ( 1.75 * $_cell-size ); // 7 / 4 => 1.75
289
+
290
+ .k-calendar-#{$size} {
291
+ --INTERNAL--kendo-calendar-view-width: #{8 * $_cell-size};
292
+ --INTERNAL--kendo-calendar-cell-padding-x: var( --kendo-calendar-#{$size}-cell-padding-x, #{$_cell-padding-x} );
293
+ --INTERNAL--kendo-calendar-cell-padding-y: var( --kendo-calendar-#{$size}-cell-padding-y, #{$_cell-padding-y} );
294
+ font-size: $_font-size;
295
+ line-height: $_line-height;
296
+
297
+ &.k-month-calendar,
298
+ .k-calendar-monthview {
299
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-month-cell-size, #{$_month-cell-size} );
300
+ }
301
+ &.k-year-calendar,
302
+ .k-calendar-yearview {
303
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-year-cell-size, #{$_year-cell-size} );
304
+ }
305
+ &.k-decade-calendar,
306
+ .k-calendar-decadeview {
307
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-decade-cell-size, #{$_decade-cell-size} );
308
+ }
309
+ &.k-century-calendar,
310
+ .k-calendar-centuryview {
311
+ --INTERNAL--kendo-calendar-cell-size: var( --kendo-calendar-#{$size}-century-cell-size, #{$_century-cell-size} );
312
+ }
313
+ }
314
+ }
315
+
316
+
317
+
318
+
319
+ // Alias
320
+ .k-link {
321
+ @extend .k-calendar-cell-inner;
322
+ }
265
323
  }
266
324
 
267
325
 
@@ -386,7 +444,7 @@
386
444
  }
387
445
 
388
446
  // // styles are applied to the k-link element inside
389
- // .k-state-selected ,
447
+ // .k-state-selected,
390
448
  // .k-selected {
391
449
  // color: inherit;
392
450
  // background: transparent;
@@ -412,6 +470,10 @@
412
470
  &::after {
413
471
  display: none;
414
472
  }
473
+
474
+ &:focus {
475
+ outline: 0;
476
+ }
415
477
  }
416
478
 
417
479
  .k-range-start {
@@ -32,8 +32,8 @@
32
32
  &.k-hover,
33
33
  &.k-state-hover,
34
34
  &:focus,
35
- &.k-state-focus,
36
- &.k-focus {
35
+ &.k-focus,
36
+ &.k-state-focus {
37
37
  color: $calendar-today-nav-hover-text;
38
38
  }
39
39
  }
@@ -51,11 +51,11 @@
51
51
  // Special days
52
52
  .k-calendar-view .k-today {
53
53
  @if $calendar-today-style == box {
54
- .k-link {
54
+ .k-calendar-cell-inner {
55
55
  box-shadow: inset 0 0 0 1px $calendar-today-color;
56
56
  }
57
- &.k-state-focused .k-link,
58
- &.k-focus .k-link {
57
+ &.k-focus .k-calendar-cell-inner,
58
+ &.k-state-focused .k-calendar-cell-inner {
59
59
  box-shadow: inset 0 0 0 1px $calendar-today-color, $calendar-cell-focused-shadow;
60
60
  }
61
61
  } @else if $calendar-today-style == color {
@@ -89,9 +89,9 @@
89
89
 
90
90
 
91
91
  // Interactive states
92
- .k-calendar-td:hover .k-link,
93
- .k-calendar-td.k-state-hover .k-link,
94
- .k-calendar-td.k-hover .k-link {
92
+ .k-calendar-td:hover .k-calendar-cell-inner,
93
+ .k-calendar-td.k-hover .k-calendar-cell-inner,
94
+ .k-calendar-td.k-state-hover .k-calendar-cell-inner {
95
95
  @include fill(
96
96
  $calendar-cell-hover-text,
97
97
  $calendar-cell-hover-bg,
@@ -99,8 +99,8 @@
99
99
  $calendar-cell-hover-gradient
100
100
  );
101
101
  }
102
- .k-calendar-td.k-state-selected .k-link,
103
- .k-calendar-td.k-selected .k-link {
102
+ .k-calendar-td.k-selected .k-calendar-cell-inner,
103
+ .k-calendar-td.k-state-selected .k-calendar-cell-inner {
104
104
  @include fill(
105
105
  $calendar-cell-selected-text,
106
106
  $calendar-cell-selected-bg,
@@ -108,12 +108,9 @@
108
108
  $calendar-cell-selected-gradient
109
109
  );
110
110
  }
111
- .k-calendar-td.k-state-selected:hover .k-link,
112
- .k-calendar-td.k-selected:hover .k-link,
113
- .k-calendar-td.k-state-selected.k-state-hover .k-link,
114
- .k-calendar-td.k-selected.k-hover .k-link,
115
- .k-calendar-td.k-selected:hover .k-link,
116
- .k-calendar-td.k-selected.k-hover .k-link {
111
+ .k-calendar-td.k-selected:hover .k-calendar-cell-inner,
112
+ .k-calendar-td.k-selected.k-hover .k-calendar-cell-inner,
113
+ .k-calendar-td.k-state-selected:hover .k-calendar-cell-inner {
117
114
  @include fill(
118
115
  $calendar-cell-selected-hover-text,
119
116
  $calendar-cell-selected-hover-bg,
@@ -121,18 +118,15 @@
121
118
  $calendar-cell-selected-hover-gradient
122
119
  );
123
120
  }
124
- .k-calendar-td.k-state-focused .k-link,
125
- .k-calendar-td.k-focus .k-link,
126
- .k-calendar-td.k-state-focus .k-link,
127
- .k-calendar-td.k-focus .k-link {
121
+ .k-calendar-td:focus .k-calendar-cell-inner,
122
+ .k-calendar-td.k-focus .k-calendar-cell-inner,
123
+ .k-calendar-td.k-state-focus .k-calendar-cell-inner,
124
+ .k-calendar-td.k-state-focused .k-calendar-cell-inner {
128
125
  box-shadow: $calendar-cell-focused-shadow;
129
126
  }
130
- .k-calendar-td.k-state-selected.k-state-focused .k-link,
131
- .k-calendar-td.k-selected.k-focused .k-link,
132
- .k-calendar-td.k-state-selected.k-state-focus .k-link,
133
- .k-calendar-td.k-selected.k-focus .k-link,
134
- .k-calendar-td.k-selected:focus .k-link,
135
- .k-calendar-td.k-selected.k-focus .k-link {
127
+ .k-calendar-td.k-selected:focus .k-calendar-cell-inner,
128
+ .k-calendar-td.k-selected.k-focus .k-calendar-cell-inner,
129
+ .k-calendar-td.k-state-selected.k-state-focus .k-calendar-cell-inner {
136
130
  box-shadow: $calendar-cell-selected-focus-shadow;
137
131
  }
138
132
 
@@ -146,8 +140,8 @@
146
140
  box-shadow: inset -1px 0 $calendar-navigation-border;
147
141
 
148
142
  li:hover,
149
- li.k-state-hover,
150
- li.k-hover {
143
+ li.k-hover,
144
+ li.k-state-hover {
151
145
  color: $calendar-today-nav-hover-text;
152
146
  }
153
147
  }
@@ -202,19 +196,7 @@
202
196
  .k-range-start,
203
197
  .k-range-end,
204
198
  .k-range-mid {
205
- // sass-lint:disable-block indentation
206
- background-image:
207
- linear-gradient(
208
- transparent $calendar-range-gap,
209
- $calendar-range-bg $calendar-range-gap,
210
- $calendar-range-bg calc(100% - #{$calendar-range-gap}),
211
- transparent calc(100% - #{$calendar-range-gap})
212
- );
213
-
214
- .k-ie & {
215
- background-image: none;
216
- background-color: $calendar-range-bg;
217
- }
199
+ background-color: $calendar-range-bg;
218
200
  }
219
201
 
220
202
  .k-range-start.k-range-end {
@@ -224,16 +206,16 @@
224
206
 
225
207
  .k-range-start,
226
208
  .k-range-end {
227
- .k-link {
209
+ .k-calendar-cell-inner {
228
210
  background-color: $calendar-cell-selected-bg;
229
211
  }
230
212
  }
231
213
 
232
- .k-range-start.k-state-active,
233
214
  .k-range-start.k-active,
234
- .k-range-end.k-state-active,
235
- .k-range-end.k-active {
236
- .k-link {
215
+ .k-range-start.k-state-active,
216
+ .k-range-end.k-active,
217
+ .k-range-end.k-state-active {
218
+ .k-calendar-cell-inner {
237
219
  box-shadow: inset 0 0 2px 2px rgba(0, 0, 0, .2);
238
220
  }
239
221
  }
@@ -246,8 +228,8 @@
246
228
  content: "";
247
229
  display: block;
248
230
  position: absolute;
249
- top: $calendar-range-gap;
250
- bottom: $calendar-range-gap;
231
+ top: 0;
232
+ bottom: 0;
251
233
  width: $calendar-range-split-size;
252
234
  }
253
235
  }
@@ -13,7 +13,6 @@ $calendar-border: $component-border !default;
13
13
  $calendar-header-padding-x: map-get( $spacing, 1 ) !default;
14
14
  $calendar-header-padding-y: map-get( $spacing, 1 ) !default;
15
15
  $calendar-header-border-width: 1px !default;
16
- $calendar-header-min-width: ($calendar-cell-size * 8) !default;
17
16
 
18
17
  $calendar-header-bg: $header-bg !default;
19
18
  $calendar-header-text: $header-text !default;
@@ -110,3 +109,47 @@ $infinite-calendar-view-height: ( $calendar-cell-size * 9 ) !default;
110
109
 
111
110
 
112
111
  // Multiview calendar
112
+
113
+
114
+ // Calendar sizes
115
+ $kendo-calendar-sm-font-size: $font-size-md !default;
116
+ $kendo-calendar-sm-line-height: $line-height-md !default;
117
+ $kendo-calendar-sm-cell-size: 28px !default;
118
+ $kendo-calendar-sm-cell-padding-x: map-get( $spacing, 1) - map-get( $spacing, thin ) !default;
119
+ $kendo-calendar-sm-cell-padding-y: map-get( $spacing, 1) - map-get( $spacing, thin ) !default;
120
+
121
+ $kendo-calendar-md-font-size: $font-size-md !default;
122
+ $kendo-calendar-md-line-height: $line-height-md !default;
123
+ $kendo-calendar-md-cell-size: 32px !default;
124
+ $kendo-calendar-md-cell-padding-x: map-get( $spacing, 1 ) !default;
125
+ $kendo-calendar-md-cell-padding-y: map-get( $spacing, 1 ) !default;
126
+
127
+ $kendo-calendar-lg-font-size: $font-size-lg !default;
128
+ $kendo-calendar-lg-line-height: $line-height-lg !default;
129
+ $kendo-calendar-lg-cell-size: 40px !default;
130
+ $kendo-calendar-lg-cell-padding-x: map-get( $spacing, 2 ) !default;
131
+ $kendo-calendar-lg-cell-padding-y: map-get( $spacing, 2 ) !default;
132
+
133
+ $kendo-calendar-sizes: (
134
+ sm: (
135
+ font-size: $kendo-calendar-sm-font-size,
136
+ line-height: $kendo-calendar-sm-line-height,
137
+ cell-size: $kendo-calendar-sm-cell-size,
138
+ cell-padding-x: $kendo-calendar-sm-cell-padding-y,
139
+ cell-padding-y: $kendo-calendar-sm-cell-padding-x
140
+ ),
141
+ md: (
142
+ font-size: $kendo-calendar-md-font-size,
143
+ line-height: $kendo-calendar-md-line-height,
144
+ cell-size: $kendo-calendar-md-cell-size,
145
+ cell-padding-x: $kendo-calendar-md-cell-padding-y,
146
+ cell-padding-y: $kendo-calendar-md-cell-padding-x
147
+ ),
148
+ lg: (
149
+ font-size: $kendo-calendar-lg-font-size,
150
+ line-height: $kendo-calendar-lg-line-height,
151
+ cell-size: $kendo-calendar-lg-cell-size,
152
+ cell-padding-x: $kendo-calendar-lg-cell-padding-y,
153
+ cell-padding-y: $kendo-calendar-lg-cell-padding-x
154
+ )
155
+ ) !default;
@@ -152,7 +152,7 @@
152
152
 
153
153
 
154
154
  // Message states
155
- .k-message.k-state-selected ,
155
+ .k-message.k-state-selected,
156
156
  .k-message.k-selected {
157
157
  margin-bottom: $chat-item-spacing-y;
158
158
  border: 0;
@@ -362,7 +362,7 @@
362
362
  flex: 0 0 auto;
363
363
  }
364
364
 
365
- &.k-state-selected ,
365
+ &.k-state-selected,
366
366
  &.k-selected {
367
367
  background: none;
368
368
  }
@@ -38,7 +38,7 @@
38
38
  .k-bubble:hover {
39
39
  @include box-shadow( $chat-bubble-hover-shadow );
40
40
  }
41
- .k-state-selected .k-bubble ,
41
+ .k-state-selected .k-bubble,
42
42
  .k-selected .k-bubble {
43
43
  @include box-shadow( $chat-bubble-selected-shadow );
44
44
  }
@@ -54,7 +54,7 @@
54
54
  .k-alt .k-bubble:hover {
55
55
  @include box-shadow( $chat-alt-bubble-hover-shadow );
56
56
  }
57
- .k-alt .k-state-selected .k-bubble ,
57
+ .k-alt .k-state-selected .k-bubble,
58
58
  .k-alt .k-selected .k-bubble {
59
59
  @include box-shadow( $chat-alt-bubble-selected-shadow );
60
60
  }
@@ -5,7 +5,7 @@
5
5
  $kendo-chip-border-width: 1px !default;
6
6
  /// The spacing between the text and the icons of the chip.
7
7
  /// @group chip
8
- $kendo-chip-spacing: map-get( $spacing, 1 );
8
+ $kendo-chip-spacing: map-get( $spacing, 1 ) !default;
9
9
 
10
10
  /// Horizontal padding of the chip.
11
11
  /// @group chip
@@ -49,7 +49,7 @@
49
49
  &.k-focus,
50
50
  &.k-state-selected,
51
51
  &.k-selected,
52
- &.k-state-selected:hover ,
52
+ &.k-state-selected:hover,
53
53
  &.k-selected:hover {
54
54
  position: relative;
55
55
  z-index: 100;
@@ -115,8 +115,6 @@
115
115
  }
116
116
 
117
117
 
118
-
119
-
120
118
  @include exports("dataviz/treemap/theme") {
121
119
 
122
120
  // Treemap
@@ -144,7 +142,7 @@
144
142
  .k-leaf.k-inverse {
145
143
  color: $component-text;
146
144
  }
147
- .k-leaf.k-state-hover ,
145
+ .k-leaf.k-state-hover,
148
146
  .k-leaf.k-hover {
149
147
  box-shadow: inset 0 0 0 3px $component-border;
150
148
  }
@@ -25,33 +25,33 @@
25
25
  .k-drawer-item {
26
26
 
27
27
  &:hover,
28
- &.k-state-hover ,
28
+ &.k-state-hover,
29
29
  &.k-hover {
30
30
  color: $drawer-hovered-text;
31
31
  background-color: $drawer-hovered-bg;
32
32
  }
33
33
 
34
34
  &:focus,
35
- &.k-state-focused ,
35
+ &.k-state-focused,
36
36
  &.k-focus {
37
37
  background-color: $drawer-focused-bg;
38
38
  box-shadow: $drawer-focused-shadow;
39
39
 
40
40
  &:hover,
41
- &.k-state-hover ,
41
+ &.k-state-hover,
42
42
  &.k-hover {
43
43
  color: $drawer-hovered-text;
44
44
  background-color: $drawer-hovered-bg;
45
45
  }
46
46
  }
47
47
 
48
- &.k-state-selected ,
48
+ &.k-state-selected,
49
49
  &.k-selected {
50
50
  color: $drawer-selected-text;
51
51
  background-color: $drawer-selected-bg;
52
52
 
53
53
  &:hover,
54
- &.k-state-hover ,
54
+ &.k-state-hover,
55
55
  &.k-hover {
56
56
  color: $drawer-selected-hover-text;
57
57
  background-color: $drawer-selected-hover-bg;
@@ -42,7 +42,7 @@
42
42
  pointer-events: auto;
43
43
  }
44
44
 
45
- .k-editor-content.k-state-focused ,
45
+ .k-editor-content.k-state-focused,
46
46
  .k-editor-content.k-focus {
47
47
  outline-width: 1px;
48
48
  outline-style: dashed;
@@ -496,7 +496,7 @@
496
496
  display: block;
497
497
  margin: auto;
498
498
 
499
- &.k-state-selected ,
499
+ &.k-state-selected,
500
500
  &.k-selected {
501
501
  color: inherit;
502
502
  border-width: 0;
@@ -10,7 +10,7 @@
10
10
 
11
11
  kendo-editor {
12
12
  &.k-readonly {
13
- .k-editor-content.k-state-focused ,
13
+ .k-editor-content.k-state-focused,
14
14
  .k-editor-content.k-focus {
15
15
  outline-color: $body-text;
16
16
  }
@@ -48,7 +48,7 @@
48
48
 
49
49
  // Hover & Actve state
50
50
  &:hover,
51
- &.k-state-active ,
51
+ &.k-state-active,
52
52
  &.k-active {
53
53
  border-color: $panel-border;
54
54
  }
@@ -66,7 +66,7 @@
66
66
 
67
67
  // Insert table
68
68
  .k-ct-popup {
69
- .k-state-selected ,
69
+ .k-state-selected,
70
70
  .k-selected {
71
71
  @include fill( $selected-text, $selected-bg, $selected-border, none );
72
72
  }
@@ -7,7 +7,7 @@
7
7
  $expander-border
8
8
  );
9
9
 
10
- &.k-state-focus ,
10
+ &.k-state-focus,
11
11
  &.k-focus {
12
12
  box-shadow: $expander-focus-shadow;
13
13
  }
@@ -22,13 +22,13 @@
22
22
  outline: none;
23
23
 
24
24
  &:hover,
25
- &.k-state-hover ,
25
+ &.k-state-hover,
26
26
  &.k-hover {
27
27
  background-color: $expander-header-hover-bg;
28
28
  }
29
29
 
30
30
  // Should be removed
31
- &.k-state-focused ,
31
+ &.k-state-focused,
32
32
  &.k-focus {
33
33
  background-color: $expander-header-focused-bg;
34
34
  box-shadow: $expander-header-focused-shadow;
@@ -64,7 +64,7 @@
64
64
  );
65
65
  }
66
66
 
67
- &.k-state-selected .k-file-icon ,
67
+ &.k-state-selected .k-file-icon,
68
68
  &.k-selected .k-file-icon {
69
69
  @include fill(
70
70
  inherit,
@@ -142,7 +142,8 @@
142
142
 
143
143
  .k-multiselect,
144
144
  .k-floating-label-container,
145
- .k-daterangepicker .k-dateinput {
145
+ .k-daterangepicker .k-dateinput,
146
+ .k-signature {
146
147
  display: inline-flex;
147
148
  width: 100%;
148
149
  }