@progress/kendo-theme-default 9.0.1-dev.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.css +1 -1
- package/dist/all.scss +16 -123
- 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 +3 -3
- package/scss/forms/_layout.scss +2 -2
- package/scss/grid/_layout.scss +2 -1
- package/scss/grid/_theme.scss +9 -117
package/dist/all.scss
CHANGED
|
@@ -25828,7 +25828,7 @@ $kendo-form-sizes: (
|
|
|
25828
25828
|
|
|
25829
25829
|
|
|
25830
25830
|
.k-edit-label {
|
|
25831
|
-
margin: 0 0 k-spacing(4)
|
|
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)
|
|
25841
|
+
margin: 0 0 k-spacing(4);
|
|
25842
25842
|
width: 65%;
|
|
25843
25843
|
float: right;
|
|
25844
25844
|
clear: right;
|
|
@@ -47885,7 +47885,8 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
47885
47885
|
}
|
|
47886
47886
|
}
|
|
47887
47887
|
|
|
47888
|
-
.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 {
|
|
47889
47890
|
content: "";
|
|
47890
47891
|
width: 100%;
|
|
47891
47892
|
height: 100%;
|
|
@@ -48726,7 +48727,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
48726
48727
|
background-color: $kendo-grid-sticky-bg;
|
|
48727
48728
|
}
|
|
48728
48729
|
|
|
48729
|
-
|
|
48730
|
+
&.k-grid-row-sticky > .k-table-td {
|
|
48730
48731
|
border-top-color: $kendo-grid-sticky-border;
|
|
48731
48732
|
border-bottom-color: $kendo-grid-sticky-border;
|
|
48732
48733
|
background-color: $kendo-grid-sticky-bg;
|
|
@@ -48734,6 +48735,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
48734
48735
|
|
|
48735
48736
|
&.k-table-alt-row {
|
|
48736
48737
|
.k-grid-content-sticky,
|
|
48738
|
+
&.k-grid-row-sticky > .k-table-td,
|
|
48737
48739
|
.k-grid-row-sticky {
|
|
48738
48740
|
@include fill( $bg: $kendo-grid-sticky-alt-bg );
|
|
48739
48741
|
}
|
|
@@ -48741,6 +48743,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
48741
48743
|
|
|
48742
48744
|
// Selected state
|
|
48743
48745
|
&.k-table-row.k-selected td.k-grid-content-sticky,
|
|
48746
|
+
&.k-table-row.k-selected.k-grid-row-sticky > .k-table-td,
|
|
48744
48747
|
&.k-table-row.k-selected .k-table-td.k-grid-row-sticky,
|
|
48745
48748
|
&.k-table-row td.k-grid-content-sticky.k-selected,
|
|
48746
48749
|
&.k-table-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
@@ -48756,6 +48759,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
48756
48759
|
}
|
|
48757
48760
|
|
|
48758
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,
|
|
48759
48763
|
&.k-selected.k-table-alt-row .k-table-td.k-grid-row-sticky,
|
|
48760
48764
|
&.k-table-alt-row td.k-grid-content-sticky.k-selected,
|
|
48761
48765
|
&.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
@@ -48774,8 +48778,10 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
48774
48778
|
// Hovered state
|
|
48775
48779
|
&:hover .k-grid-content-sticky,
|
|
48776
48780
|
&:hover .k-grid-row-sticky,
|
|
48781
|
+
&:hover.k-grid-row-sticky > .k-table-td,
|
|
48777
48782
|
&.k-hover .k-grid-content-sticky,
|
|
48778
|
-
&.k-hover .k-grid-row-sticky
|
|
48783
|
+
&.k-hover .k-grid-row-sticky,
|
|
48784
|
+
&.k-hover.k-grid-row-sticky > .k-table-td {
|
|
48779
48785
|
background-color: $kendo-grid-sticky-hover-bg;
|
|
48780
48786
|
}
|
|
48781
48787
|
|
|
@@ -48783,8 +48789,10 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
48783
48789
|
// Selected hover
|
|
48784
48790
|
&.k-selected:hover td.k-grid-content-sticky,
|
|
48785
48791
|
&.k-selected:hover .k-table-td.k-grid-row-sticky,
|
|
48792
|
+
&.k-selected:hover.k-grid-row-sticky > .k-table-td,
|
|
48786
48793
|
&.k-selected.k-hover td.k-grid-content-sticky,
|
|
48787
48794
|
&.k-selected.k-hover .k-table-td.k-grid-row-sticky,
|
|
48795
|
+
&.k-selected.k-hover.k-grid-row-sticky > .k-table-td,
|
|
48788
48796
|
&:hover td.k-grid-content-sticky.k-selected,
|
|
48789
48797
|
&.k-hover td.k-grid-content-sticky.k-selected,
|
|
48790
48798
|
&:hover .k-table-td.k-grid-content-sticky.k-selected,
|
|
@@ -48801,121 +48809,6 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
48801
48809
|
}
|
|
48802
48810
|
}
|
|
48803
48811
|
|
|
48804
|
-
kendo-grid.k-grid {
|
|
48805
|
-
.k-grid-content-sticky {
|
|
48806
|
-
border-top-color: $kendo-grid-header-border;
|
|
48807
|
-
border-left-color: $kendo-grid-sticky-border;
|
|
48808
|
-
border-right-color: $kendo-grid-sticky-border;
|
|
48809
|
-
background-color: $kendo-grid-sticky-bg;
|
|
48810
|
-
|
|
48811
|
-
&:hover,
|
|
48812
|
-
&.k-hover {
|
|
48813
|
-
background-color: $kendo-grid-sticky-hover-bg;
|
|
48814
|
-
}
|
|
48815
|
-
}
|
|
48816
|
-
|
|
48817
|
-
.k-grid-row-sticky {
|
|
48818
|
-
td,
|
|
48819
|
-
.k-table-td {
|
|
48820
|
-
border-top-color: $kendo-grid-sticky-border;
|
|
48821
|
-
border-bottom-color: $kendo-grid-sticky-border;
|
|
48822
|
-
background-color: $kendo-grid-sticky-bg;
|
|
48823
|
-
}
|
|
48824
|
-
|
|
48825
|
-
&:hover td,
|
|
48826
|
-
&.k-hover td,
|
|
48827
|
-
&:hover .k-table-td,
|
|
48828
|
-
&.k-hover .k-table-td {
|
|
48829
|
-
background-color: $kendo-grid-sticky-hover-bg;
|
|
48830
|
-
}
|
|
48831
|
-
}
|
|
48832
|
-
|
|
48833
|
-
.k-table-alt-row .k-grid-content-sticky,
|
|
48834
|
-
.k-grid-row-sticky.k-table-alt-row td,
|
|
48835
|
-
.k-grid-row-sticky.k-table-alt-row .k-table-td {
|
|
48836
|
-
@include fill( $bg: $kendo-grid-sticky-alt-bg );
|
|
48837
|
-
}
|
|
48838
|
-
|
|
48839
|
-
// Selected state
|
|
48840
|
-
.k-table-row.k-selected .k-grid-content-sticky,
|
|
48841
|
-
.k-selected.k-grid-row-sticky td,
|
|
48842
|
-
.k-grid-row-sticky td.k-selected,
|
|
48843
|
-
.k-selected.k-grid-row-sticky .k-table-td,
|
|
48844
|
-
.k-grid-row-sticky .k-table-td.k-selected,
|
|
48845
|
-
.k-selected.k-grid-content-sticky {
|
|
48846
|
-
@if($kendo-enable-color-system) {
|
|
48847
|
-
@include fill( $bg: $kendo-grid-sticky-bg );
|
|
48848
|
-
|
|
48849
|
-
&::before {
|
|
48850
|
-
@include fill( $bg: $kendo-grid-sticky-selected-bg );
|
|
48851
|
-
}
|
|
48852
|
-
} @else {
|
|
48853
|
-
@include fill( $bg: $kendo-grid-sticky-selected-bg );
|
|
48854
|
-
}
|
|
48855
|
-
}
|
|
48856
|
-
|
|
48857
|
-
.k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
|
|
48858
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky td,
|
|
48859
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
|
|
48860
|
-
.k-table-alt-row .k-selected.k-grid-content-sticky {
|
|
48861
|
-
@if($kendo-enable-color-system) {
|
|
48862
|
-
@include fill( $bg: $kendo-grid-sticky-alt-bg );
|
|
48863
|
-
|
|
48864
|
-
&::before {
|
|
48865
|
-
@include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
|
|
48866
|
-
}
|
|
48867
|
-
} @else {
|
|
48868
|
-
@include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
|
|
48869
|
-
}
|
|
48870
|
-
}
|
|
48871
|
-
|
|
48872
|
-
// Hover state
|
|
48873
|
-
.k-table-row:hover .k-grid-content-sticky,
|
|
48874
|
-
.k-table-row.k-hover .k-grid-content-sticky,
|
|
48875
|
-
.k-grid-row-sticky:hover td,
|
|
48876
|
-
.k-grid-row-sticky.k-hover td,
|
|
48877
|
-
.k-grid-row-sticky.k-table-alt-row:hover td,
|
|
48878
|
-
.k-grid-row-sticky.k-table-alt-row.k-hover td,
|
|
48879
|
-
.k-grid-row-sticky:hover .k-table-td,
|
|
48880
|
-
.k-grid-row-sticky.k-hover .k-table-td,
|
|
48881
|
-
.k-grid-row-sticky.k-table-alt-row:hover .k-table-td,
|
|
48882
|
-
.k-grid-row-sticky.k-table-alt-row.k-hover .k-table-td,
|
|
48883
|
-
.k-table-alt-row:hover .k-grid-content-sticky,
|
|
48884
|
-
.k-table-alt-row.k-hover .k-grid-content-sticky {
|
|
48885
|
-
background-color: $kendo-grid-sticky-hover-bg;
|
|
48886
|
-
}
|
|
48887
|
-
|
|
48888
|
-
// Selected + Hover
|
|
48889
|
-
.k-table-row.k-selected:hover .k-grid-content-sticky,
|
|
48890
|
-
.k-table-row.k-selected.k-hover .k-grid-content-sticky,
|
|
48891
|
-
.k-selected.k-grid-row-sticky:hover td,
|
|
48892
|
-
.k-selected.k-grid-row-sticky.k-hover td,
|
|
48893
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky:hover td,
|
|
48894
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky.k-hover td,
|
|
48895
|
-
.k-selected.k-grid-row-sticky:hover .k-table-td,
|
|
48896
|
-
.k-selected.k-grid-row-sticky.k-hover .k-table-td,
|
|
48897
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky:hover .k-table-td,
|
|
48898
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky.k-hover .k-table-td,
|
|
48899
|
-
.k-table-row.k-selected.k-table-alt-row:hover .k-grid-content-sticky,
|
|
48900
|
-
.k-table-row.k-selected.k-table-alt-row.k-hover .k-grid-content-sticky,
|
|
48901
|
-
.k-grid-row-sticky:hover td.k-selected,
|
|
48902
|
-
.k-grid-row-sticky.k-hover td.k-selected,
|
|
48903
|
-
.k-grid-row-sticky:hover .k-table-td.k-selected,
|
|
48904
|
-
.k-grid-row-sticky.k-hover .k-table-td.k-selected,
|
|
48905
|
-
.k-table-row:hover .k-grid-content-sticky.k-selected,
|
|
48906
|
-
.k-table-row.k-hover .k-grid-content-sticky.k-selected {
|
|
48907
|
-
@if($kendo-enable-color-system) {
|
|
48908
|
-
background-color: $kendo-grid-sticky-hover-bg;
|
|
48909
|
-
|
|
48910
|
-
&::before {
|
|
48911
|
-
background-color: $kendo-grid-sticky-selected-hover-bg;
|
|
48912
|
-
}
|
|
48913
|
-
} @else {
|
|
48914
|
-
background-color: $kendo-grid-sticky-selected-hover-bg;
|
|
48915
|
-
}
|
|
48916
|
-
}
|
|
48917
|
-
}
|
|
48918
|
-
|
|
48919
48812
|
.k-grouping-row {
|
|
48920
48813
|
.k-grid-content-sticky {
|
|
48921
48814
|
@include fill( $bg: $kendo-grid-sticky-header-bg );
|
|
@@ -54251,7 +54144,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
|
54251
54144
|
|
|
54252
54145
|
// Toolbar
|
|
54253
54146
|
.k-editor-toolbar {
|
|
54254
|
-
border-width: 0 0 $kendo-toolbar-border-width
|
|
54147
|
+
border-width: 0 0 $kendo-toolbar-border-width;
|
|
54255
54148
|
flex-shrink: 0;
|
|
54256
54149
|
|
|
54257
54150
|
.k-editor-export {
|
|
@@ -54506,7 +54399,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
|
54506
54399
|
|
|
54507
54400
|
// Filebrowser toolbar
|
|
54508
54401
|
.k-filebrowser-toolbar {
|
|
54509
|
-
margin: k-spacing(4) 0 0
|
|
54402
|
+
margin: k-spacing(4) 0 0;
|
|
54510
54403
|
}
|
|
54511
54404
|
|
|
54512
54405
|
.k-upload {
|
|
@@ -54533,7 +54426,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
|
54533
54426
|
flex-flow: row wrap;
|
|
54534
54427
|
height: 390px;
|
|
54535
54428
|
max-height: 50vh;
|
|
54536
|
-
margin: 0 0 k-spacing(4)
|
|
54429
|
+
margin: 0 0 k-spacing(4);
|
|
54537
54430
|
padding-block: $kendo-padding-md-y;
|
|
54538
54431
|
padding-inline: $kendo-padding-md-x;
|
|
54539
54432
|
border-top-width: 0;
|