@progress/kendo-theme-classic 5.9.1-dev.1 → 5.10.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 +11 -2
- package/dist/all.scss +8 -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 +4 -4
- package/scss/calendar/_variables.scss +1 -1
package/dist/all.css
CHANGED
|
@@ -18426,8 +18426,8 @@ kendo-label > .k-label {
|
|
|
18426
18426
|
.k-calendar-view {
|
|
18427
18427
|
margin: auto;
|
|
18428
18428
|
padding: 0 4px;
|
|
18429
|
-
width:
|
|
18430
|
-
inline-size: var(--INTERNAL--kendo-calendar-view-width,
|
|
18429
|
+
width: 256px;
|
|
18430
|
+
inline-size: var(--INTERNAL--kendo-calendar-view-width, 256px);
|
|
18431
18431
|
min-height: 224px;
|
|
18432
18432
|
box-sizing: content-box;
|
|
18433
18433
|
gap: 16px;
|
|
@@ -28396,6 +28396,7 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
28396
28396
|
user-select: none;
|
|
28397
28397
|
position: absolute;
|
|
28398
28398
|
z-index: 2;
|
|
28399
|
+
overflow: hidden;
|
|
28399
28400
|
}
|
|
28400
28401
|
|
|
28401
28402
|
.k-spreadsheet-overflow {
|
|
@@ -28566,6 +28567,10 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
28566
28567
|
position: relative;
|
|
28567
28568
|
}
|
|
28568
28569
|
|
|
28570
|
+
.k-spreadsheet-disabled-mask {
|
|
28571
|
+
position: absolute;
|
|
28572
|
+
}
|
|
28573
|
+
|
|
28569
28574
|
.k-spreadsheet .k-selection-wrapper {
|
|
28570
28575
|
position: relative;
|
|
28571
28576
|
cursor: cell;
|
|
@@ -29083,6 +29088,10 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
29083
29088
|
background-color: #ffffff;
|
|
29084
29089
|
}
|
|
29085
29090
|
|
|
29091
|
+
.k-spreadsheet-disabled-mask {
|
|
29092
|
+
background-color: #ffffff;
|
|
29093
|
+
}
|
|
29094
|
+
|
|
29086
29095
|
.k-spreadsheet .k-selection-full,
|
|
29087
29096
|
.k-spreadsheet .k-selection-partial {
|
|
29088
29097
|
background-color: rgba(243, 88, 0, 0.25);
|
package/dist/all.scss
CHANGED
|
@@ -17485,7 +17485,7 @@ $calendar-caption-font-size: null !default;
|
|
|
17485
17485
|
$calendar-caption-line-height: null !default;
|
|
17486
17486
|
$calendar-caption-font-weight: bold !default;
|
|
17487
17487
|
|
|
17488
|
-
$calendar-view-width: ($calendar-cell-size *
|
|
17488
|
+
$calendar-view-width: ($calendar-cell-size * 8) !default;
|
|
17489
17489
|
$calendar-view-height: ($calendar-cell-size * 7) !default;
|
|
17490
17490
|
$calendar-view-gap: k-map-get( $spacing, 4 ) !default;
|
|
17491
17491
|
|
|
@@ -32467,6 +32467,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32467
32467
|
user-select: none;
|
|
32468
32468
|
position: absolute;
|
|
32469
32469
|
z-index: 2;
|
|
32470
|
+
overflow: hidden;
|
|
32470
32471
|
}
|
|
32471
32472
|
.k-spreadsheet-overflow {
|
|
32472
32473
|
position: absolute;
|
|
@@ -32626,6 +32627,9 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
32626
32627
|
position: relative;
|
|
32627
32628
|
}
|
|
32628
32629
|
|
|
32630
|
+
.k-spreadsheet-disabled-mask {
|
|
32631
|
+
position: absolute;
|
|
32632
|
+
}
|
|
32629
32633
|
|
|
32630
32634
|
// Selection
|
|
32631
32635
|
.k-spreadsheet .k-selection-wrapper {
|
|
@@ -33166,7 +33170,9 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
33166
33170
|
.k-spreadsheet-merged-cell {
|
|
33167
33171
|
background-color: $spreadsheet-bg;
|
|
33168
33172
|
}
|
|
33169
|
-
|
|
33173
|
+
.k-spreadsheet-disabled-mask {
|
|
33174
|
+
background-color: $spreadsheet-bg;
|
|
33175
|
+
}
|
|
33170
33176
|
|
|
33171
33177
|
// Selection
|
|
33172
33178
|
.k-spreadsheet .k-selection-full,
|
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.10.0",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -45,11 +45,11 @@
|
|
|
45
45
|
"postpublish": "echo 'no postpublish for classic theme'"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@progress/kendo-theme-core": "^5.
|
|
49
|
-
"@progress/kendo-theme-default": "^5.
|
|
48
|
+
"@progress/kendo-theme-core": "^5.10.0",
|
|
49
|
+
"@progress/kendo-theme-default": "^5.10.0"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"sass-build": "^1.0.0"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "598cd24e8c0141a760e7fa1782887aef2163dde7"
|
|
55
55
|
}
|
|
@@ -50,7 +50,7 @@ $calendar-caption-font-size: null !default;
|
|
|
50
50
|
$calendar-caption-line-height: null !default;
|
|
51
51
|
$calendar-caption-font-weight: bold !default;
|
|
52
52
|
|
|
53
|
-
$calendar-view-width: ($calendar-cell-size *
|
|
53
|
+
$calendar-view-width: ($calendar-cell-size * 8) !default;
|
|
54
54
|
$calendar-view-height: ($calendar-cell-size * 7) !default;
|
|
55
55
|
$calendar-view-gap: k-map-get( $spacing, 4 ) !default;
|
|
56
56
|
|