@progress/kendo-theme-default 5.8.2-dev.5 → 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 +261 -73
- package/dist/all.scss +370 -88
- 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 +162 -28
- package/scss/action-sheet/_theme.scss +27 -18
- package/scss/action-sheet/_variables.scss +31 -12
- 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 +22 -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/list/_layout.scss +12 -1
- package/scss/signature/_layout.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 +20 -5
- package/scss/timeselector/_variables.scss +2 -2
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
|
@@ -13,6 +13,27 @@
|
|
|
13
13
|
}
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
+
// Icon wrap
|
|
17
|
+
.k-icon-wrap {
|
|
18
|
+
flex: none;
|
|
19
|
+
display: inline-flex;
|
|
20
|
+
flex-flow: row nowrap;
|
|
21
|
+
gap: 0;
|
|
22
|
+
align-items: center;
|
|
23
|
+
align-self: flex-start;
|
|
24
|
+
vertical-align: middle;
|
|
25
|
+
position: relative;
|
|
26
|
+
|
|
27
|
+
&::before {
|
|
28
|
+
content: "\200b";
|
|
29
|
+
width: 0;
|
|
30
|
+
overflow: hidden;
|
|
31
|
+
flex: none;
|
|
32
|
+
display: inline-block;
|
|
33
|
+
vertical-align: top;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
16
37
|
.k-icon {
|
|
17
38
|
width: 1em;
|
|
18
39
|
height: 1em;
|
|
@@ -457,6 +478,7 @@
|
|
|
457
478
|
.k-i-stick::before { content: "\e15a"; }
|
|
458
479
|
.k-i-unstick::before { content: "\e15b"; }
|
|
459
480
|
.k-i-set-column-position::before { content: "\e15c"; }
|
|
481
|
+
.k-i-clock-arrow-rotate::before { content: "\e15d"; }
|
|
460
482
|
.k-i-play::before { content: "\e200"; }
|
|
461
483
|
.k-i-pause::before { content: "\e201"; }
|
|
462
484
|
.k-i-stop::before { content: "\e202"; }
|