@progress/kendo-theme-default 7.0.2-dev.4 → 7.0.2
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 +5 -2
- package/dist/all.scss +8 -4
- 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/grid/_layout.scss +5 -4
- package/scss/listbox/_layout.scss +3 -0
package/dist/all.css
CHANGED
|
@@ -32960,10 +32960,13 @@ select.k-picker-lg {
|
|
|
32960
32960
|
|
|
32961
32961
|
.k-listbox .k-list-scroller {
|
|
32962
32962
|
width: 100%;
|
|
32963
|
+
min-height: 0;
|
|
32963
32964
|
height: inherit;
|
|
32964
32965
|
border-width: 1px;
|
|
32965
32966
|
border-style: solid;
|
|
32966
32967
|
box-sizing: border-box;
|
|
32968
|
+
display: flex;
|
|
32969
|
+
flex-flow: column nowrap;
|
|
32967
32970
|
}
|
|
32968
32971
|
|
|
32969
32972
|
.k-listbox .k-list-scroller .k-list-scroller {
|
|
@@ -42469,12 +42472,12 @@ div.k-grid-footer {
|
|
|
42469
42472
|
}
|
|
42470
42473
|
|
|
42471
42474
|
.k-grid .k-command-cell > .k-button {
|
|
42475
|
+
margin-inline-end: 8px;
|
|
42472
42476
|
vertical-align: middle;
|
|
42473
42477
|
}
|
|
42474
42478
|
|
|
42475
|
-
.k-grid .k-command-cell > .k-button
|
|
42479
|
+
.k-grid .k-command-cell > .k-button:last-child {
|
|
42476
42480
|
margin-inline-end: unset;
|
|
42477
|
-
margin-inline-start: 8px;
|
|
42478
42481
|
}
|
|
42479
42482
|
|
|
42480
42483
|
.k-grid > .k-resize-handle,
|
package/dist/all.scss
CHANGED
|
@@ -25707,10 +25707,13 @@ $kendo-listbox-drop-hint-border-width: null !default;
|
|
|
25707
25707
|
|
|
25708
25708
|
.k-list-scroller {
|
|
25709
25709
|
width: 100%;
|
|
25710
|
+
min-height: 0;
|
|
25710
25711
|
height: inherit;
|
|
25711
25712
|
border-width: $kendo-listbox-border-width;
|
|
25712
25713
|
border-style: solid;
|
|
25713
25714
|
box-sizing: border-box;
|
|
25715
|
+
display: flex;
|
|
25716
|
+
flex-flow: column nowrap;
|
|
25714
25717
|
|
|
25715
25718
|
.k-list-scroller {
|
|
25716
25719
|
border-width: 0;
|
|
@@ -43670,11 +43673,12 @@ $kendo-grid-row-resizer-height: k-map-get( $kendo-spacing, .5 ) !default;
|
|
|
43670
43673
|
}
|
|
43671
43674
|
|
|
43672
43675
|
.k-grid .k-command-cell > .k-button {
|
|
43676
|
+
margin-inline-end: $kendo-grid-command-cell-button-spacing;
|
|
43673
43677
|
vertical-align: middle;
|
|
43674
|
-
|
|
43675
|
-
|
|
43676
|
-
|
|
43677
|
-
|
|
43678
|
+
|
|
43679
|
+
&:last-child {
|
|
43680
|
+
margin-inline-end: unset;
|
|
43681
|
+
}
|
|
43678
43682
|
}
|
|
43679
43683
|
|
|
43680
43684
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-default",
|
|
3
3
|
"description": "SASS resources for the default Kendo UI theme",
|
|
4
|
-
"version": "7.0.2
|
|
4
|
+
"version": "7.0.2",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -52,12 +52,12 @@
|
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
54
|
"@progress/kendo-svg-icons": "2.0.0",
|
|
55
|
-
"@progress/kendo-theme-core": "7.0.2
|
|
56
|
-
"@progress/kendo-theme-utils": "7.0.2
|
|
55
|
+
"@progress/kendo-theme-core": "7.0.2",
|
|
56
|
+
"@progress/kendo-theme-utils": "7.0.2"
|
|
57
57
|
},
|
|
58
58
|
"directories": {
|
|
59
59
|
"doc": "docs",
|
|
60
60
|
"lib": "lib"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "dfc0dd56b57521806d71c44a781e60250caf96fb"
|
|
63
63
|
}
|
package/scss/grid/_layout.scss
CHANGED
|
@@ -633,11 +633,12 @@
|
|
|
633
633
|
}
|
|
634
634
|
|
|
635
635
|
.k-grid .k-command-cell > .k-button {
|
|
636
|
+
margin-inline-end: $kendo-grid-command-cell-button-spacing;
|
|
636
637
|
vertical-align: middle;
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
638
|
+
|
|
639
|
+
&:last-child {
|
|
640
|
+
margin-inline-end: unset;
|
|
641
|
+
}
|
|
641
642
|
}
|
|
642
643
|
|
|
643
644
|
|
|
@@ -48,10 +48,13 @@
|
|
|
48
48
|
|
|
49
49
|
.k-list-scroller {
|
|
50
50
|
width: 100%;
|
|
51
|
+
min-height: 0;
|
|
51
52
|
height: inherit;
|
|
52
53
|
border-width: $kendo-listbox-border-width;
|
|
53
54
|
border-style: solid;
|
|
54
55
|
box-sizing: border-box;
|
|
56
|
+
display: flex;
|
|
57
|
+
flex-flow: column nowrap;
|
|
55
58
|
|
|
56
59
|
.k-list-scroller {
|
|
57
60
|
border-width: 0;
|