@progress/kendo-theme-default 9.0.0 → 9.0.1-dev.1

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.scss CHANGED
@@ -12478,8 +12478,8 @@ $kendo-utils: (
12478
12478
  /// @group height
12479
12479
  /// @contextType css
12480
12480
 
12481
- /// This is equivalent to `min-height: 100%;`.
12482
- /// @example min-height: 100%;
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 `min-width: 100%;`.
12652
- /// @example min-width: 100%;
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
@@ -25828,7 +25828,7 @@ $kendo-form-sizes: (
25828
25828
 
25829
25829
 
25830
25830
  .k-edit-label {
25831
- margin: 0 0 k-spacing(4) 0;
25831
+ margin: 0 0 k-spacing(4);
25832
25832
  // TODO: do we need the input variable?
25833
25833
  padding: calc( #{$kendo-input-padding-y} + #{$kendo-input-border-width} ) 0;
25834
25834
  width: 30%;
@@ -25838,7 +25838,7 @@ $kendo-form-sizes: (
25838
25838
  clear: both;
25839
25839
  }
25840
25840
  .k-edit-field {
25841
- margin: 0 0 k-spacing(4) 0;
25841
+ margin: 0 0 k-spacing(4);
25842
25842
  width: 65%;
25843
25843
  float: right;
25844
25844
  clear: right;
@@ -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
- &::before {
37917
+ &:empty::before {
37920
37918
  content: "\200b";
37921
37919
  }
37922
37920
  }
@@ -47887,7 +47885,8 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
47887
47885
  }
47888
47886
  }
47889
47887
 
47890
- .k-master-row .k-grid-content-sticky::before {
47888
+ .k-master-row .k-grid-content-sticky::before,
47889
+ .k-master-row.k-grid-row-sticky .k-table-td::before {
47891
47890
  content: "";
47892
47891
  width: 100%;
47893
47892
  height: 100%;
@@ -48728,7 +48727,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
48728
48727
  background-color: $kendo-grid-sticky-bg;
48729
48728
  }
48730
48729
 
48731
- .k-grid-row-sticky {
48730
+ &.k-grid-row-sticky > .k-table-td {
48732
48731
  border-top-color: $kendo-grid-sticky-border;
48733
48732
  border-bottom-color: $kendo-grid-sticky-border;
48734
48733
  background-color: $kendo-grid-sticky-bg;
@@ -48736,6 +48735,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
48736
48735
 
48737
48736
  &.k-table-alt-row {
48738
48737
  .k-grid-content-sticky,
48738
+ &.k-grid-row-sticky > .k-table-td,
48739
48739
  .k-grid-row-sticky {
48740
48740
  @include fill( $bg: $kendo-grid-sticky-alt-bg );
48741
48741
  }
@@ -48743,6 +48743,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
48743
48743
 
48744
48744
  // Selected state
48745
48745
  &.k-table-row.k-selected td.k-grid-content-sticky,
48746
+ &.k-table-row.k-selected.k-grid-row-sticky > .k-table-td,
48746
48747
  &.k-table-row.k-selected .k-table-td.k-grid-row-sticky,
48747
48748
  &.k-table-row td.k-grid-content-sticky.k-selected,
48748
48749
  &.k-table-row .k-table-td.k-grid-content-sticky.k-selected {
@@ -48758,6 +48759,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
48758
48759
  }
48759
48760
 
48760
48761
  &.k-selected.k-table-alt-row td.k-grid-content-sticky,
48762
+ &.k-selected.k-table-alt-row.k-grid-row-sticky > .k-table-td,
48761
48763
  &.k-selected.k-table-alt-row .k-table-td.k-grid-row-sticky,
48762
48764
  &.k-table-alt-row td.k-grid-content-sticky.k-selected,
48763
48765
  &.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
@@ -48776,8 +48778,10 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
48776
48778
  // Hovered state
48777
48779
  &:hover .k-grid-content-sticky,
48778
48780
  &:hover .k-grid-row-sticky,
48781
+ &:hover.k-grid-row-sticky > .k-table-td,
48779
48782
  &.k-hover .k-grid-content-sticky,
48780
- &.k-hover .k-grid-row-sticky {
48783
+ &.k-hover .k-grid-row-sticky,
48784
+ &.k-hover.k-grid-row-sticky > .k-table-td {
48781
48785
  background-color: $kendo-grid-sticky-hover-bg;
48782
48786
  }
48783
48787
 
@@ -48785,8 +48789,10 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
48785
48789
  // Selected hover
48786
48790
  &.k-selected:hover td.k-grid-content-sticky,
48787
48791
  &.k-selected:hover .k-table-td.k-grid-row-sticky,
48792
+ &.k-selected:hover.k-grid-row-sticky > .k-table-td,
48788
48793
  &.k-selected.k-hover td.k-grid-content-sticky,
48789
48794
  &.k-selected.k-hover .k-table-td.k-grid-row-sticky,
48795
+ &.k-selected.k-hover.k-grid-row-sticky > .k-table-td,
48790
48796
  &:hover td.k-grid-content-sticky.k-selected,
48791
48797
  &.k-hover td.k-grid-content-sticky.k-selected,
48792
48798
  &:hover .k-table-td.k-grid-content-sticky.k-selected,
@@ -48803,121 +48809,6 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
48803
48809
  }
48804
48810
  }
48805
48811
 
48806
- kendo-grid.k-grid {
48807
- .k-grid-content-sticky {
48808
- border-top-color: $kendo-grid-header-border;
48809
- border-left-color: $kendo-grid-sticky-border;
48810
- border-right-color: $kendo-grid-sticky-border;
48811
- background-color: $kendo-grid-sticky-bg;
48812
-
48813
- &:hover,
48814
- &.k-hover {
48815
- background-color: $kendo-grid-sticky-hover-bg;
48816
- }
48817
- }
48818
-
48819
- .k-grid-row-sticky {
48820
- td,
48821
- .k-table-td {
48822
- border-top-color: $kendo-grid-sticky-border;
48823
- border-bottom-color: $kendo-grid-sticky-border;
48824
- background-color: $kendo-grid-sticky-bg;
48825
- }
48826
-
48827
- &:hover td,
48828
- &.k-hover td,
48829
- &:hover .k-table-td,
48830
- &.k-hover .k-table-td {
48831
- background-color: $kendo-grid-sticky-hover-bg;
48832
- }
48833
- }
48834
-
48835
- .k-table-alt-row .k-grid-content-sticky,
48836
- .k-grid-row-sticky.k-table-alt-row td,
48837
- .k-grid-row-sticky.k-table-alt-row .k-table-td {
48838
- @include fill( $bg: $kendo-grid-sticky-alt-bg );
48839
- }
48840
-
48841
- // Selected state
48842
- .k-table-row.k-selected .k-grid-content-sticky,
48843
- .k-selected.k-grid-row-sticky td,
48844
- .k-grid-row-sticky td.k-selected,
48845
- .k-selected.k-grid-row-sticky .k-table-td,
48846
- .k-grid-row-sticky .k-table-td.k-selected,
48847
- .k-selected.k-grid-content-sticky {
48848
- @if($kendo-enable-color-system) {
48849
- @include fill( $bg: $kendo-grid-sticky-bg );
48850
-
48851
- &::before {
48852
- @include fill( $bg: $kendo-grid-sticky-selected-bg );
48853
- }
48854
- } @else {
48855
- @include fill( $bg: $kendo-grid-sticky-selected-bg );
48856
- }
48857
- }
48858
-
48859
- .k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
48860
- .k-selected.k-table-alt-row.k-grid-row-sticky td,
48861
- .k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
48862
- .k-table-alt-row .k-selected.k-grid-content-sticky {
48863
- @if($kendo-enable-color-system) {
48864
- @include fill( $bg: $kendo-grid-sticky-alt-bg );
48865
-
48866
- &::before {
48867
- @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
48868
- }
48869
- } @else {
48870
- @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
48871
- }
48872
- }
48873
-
48874
- // Hover state
48875
- .k-table-row:hover .k-grid-content-sticky,
48876
- .k-table-row.k-hover .k-grid-content-sticky,
48877
- .k-grid-row-sticky:hover td,
48878
- .k-grid-row-sticky.k-hover td,
48879
- .k-grid-row-sticky.k-table-alt-row:hover td,
48880
- .k-grid-row-sticky.k-table-alt-row.k-hover td,
48881
- .k-grid-row-sticky:hover .k-table-td,
48882
- .k-grid-row-sticky.k-hover .k-table-td,
48883
- .k-grid-row-sticky.k-table-alt-row:hover .k-table-td,
48884
- .k-grid-row-sticky.k-table-alt-row.k-hover .k-table-td,
48885
- .k-table-alt-row:hover .k-grid-content-sticky,
48886
- .k-table-alt-row.k-hover .k-grid-content-sticky {
48887
- background-color: $kendo-grid-sticky-hover-bg;
48888
- }
48889
-
48890
- // Selected + Hover
48891
- .k-table-row.k-selected:hover .k-grid-content-sticky,
48892
- .k-table-row.k-selected.k-hover .k-grid-content-sticky,
48893
- .k-selected.k-grid-row-sticky:hover td,
48894
- .k-selected.k-grid-row-sticky.k-hover td,
48895
- .k-selected.k-table-alt-row.k-grid-row-sticky:hover td,
48896
- .k-selected.k-table-alt-row.k-grid-row-sticky.k-hover td,
48897
- .k-selected.k-grid-row-sticky:hover .k-table-td,
48898
- .k-selected.k-grid-row-sticky.k-hover .k-table-td,
48899
- .k-selected.k-table-alt-row.k-grid-row-sticky:hover .k-table-td,
48900
- .k-selected.k-table-alt-row.k-grid-row-sticky.k-hover .k-table-td,
48901
- .k-table-row.k-selected.k-table-alt-row:hover .k-grid-content-sticky,
48902
- .k-table-row.k-selected.k-table-alt-row.k-hover .k-grid-content-sticky,
48903
- .k-grid-row-sticky:hover td.k-selected,
48904
- .k-grid-row-sticky.k-hover td.k-selected,
48905
- .k-grid-row-sticky:hover .k-table-td.k-selected,
48906
- .k-grid-row-sticky.k-hover .k-table-td.k-selected,
48907
- .k-table-row:hover .k-grid-content-sticky.k-selected,
48908
- .k-table-row.k-hover .k-grid-content-sticky.k-selected {
48909
- @if($kendo-enable-color-system) {
48910
- background-color: $kendo-grid-sticky-hover-bg;
48911
-
48912
- &::before {
48913
- background-color: $kendo-grid-sticky-selected-hover-bg;
48914
- }
48915
- } @else {
48916
- background-color: $kendo-grid-sticky-selected-hover-bg;
48917
- }
48918
- }
48919
- }
48920
-
48921
48812
  .k-grouping-row {
48922
48813
  .k-grid-content-sticky {
48923
48814
  @include fill( $bg: $kendo-grid-sticky-header-bg );
@@ -54162,6 +54053,12 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
54162
54053
  visibility: hidden;
54163
54054
  }
54164
54055
 
54056
+ // Resizable tables
54057
+ .k-editor-resize-wrap-element {
54058
+ display: inline-block;
54059
+ position: relative;
54060
+ }
54061
+
54165
54062
  .k-editor-resize-handle {
54166
54063
  width: $kendo-editor-resize-handle-size;
54167
54064
  height: $kendo-editor-resize-handle-size;
@@ -54247,7 +54144,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
54247
54144
 
54248
54145
  // Toolbar
54249
54146
  .k-editor-toolbar {
54250
- border-width: 0 0 $kendo-toolbar-border-width 0;
54147
+ border-width: 0 0 $kendo-toolbar-border-width;
54251
54148
  flex-shrink: 0;
54252
54149
 
54253
54150
  .k-editor-export {
@@ -54502,7 +54399,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
54502
54399
 
54503
54400
  // Filebrowser toolbar
54504
54401
  .k-filebrowser-toolbar {
54505
- margin: k-spacing(4) 0 0 0;
54402
+ margin: k-spacing(4) 0 0;
54506
54403
  }
54507
54404
 
54508
54405
  .k-upload {
@@ -54529,7 +54426,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
54529
54426
  flex-flow: row wrap;
54530
54427
  height: 390px;
54531
54428
  max-height: 50vh;
54532
- margin: 0 0 k-spacing(4) 0;
54429
+ margin: 0 0 k-spacing(4);
54533
54430
  padding-block: $kendo-padding-md-y;
54534
54431
  padding-inline: $kendo-padding-md-x;
54535
54432
  border-top-width: 0;