@progress/kendo-theme-default 5.8.2-dev.6 → 5.9.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.
- package/dist/all.css +84 -51
- package/dist/all.scss +122 -29
- 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/action-sheet/_layout.scss +7 -0
- package/scss/calendar/_layout.scss +6 -19
- package/scss/coloreditor/_layout.scss +6 -0
- package/scss/coloreditor/_theme.scss +6 -0
- package/scss/coloreditor/_variables.scss +4 -0
- package/scss/colorgradient/_layout.scss +1 -1
- package/scss/editor/_layout.scss +23 -1
- package/scss/icons/_layout.scss +1 -0
- package/scss/icons/font/WebComponentsIcons.scss +1 -1
- package/scss/icons/font/WebComponentsIcons.ttf +0 -0
- package/scss/index.scss +1 -0
- package/scss/timedurationpicker/_index.scss +16 -0
- package/scss/timedurationpicker/_layout.scss +1 -0
- package/scss/timedurationpicker/_theme.scss +5 -0
- package/scss/timedurationpicker/_variables.scss +1 -0
- package/scss/timeselector/_layout.scss +19 -5
- package/scss/timeselector/_variables.scss +2 -2
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.
|
|
4
|
+
"version": "5.9.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"sass-build": "^1.0.0"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "ac592f3dc96e799eb8a5da3513542a68a7984458"
|
|
48
48
|
}
|
|
@@ -173,9 +173,6 @@
|
|
|
173
173
|
z-index: 1;
|
|
174
174
|
overflow: hidden;
|
|
175
175
|
}
|
|
176
|
-
.k-week-number .k-calendar-view {
|
|
177
|
-
width: (8 * $calendar-cell-size);
|
|
178
|
-
}
|
|
179
176
|
|
|
180
177
|
|
|
181
178
|
// Month view
|
|
@@ -195,7 +192,7 @@
|
|
|
195
192
|
// Year view
|
|
196
193
|
.k-year-calendar,
|
|
197
194
|
.k-calendar-yearview {
|
|
198
|
-
$_year-cell-size: (
|
|
195
|
+
$_year-cell-size: ( 2 * $calendar-cell-size );
|
|
199
196
|
|
|
200
197
|
.k-calendar-td {
|
|
201
198
|
width: $_year-cell-size;
|
|
@@ -209,7 +206,7 @@
|
|
|
209
206
|
// Decade view
|
|
210
207
|
.k-decade-calendar,
|
|
211
208
|
.k-calendar-decadeview {
|
|
212
|
-
$_decade-cell-size: (
|
|
209
|
+
$_decade-cell-size: ( 2 * $calendar-cell-size );
|
|
213
210
|
|
|
214
211
|
.k-calendar-td {
|
|
215
212
|
width: $_decade-cell-size;
|
|
@@ -223,7 +220,7 @@
|
|
|
223
220
|
// Century view
|
|
224
221
|
.k-century-calendar,
|
|
225
222
|
.k-calendar-centuryview {
|
|
226
|
-
$_century-cell-size: (
|
|
223
|
+
$_century-cell-size: ( 2 * $calendar-cell-size );
|
|
227
224
|
|
|
228
225
|
.k-calendar-td {
|
|
229
226
|
width: $_century-cell-size;
|
|
@@ -284,9 +281,9 @@
|
|
|
284
281
|
$_cell-padding-y: map-get( $size-props, cell-padding-y );
|
|
285
282
|
|
|
286
283
|
$_month-cell-size: $_cell-size;
|
|
287
|
-
$_year-cell-size: (
|
|
288
|
-
$_decade-cell-size: (
|
|
289
|
-
$_century-cell-size: (
|
|
284
|
+
$_year-cell-size: ( 2 * $_cell-size );
|
|
285
|
+
$_decade-cell-size: ( 2 * $_cell-size );
|
|
286
|
+
$_century-cell-size: ( 2 * $_cell-size );
|
|
290
287
|
|
|
291
288
|
.k-calendar-#{$size} {
|
|
292
289
|
--INTERNAL--kendo-calendar-view-width: #{8 * $_cell-size};
|
|
@@ -520,16 +517,6 @@
|
|
|
520
517
|
text-align: right;
|
|
521
518
|
}
|
|
522
519
|
|
|
523
|
-
// Content
|
|
524
|
-
.k-content,
|
|
525
|
-
.k-calendar-content {
|
|
526
|
-
> table,
|
|
527
|
-
> .k-calendar-table {
|
|
528
|
-
margin-right: 0;
|
|
529
|
-
margin-left: -17px; // scrollbar-size
|
|
530
|
-
}
|
|
531
|
-
}
|
|
532
|
-
|
|
533
520
|
}
|
|
534
521
|
|
|
535
522
|
}
|
|
@@ -56,6 +56,12 @@
|
|
|
56
56
|
width: auto;
|
|
57
57
|
border-width: 0;
|
|
58
58
|
}
|
|
59
|
+
.k-colorgradient:focus,
|
|
60
|
+
.k-colorgradient.k-focus {
|
|
61
|
+
outline: $coloreditor-colorgradient-focus-outline dotted;
|
|
62
|
+
outline-offset: $coloreditor-colorgradient-focus-outline-offset;
|
|
63
|
+
border-radius: 0;
|
|
64
|
+
}
|
|
59
65
|
|
|
60
66
|
.k-colorpalette {
|
|
61
67
|
align-self: center;
|
|
@@ -25,3 +25,7 @@ $coloreditor-color-preview-height: 12px !default;
|
|
|
25
25
|
$coloreditor-views-padding-y: $coloreditor-spacer !default;
|
|
26
26
|
$coloreditor-views-padding-x: $coloreditor-views-padding-y !default;
|
|
27
27
|
$coloreditor-views-gap: $coloreditor-spacer !default;
|
|
28
|
+
|
|
29
|
+
$coloreditor-colorgradient-focus-outline-color: rgba(0, 0, 0, .3) !default;
|
|
30
|
+
$coloreditor-colorgradient-focus-outline: 2px !default;
|
|
31
|
+
$coloreditor-colorgradient-focus-outline-offset: 4px !default;
|
package/scss/editor/_layout.scss
CHANGED
|
@@ -139,9 +139,11 @@
|
|
|
139
139
|
cursor: e-resize;
|
|
140
140
|
}
|
|
141
141
|
}
|
|
142
|
+
|
|
142
143
|
.ProseMirror-selectednode { // sass-lint:disable-line class-name-format
|
|
143
144
|
outline-width: $editor-selectednode-outline-width;
|
|
144
145
|
outline-style: solid;
|
|
146
|
+
|
|
145
147
|
}
|
|
146
148
|
.ProseMirror-hideselection { // sass-lint:disable-line class-name-format
|
|
147
149
|
caret-color: transparent;
|
|
@@ -199,7 +201,6 @@
|
|
|
199
201
|
}
|
|
200
202
|
}
|
|
201
203
|
|
|
202
|
-
|
|
203
204
|
// Editor content
|
|
204
205
|
.k-editor-content {
|
|
205
206
|
flex: 1 1 auto;
|
|
@@ -235,8 +236,29 @@
|
|
|
235
236
|
cursor: text;
|
|
236
237
|
user-select: none;
|
|
237
238
|
}
|
|
239
|
+
|
|
240
|
+
&[contenteditable="false"] {
|
|
241
|
+
cursor: unset !important; // sass-lint:disable-line no-important
|
|
242
|
+
|
|
243
|
+
.k-editor-resize-handles-wrapper,
|
|
244
|
+
.k-editor-resize-handle,
|
|
245
|
+
.row-resize-handle,
|
|
246
|
+
.column-resize-handle {
|
|
247
|
+
display: none;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
img,
|
|
251
|
+
table {
|
|
252
|
+
pointer-events: none;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
& .ProseMirror-selectednode { // sass-lint:disable-line class-name-format
|
|
256
|
+
outline: none;
|
|
257
|
+
}
|
|
258
|
+
}
|
|
238
259
|
}
|
|
239
260
|
}
|
|
261
|
+
|
|
240
262
|
td.k-editor-content {
|
|
241
263
|
padding: $kendo-input-padding-y;
|
|
242
264
|
width: 100%;
|
package/scss/icons/_layout.scss
CHANGED
|
@@ -478,6 +478,7 @@
|
|
|
478
478
|
.k-i-stick::before { content: "\e15a"; }
|
|
479
479
|
.k-i-unstick::before { content: "\e15b"; }
|
|
480
480
|
.k-i-set-column-position::before { content: "\e15c"; }
|
|
481
|
+
.k-i-clock-arrow-rotate::before { content: "\e15d"; }
|
|
481
482
|
.k-i-play::before { content: "\e200"; }
|
|
482
483
|
.k-i-pause::before { content: "\e201"; }
|
|
483
484
|
.k-i-stop::before { content: "\e202"; }
|