@progress/kendo-theme-material 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.
Files changed (36) hide show
  1. package/dist/all.css +1 -1
  2. package/dist/all.scss +29 -145
  3. package/dist/material-aqua-dark.css +1 -1
  4. package/dist/material-arctic.css +1 -1
  5. package/dist/material-burnt-teal.css +1 -1
  6. package/dist/material-dataviz-v4.css +1 -1
  7. package/dist/material-eggplant.css +1 -1
  8. package/dist/material-lime-dark.css +1 -1
  9. package/dist/material-lime.css +1 -1
  10. package/dist/material-main-dark.css +1 -1
  11. package/dist/material-main.css +1 -1
  12. package/dist/material-nova.css +1 -1
  13. package/dist/material-pacific-dark.css +1 -1
  14. package/dist/material-pacific.css +1 -1
  15. package/dist/material-sky-dark.css +1 -1
  16. package/dist/material-sky.css +1 -1
  17. package/dist/material-smoke.css +1 -1
  18. package/lib/swatches/material-aqua-dark.json +1 -1
  19. package/lib/swatches/material-arctic.json +1 -1
  20. package/lib/swatches/material-burnt-teal.json +1 -1
  21. package/lib/swatches/material-dataviz-v4.json +1 -1
  22. package/lib/swatches/material-eggplant.json +1 -1
  23. package/lib/swatches/material-lime-dark.json +1 -1
  24. package/lib/swatches/material-lime.json +1 -1
  25. package/lib/swatches/material-main-dark.json +1 -1
  26. package/lib/swatches/material-main.json +1 -1
  27. package/lib/swatches/material-nova.json +1 -1
  28. package/lib/swatches/material-pacific-dark.json +1 -1
  29. package/lib/swatches/material-pacific.json +1 -1
  30. package/lib/swatches/material-sky-dark.json +1 -1
  31. package/lib/swatches/material-sky.json +1 -1
  32. package/lib/swatches/material-smoke.json +1 -1
  33. package/package.json +5 -5
  34. package/scss/grid/_theme.scss +0 -13
  35. package/scss/input/_layout.scss +1 -1
  36. package/scss/treelist/_layout.scss +1 -1
package/dist/all.scss CHANGED
@@ -13583,8 +13583,8 @@ $kendo-utils: (
13583
13583
  /// @group height
13584
13584
  /// @contextType css
13585
13585
 
13586
- /// This is equivalent to `min-height: 100%;`.
13587
- /// @example min-height: 100%;
13586
+ /// This is equivalent to `height: 100%;`.
13587
+ /// @example height: 100%;
13588
13588
  /// @name .k-h-full
13589
13589
  /// @group height
13590
13590
  /// @contextType css
@@ -13753,8 +13753,8 @@ $kendo-utils: (
13753
13753
  /// @group width
13754
13754
  /// @contextType css
13755
13755
 
13756
- /// This is equivalent to `min-width: 100%;`.
13757
- /// @example min-width: 100%;
13756
+ /// This is equivalent to `width: 100%;`.
13757
+ /// @example width: 100%;
13758
13758
  /// @name .k-w-full
13759
13759
  /// @group width
13760
13760
  /// @contextType css
@@ -27877,7 +27877,7 @@ $kendo-form-sizes: (
27877
27877
 
27878
27878
 
27879
27879
  .k-edit-label {
27880
- margin: 0 0 k-spacing(4) 0;
27880
+ margin: 0 0 k-spacing(4);
27881
27881
  // TODO: do we need the input variable?
27882
27882
  padding: calc( #{$kendo-input-padding-y} + #{$kendo-input-border-width} ) 0;
27883
27883
  width: 30%;
@@ -27887,7 +27887,7 @@ $kendo-form-sizes: (
27887
27887
  clear: both;
27888
27888
  }
27889
27889
  .k-edit-field {
27890
- margin: 0 0 k-spacing(4) 0;
27890
+ margin: 0 0 k-spacing(4);
27891
27891
  width: 65%;
27892
27892
  float: right;
27893
27893
  clear: right;
@@ -29046,7 +29046,7 @@ $_kendo-module-meta: (
29046
29046
 
29047
29047
  &::after {
29048
29048
  content: "";
29049
- border-width: 0 0 $_kendo-input-ripple-border-width 0;
29049
+ border-width: 0 0 $_kendo-input-ripple-border-width;
29050
29050
  border-style: solid;
29051
29051
  border-color: inherit;
29052
29052
  border-radius: inherit;
@@ -41310,10 +41310,8 @@ $_kendo-module-meta: (
41310
41310
  overflow: hidden;
41311
41311
  cursor: default;
41312
41312
  flex: 1;
41313
- display: flex;
41314
- flex-flow: row nowrap;
41315
41313
 
41316
- &::before {
41314
+ &:empty::before {
41317
41315
  content: "\200b";
41318
41316
  }
41319
41317
  }
@@ -51709,7 +51707,8 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
51709
51707
  }
51710
51708
  }
51711
51709
 
51712
- .k-master-row .k-grid-content-sticky::before {
51710
+ .k-master-row .k-grid-content-sticky::before,
51711
+ .k-master-row.k-grid-row-sticky .k-table-td::before {
51713
51712
  content: "";
51714
51713
  width: 100%;
51715
51714
  height: 100%;
@@ -52658,7 +52657,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52658
52657
  background-color: $kendo-grid-sticky-bg;
52659
52658
  }
52660
52659
 
52661
- .k-grid-row-sticky {
52660
+ &.k-grid-row-sticky > .k-table-td {
52662
52661
  border-top-color: $kendo-grid-sticky-border;
52663
52662
  border-bottom-color: $kendo-grid-sticky-border;
52664
52663
  background-color: $kendo-grid-sticky-bg;
@@ -52666,6 +52665,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52666
52665
 
52667
52666
  &.k-table-alt-row {
52668
52667
  .k-grid-content-sticky,
52668
+ &.k-grid-row-sticky > .k-table-td,
52669
52669
  .k-grid-row-sticky {
52670
52670
  @include fill( $bg: $kendo-grid-sticky-alt-bg );
52671
52671
  }
@@ -52673,6 +52673,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52673
52673
 
52674
52674
  // Selected state
52675
52675
  &.k-table-row.k-selected td.k-grid-content-sticky,
52676
+ &.k-table-row.k-selected.k-grid-row-sticky > .k-table-td,
52676
52677
  &.k-table-row.k-selected .k-table-td.k-grid-row-sticky,
52677
52678
  &.k-table-row td.k-grid-content-sticky.k-selected,
52678
52679
  &.k-table-row .k-table-td.k-grid-content-sticky.k-selected {
@@ -52688,6 +52689,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52688
52689
  }
52689
52690
 
52690
52691
  &.k-selected.k-table-alt-row td.k-grid-content-sticky,
52692
+ &.k-selected.k-table-alt-row.k-grid-row-sticky > .k-table-td,
52691
52693
  &.k-selected.k-table-alt-row .k-table-td.k-grid-row-sticky,
52692
52694
  &.k-table-alt-row td.k-grid-content-sticky.k-selected,
52693
52695
  &.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
@@ -52706,8 +52708,10 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52706
52708
  // Hovered state
52707
52709
  &:hover .k-grid-content-sticky,
52708
52710
  &:hover .k-grid-row-sticky,
52711
+ &:hover.k-grid-row-sticky > .k-table-td,
52709
52712
  &.k-hover .k-grid-content-sticky,
52710
- &.k-hover .k-grid-row-sticky {
52713
+ &.k-hover .k-grid-row-sticky,
52714
+ &.k-hover.k-grid-row-sticky > .k-table-td {
52711
52715
  background-color: $kendo-grid-sticky-hover-bg;
52712
52716
  }
52713
52717
 
@@ -52715,8 +52719,10 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52715
52719
  // Selected hover
52716
52720
  &.k-selected:hover td.k-grid-content-sticky,
52717
52721
  &.k-selected:hover .k-table-td.k-grid-row-sticky,
52722
+ &.k-selected:hover.k-grid-row-sticky > .k-table-td,
52718
52723
  &.k-selected.k-hover td.k-grid-content-sticky,
52719
52724
  &.k-selected.k-hover .k-table-td.k-grid-row-sticky,
52725
+ &.k-selected.k-hover.k-grid-row-sticky > .k-table-td,
52720
52726
  &:hover td.k-grid-content-sticky.k-selected,
52721
52727
  &.k-hover td.k-grid-content-sticky.k-selected,
52722
52728
  &:hover .k-table-td.k-grid-content-sticky.k-selected,
@@ -52733,121 +52739,6 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
52733
52739
  }
52734
52740
  }
52735
52741
 
52736
- kendo-grid.k-grid {
52737
- .k-grid-content-sticky {
52738
- border-top-color: $kendo-grid-header-border;
52739
- border-left-color: $kendo-grid-sticky-border;
52740
- border-right-color: $kendo-grid-sticky-border;
52741
- background-color: $kendo-grid-sticky-bg;
52742
-
52743
- &:hover,
52744
- &.k-hover {
52745
- background-color: $kendo-grid-sticky-hover-bg;
52746
- }
52747
- }
52748
-
52749
- .k-grid-row-sticky {
52750
- td,
52751
- .k-table-td {
52752
- border-top-color: $kendo-grid-sticky-border;
52753
- border-bottom-color: $kendo-grid-sticky-border;
52754
- background-color: $kendo-grid-sticky-bg;
52755
- }
52756
-
52757
- &:hover td,
52758
- &.k-hover td,
52759
- &:hover .k-table-td,
52760
- &.k-hover .k-table-td {
52761
- background-color: $kendo-grid-sticky-hover-bg;
52762
- }
52763
- }
52764
-
52765
- .k-table-alt-row .k-grid-content-sticky,
52766
- .k-grid-row-sticky.k-table-alt-row td,
52767
- .k-grid-row-sticky.k-table-alt-row .k-table-td {
52768
- @include fill( $bg: $kendo-grid-sticky-alt-bg );
52769
- }
52770
-
52771
- // Selected state
52772
- .k-table-row.k-selected .k-grid-content-sticky,
52773
- .k-selected.k-grid-row-sticky td,
52774
- .k-grid-row-sticky td.k-selected,
52775
- .k-selected.k-grid-row-sticky .k-table-td,
52776
- .k-grid-row-sticky .k-table-td.k-selected,
52777
- .k-selected.k-grid-content-sticky {
52778
- @if($kendo-enable-color-system) {
52779
- @include fill( $bg: $kendo-grid-sticky-bg );
52780
-
52781
- &::before {
52782
- @include fill( $bg: $kendo-grid-sticky-selected-bg );
52783
- }
52784
- } @else {
52785
- @include fill( $bg: $kendo-grid-sticky-selected-bg );
52786
- }
52787
- }
52788
-
52789
- .k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
52790
- .k-selected.k-table-alt-row.k-grid-row-sticky td,
52791
- .k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
52792
- .k-table-alt-row .k-selected.k-grid-content-sticky {
52793
- @if($kendo-enable-color-system) {
52794
- @include fill( $bg: $kendo-grid-sticky-alt-bg );
52795
-
52796
- &::before {
52797
- @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
52798
- }
52799
- } @else {
52800
- @include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
52801
- }
52802
- }
52803
-
52804
- // Hover state
52805
- .k-table-row:hover .k-grid-content-sticky,
52806
- .k-table-row.k-hover .k-grid-content-sticky,
52807
- .k-grid-row-sticky:hover td,
52808
- .k-grid-row-sticky.k-hover td,
52809
- .k-grid-row-sticky.k-table-alt-row:hover td,
52810
- .k-grid-row-sticky.k-table-alt-row.k-hover td,
52811
- .k-grid-row-sticky:hover .k-table-td,
52812
- .k-grid-row-sticky.k-hover .k-table-td,
52813
- .k-grid-row-sticky.k-table-alt-row:hover .k-table-td,
52814
- .k-grid-row-sticky.k-table-alt-row.k-hover .k-table-td,
52815
- .k-table-alt-row:hover .k-grid-content-sticky,
52816
- .k-table-alt-row.k-hover .k-grid-content-sticky {
52817
- background-color: $kendo-grid-sticky-hover-bg;
52818
- }
52819
-
52820
- // Selected + Hover
52821
- .k-table-row.k-selected:hover .k-grid-content-sticky,
52822
- .k-table-row.k-selected.k-hover .k-grid-content-sticky,
52823
- .k-selected.k-grid-row-sticky:hover td,
52824
- .k-selected.k-grid-row-sticky.k-hover td,
52825
- .k-selected.k-table-alt-row.k-grid-row-sticky:hover td,
52826
- .k-selected.k-table-alt-row.k-grid-row-sticky.k-hover td,
52827
- .k-selected.k-grid-row-sticky:hover .k-table-td,
52828
- .k-selected.k-grid-row-sticky.k-hover .k-table-td,
52829
- .k-selected.k-table-alt-row.k-grid-row-sticky:hover .k-table-td,
52830
- .k-selected.k-table-alt-row.k-grid-row-sticky.k-hover .k-table-td,
52831
- .k-table-row.k-selected.k-table-alt-row:hover .k-grid-content-sticky,
52832
- .k-table-row.k-selected.k-table-alt-row.k-hover .k-grid-content-sticky,
52833
- .k-grid-row-sticky:hover td.k-selected,
52834
- .k-grid-row-sticky.k-hover td.k-selected,
52835
- .k-grid-row-sticky:hover .k-table-td.k-selected,
52836
- .k-grid-row-sticky.k-hover .k-table-td.k-selected,
52837
- .k-table-row:hover .k-grid-content-sticky.k-selected,
52838
- .k-table-row.k-hover .k-grid-content-sticky.k-selected {
52839
- @if($kendo-enable-color-system) {
52840
- background-color: $kendo-grid-sticky-hover-bg;
52841
-
52842
- &::before {
52843
- background-color: $kendo-grid-sticky-selected-hover-bg;
52844
- }
52845
- } @else {
52846
- background-color: $kendo-grid-sticky-selected-hover-bg;
52847
- }
52848
- }
52849
- }
52850
-
52851
52742
  .k-grouping-row {
52852
52743
  .k-grid-content-sticky {
52853
52744
  @include fill( $bg: $kendo-grid-sticky-header-bg );
@@ -53096,19 +52987,6 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
53096
52987
  }
53097
52988
  }
53098
52989
 
53099
- kendo-grid {
53100
- .k-grid-content-sticky {
53101
- border-color: $kendo-grid-sticky-border;
53102
- border-bottom-color: $kendo-grid-header-border;
53103
- }
53104
-
53105
- .k-grid-row-sticky td,
53106
- .k-grid-row-sticky .k-table-td {
53107
- border-top-color: $kendo-grid-sticky-border;
53108
- border-bottom-color: $kendo-grid-sticky-border;
53109
- }
53110
- }
53111
-
53112
52990
  .k-grid-header {
53113
52991
  .k-sorted,
53114
52992
  .k-link:hover {
@@ -56803,7 +56681,7 @@ $kendo-treelist-footer-row-border-width: 1px !default;
56803
56681
 
56804
56682
  tr.k-footer td,
56805
56683
  tr.k-footer-template + tr.k-footer-template td {
56806
- border-width: 0 0 $kendo-treelist-footer-row-border-width 0;
56684
+ border-width: 0 0 $kendo-treelist-footer-row-border-width;
56807
56685
  }
56808
56686
  }
56809
56687
 
@@ -58631,6 +58509,12 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
58631
58509
  visibility: hidden;
58632
58510
  }
58633
58511
 
58512
+ // Resizable tables
58513
+ .k-editor-resize-wrap-element {
58514
+ display: inline-block;
58515
+ position: relative;
58516
+ }
58517
+
58634
58518
  .k-editor-resize-handle {
58635
58519
  width: $kendo-editor-resize-handle-size;
58636
58520
  height: $kendo-editor-resize-handle-size;
@@ -58716,7 +58600,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
58716
58600
 
58717
58601
  // Toolbar
58718
58602
  .k-editor-toolbar {
58719
- border-width: 0 0 $kendo-toolbar-border-width 0;
58603
+ border-width: 0 0 $kendo-toolbar-border-width;
58720
58604
  flex-shrink: 0;
58721
58605
 
58722
58606
  .k-editor-export {
@@ -58971,7 +58855,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
58971
58855
 
58972
58856
  // Filebrowser toolbar
58973
58857
  .k-filebrowser-toolbar {
58974
- margin: k-spacing(4) 0 0 0;
58858
+ margin: k-spacing(4) 0 0;
58975
58859
  }
58976
58860
 
58977
58861
  .k-upload {
@@ -58998,7 +58882,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
58998
58882
  flex-flow: row wrap;
58999
58883
  height: 390px;
59000
58884
  max-height: 50vh;
59001
- margin: 0 0 k-spacing(4) 0;
58885
+ margin: 0 0 k-spacing(4);
59002
58886
  padding-block: $kendo-padding-md-y;
59003
58887
  padding-inline: $kendo-padding-md-x;
59004
58888
  border-top-width: 0;