@progress/kendo-theme-classic 5.7.0 → 5.8.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 +9 -1
- package/dist/all.scss +10 -2
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-opal-dark.json +1 -1
- package/lib/swatches/classic-opal.json +1 -1
- package/lib/swatches/classic-silver-dark.json +1 -1
- package/lib/swatches/classic-silver.json +1 -1
- package/package.json +3 -3
package/dist/all.css
CHANGED
|
@@ -29122,6 +29122,10 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
29122
29122
|
border-bottom-width: 1px;
|
|
29123
29123
|
}
|
|
29124
29124
|
|
|
29125
|
+
.k-pivotgrid-empty-cell:focus {
|
|
29126
|
+
outline: none;
|
|
29127
|
+
}
|
|
29128
|
+
|
|
29125
29129
|
.k-pivotgrid-column-headers {
|
|
29126
29130
|
overflow: hidden;
|
|
29127
29131
|
}
|
|
@@ -29186,6 +29190,10 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
29186
29190
|
overflow: hidden;
|
|
29187
29191
|
}
|
|
29188
29192
|
|
|
29193
|
+
.k-pivotgrid-cell:focus {
|
|
29194
|
+
outline: none;
|
|
29195
|
+
}
|
|
29196
|
+
|
|
29189
29197
|
.k-pivotgrid-cell .k-icon {
|
|
29190
29198
|
cursor: pointer;
|
|
29191
29199
|
padding-inline-end: 8px;
|
|
@@ -35030,7 +35038,7 @@ kendo-scheduler .k-recurrence-editor {
|
|
|
35030
35038
|
|
|
35031
35039
|
.k-pdf-viewer-canvas > .k-search-panel, .k-pdf-viewer-canvas > .k-search-container {
|
|
35032
35040
|
width: max-content;
|
|
35033
|
-
margin-top: calc(-1.4285714286em + -
|
|
35041
|
+
margin-top: calc(-1.4285714286em + -36px);
|
|
35034
35042
|
border-width: 1px;
|
|
35035
35043
|
border-style: solid;
|
|
35036
35044
|
border-radius: 4px;
|
package/dist/all.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// This file is auto-generated. Do not edit!
|
|
2
|
-
// baka:source
|
|
2
|
+
// baka:source packages/classic/scss/all.scss
|
|
3
3
|
|
|
4
4
|
// #region @import "index.scss"; -> packages/classic/scss/index.scss
|
|
5
5
|
// #region @import "core/_index.scss"; -> packages/classic/scss/core/_index.scss
|
|
@@ -32621,6 +32621,10 @@ $pivotgrid-remove-text: null !default;
|
|
|
32621
32621
|
border-right-width: $pivotgrid-cell-border-width;
|
|
32622
32622
|
border-bottom-style: solid;
|
|
32623
32623
|
border-bottom-width: $pivotgrid-cell-border-width;
|
|
32624
|
+
|
|
32625
|
+
&:focus {
|
|
32626
|
+
outline: none;
|
|
32627
|
+
}
|
|
32624
32628
|
}
|
|
32625
32629
|
|
|
32626
32630
|
|
|
@@ -32691,6 +32695,10 @@ $pivotgrid-remove-text: null !default;
|
|
|
32691
32695
|
white-space: nowrap;
|
|
32692
32696
|
vertical-align: top;
|
|
32693
32697
|
overflow: hidden;
|
|
32698
|
+
|
|
32699
|
+
&:focus {
|
|
32700
|
+
outline: none;
|
|
32701
|
+
}
|
|
32694
32702
|
}
|
|
32695
32703
|
|
|
32696
32704
|
.k-pivotgrid-cell .k-icon {
|
|
@@ -40626,7 +40634,7 @@ $pdf-viewer-icon-size: calc( #{$icon-size} * 3 ) !default;
|
|
|
40626
40634
|
|
|
40627
40635
|
.k-pdf-viewer-canvas > .k-search-panel {
|
|
40628
40636
|
width: max-content;
|
|
40629
|
-
margin-top: calc( (#{$kendo-button-calc-size} + #{$pdf-viewer-search-panel-border-width} + ( 2 * #{$pdf-viewer-search-dialog-padding-y} )) * -1 );
|
|
40637
|
+
margin-top: calc( (#{$kendo-button-calc-size} + ( 2 * #{$pdf-viewer-search-panel-border-width} ) + ( 2 * #{$pdf-viewer-search-dialog-padding-y} )) * -1 );
|
|
40630
40638
|
border-width: $pdf-viewer-search-panel-border-width;
|
|
40631
40639
|
border-style: solid;
|
|
40632
40640
|
border-radius: $pdf-viewer-search-panel-border-radius;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-theme-classic",
|
|
3
3
|
"description": "Sass port of less based themes for Kendo UI theme",
|
|
4
|
-
"version": "5.
|
|
4
|
+
"version": "5.8.1-dev.1",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
"postpublish": "echo 'no postpublish for classic theme'"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@progress/kendo-theme-default": "^5.
|
|
46
|
+
"@progress/kendo-theme-default": "^5.8.1-dev.1"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"sass-build": "^1.0.0"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "817814b8a22fb067897401b95c6a6100fa490f71"
|
|
52
52
|
}
|