@progress/kendo-theme-default 9.0.0-dev.2 → 9.0.1-dev.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 +1 -1
- package/dist/all.scss +11 -7
- package/dist/default-blue.css +1 -1
- package/dist/default-dataviz-v4.css +1 -1
- package/dist/default-green.css +1 -1
- package/dist/default-main-dark.css +1 -1
- package/dist/default-main.css +1 -1
- package/dist/default-nordic.css +1 -1
- package/dist/default-ocean-blue-a11y.css +1 -1
- package/dist/default-ocean-blue.css +1 -1
- package/dist/default-orange.css +1 -1
- package/dist/default-purple.css +1 -1
- package/dist/default-turquoise.css +1 -1
- package/dist/default-urban.css +1 -1
- 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-a11y.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 +4 -4
- package/scss/editor/_layout.scss +6 -0
- package/scss/window/_layout.scss +1 -3
package/dist/all.scss
CHANGED
|
@@ -12478,8 +12478,8 @@ $kendo-utils: (
|
|
|
12478
12478
|
/// @group height
|
|
12479
12479
|
/// @contextType css
|
|
12480
12480
|
|
|
12481
|
-
/// This is equivalent to `
|
|
12482
|
-
/// @example
|
|
12481
|
+
/// This is equivalent to `height: 100%;`.
|
|
12482
|
+
/// @example height: 100%;
|
|
12483
12483
|
/// @name .k-h-full
|
|
12484
12484
|
/// @group height
|
|
12485
12485
|
/// @contextType css
|
|
@@ -12648,8 +12648,8 @@ $kendo-utils: (
|
|
|
12648
12648
|
/// @group width
|
|
12649
12649
|
/// @contextType css
|
|
12650
12650
|
|
|
12651
|
-
/// This is equivalent to `
|
|
12652
|
-
/// @example
|
|
12651
|
+
/// This is equivalent to `width: 100%;`.
|
|
12652
|
+
/// @example width: 100%;
|
|
12653
12653
|
/// @name .k-w-full
|
|
12654
12654
|
/// @group width
|
|
12655
12655
|
/// @contextType css
|
|
@@ -37913,10 +37913,8 @@ $_kendo-module-meta: (
|
|
|
37913
37913
|
overflow: hidden;
|
|
37914
37914
|
cursor: default;
|
|
37915
37915
|
flex: 1;
|
|
37916
|
-
display: flex;
|
|
37917
|
-
flex-flow: row nowrap;
|
|
37918
37916
|
|
|
37919
|
-
|
|
37917
|
+
&:empty::before {
|
|
37920
37918
|
content: "\200b";
|
|
37921
37919
|
}
|
|
37922
37920
|
}
|
|
@@ -54162,6 +54160,12 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
|
54162
54160
|
visibility: hidden;
|
|
54163
54161
|
}
|
|
54164
54162
|
|
|
54163
|
+
// Resizable tables
|
|
54164
|
+
.k-editor-resize-wrap-element {
|
|
54165
|
+
display: inline-block;
|
|
54166
|
+
position: relative;
|
|
54167
|
+
}
|
|
54168
|
+
|
|
54165
54169
|
.k-editor-resize-handle {
|
|
54166
54170
|
width: $kendo-editor-resize-handle-size;
|
|
54167
54171
|
height: $kendo-editor-resize-handle-size;
|