@progress/kendo-theme-default 5.7.0 → 5.8.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 +9 -1
- package/dist/all.scss +9 -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.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 +2 -2
- package/scss/pdf-viewer/_layout.scss +1 -1
- package/scss/pivotgrid/_layout.scss +8 -0
package/dist/all.css
CHANGED
|
@@ -29106,6 +29106,10 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
29106
29106
|
border-bottom-width: 1px;
|
|
29107
29107
|
}
|
|
29108
29108
|
|
|
29109
|
+
.k-pivotgrid-empty-cell:focus {
|
|
29110
|
+
outline: none;
|
|
29111
|
+
}
|
|
29112
|
+
|
|
29109
29113
|
.k-pivotgrid-column-headers {
|
|
29110
29114
|
overflow: hidden;
|
|
29111
29115
|
}
|
|
@@ -29170,6 +29174,10 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
29170
29174
|
overflow: hidden;
|
|
29171
29175
|
}
|
|
29172
29176
|
|
|
29177
|
+
.k-pivotgrid-cell:focus {
|
|
29178
|
+
outline: none;
|
|
29179
|
+
}
|
|
29180
|
+
|
|
29173
29181
|
.k-pivotgrid-cell .k-icon {
|
|
29174
29182
|
cursor: pointer;
|
|
29175
29183
|
padding-inline-end: 8px;
|
|
@@ -35014,7 +35022,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
35014
35022
|
|
|
35015
35023
|
.k-pdf-viewer-canvas > .k-search-panel, .k-pdf-viewer-canvas > .k-search-container {
|
|
35016
35024
|
width: max-content;
|
|
35017
|
-
margin-top: calc(-1.4285714286em + -
|
|
35025
|
+
margin-top: calc(-1.4285714286em + -44px);
|
|
35018
35026
|
border-width: 1px;
|
|
35019
35027
|
border-style: solid;
|
|
35020
35028
|
border-radius: 0;
|
package/dist/all.scss
CHANGED
|
@@ -32051,6 +32051,10 @@ $pivotgrid-remove-text: null !default;
|
|
|
32051
32051
|
border-right-width: $pivotgrid-cell-border-width;
|
|
32052
32052
|
border-bottom-style: solid;
|
|
32053
32053
|
border-bottom-width: $pivotgrid-cell-border-width;
|
|
32054
|
+
|
|
32055
|
+
&:focus {
|
|
32056
|
+
outline: none;
|
|
32057
|
+
}
|
|
32054
32058
|
}
|
|
32055
32059
|
|
|
32056
32060
|
|
|
@@ -32121,6 +32125,10 @@ $pivotgrid-remove-text: null !default;
|
|
|
32121
32125
|
white-space: nowrap;
|
|
32122
32126
|
vertical-align: top;
|
|
32123
32127
|
overflow: hidden;
|
|
32128
|
+
|
|
32129
|
+
&:focus {
|
|
32130
|
+
outline: none;
|
|
32131
|
+
}
|
|
32124
32132
|
}
|
|
32125
32133
|
|
|
32126
32134
|
.k-pivotgrid-cell .k-icon {
|
|
@@ -39985,7 +39993,7 @@ $pdf-viewer-icon-size: calc( #{$icon-size} * 3 ) !default;
|
|
|
39985
39993
|
|
|
39986
39994
|
.k-pdf-viewer-canvas > .k-search-panel {
|
|
39987
39995
|
width: max-content;
|
|
39988
|
-
margin-top: calc( (#{$kendo-button-calc-size} + #{$pdf-viewer-search-panel-border-width} + ( 2 * #{$pdf-viewer-search-dialog-padding-y} )) * -1 );
|
|
39996
|
+
margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$pdf-viewer-search-panel-border-width} ) + ( 2 * #{$pdf-viewer-search-dialog-padding-y} )) * -1 );
|
|
39989
39997
|
border-width: $pdf-viewer-search-panel-border-width;
|
|
39990
39998
|
border-style: solid;
|
|
39991
39999
|
border-radius: $pdf-viewer-search-panel-border-radius;
|
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": "5.
|
|
4
|
+
"version": "5.8.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"sass-build": "^1.0.0"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "2e623d96036e764e51218c1b9d8b97d17eb036b5"
|
|
48
48
|
}
|
|
@@ -158,7 +158,7 @@
|
|
|
158
158
|
|
|
159
159
|
.k-pdf-viewer-canvas > .k-search-panel {
|
|
160
160
|
width: max-content;
|
|
161
|
-
margin-top: calc( (#{$kendo-button-calc-size} + #{$pdf-viewer-search-panel-border-width} + ( 2 * #{$pdf-viewer-search-dialog-padding-y} )) * -1 );
|
|
161
|
+
margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$pdf-viewer-search-panel-border-width} ) + ( 2 * #{$pdf-viewer-search-dialog-padding-y} )) * -1 );
|
|
162
162
|
border-width: $pdf-viewer-search-panel-border-width;
|
|
163
163
|
border-style: solid;
|
|
164
164
|
border-radius: $pdf-viewer-search-panel-border-radius;
|
|
@@ -60,6 +60,10 @@
|
|
|
60
60
|
border-right-width: $pivotgrid-cell-border-width;
|
|
61
61
|
border-bottom-style: solid;
|
|
62
62
|
border-bottom-width: $pivotgrid-cell-border-width;
|
|
63
|
+
|
|
64
|
+
&:focus {
|
|
65
|
+
outline: none;
|
|
66
|
+
}
|
|
63
67
|
}
|
|
64
68
|
|
|
65
69
|
|
|
@@ -130,6 +134,10 @@
|
|
|
130
134
|
white-space: nowrap;
|
|
131
135
|
vertical-align: top;
|
|
132
136
|
overflow: hidden;
|
|
137
|
+
|
|
138
|
+
&:focus {
|
|
139
|
+
outline: none;
|
|
140
|
+
}
|
|
133
141
|
}
|
|
134
142
|
|
|
135
143
|
.k-pivotgrid-cell .k-icon {
|