@progress/kendo-theme-default 5.9.1-dev.1 → 5.9.1-dev.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 +11 -2
- package/dist/all.scss +8 -2
- 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/calendar/_variables.scss +1 -1
- package/scss/spreadsheet/_layout.scss +4 -0
- package/scss/spreadsheet/_theme.scss +3 -1
package/dist/all.css
CHANGED
|
@@ -18424,8 +18424,8 @@ kendo-label > .k-label {
|
|
|
18424
18424
|
.k-calendar-view {
|
|
18425
18425
|
margin: auto;
|
|
18426
18426
|
padding: 0 4px;
|
|
18427
|
-
width:
|
|
18428
|
-
inline-size: var(--INTERNAL--kendo-calendar-view-width,
|
|
18427
|
+
width: 256px;
|
|
18428
|
+
inline-size: var(--INTERNAL--kendo-calendar-view-width, 256px);
|
|
18429
18429
|
min-height: 224px;
|
|
18430
18430
|
box-sizing: content-box;
|
|
18431
18431
|
gap: 16px;
|
|
@@ -28383,6 +28383,7 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
28383
28383
|
user-select: none;
|
|
28384
28384
|
position: absolute;
|
|
28385
28385
|
z-index: 2;
|
|
28386
|
+
overflow: hidden;
|
|
28386
28387
|
}
|
|
28387
28388
|
|
|
28388
28389
|
.k-spreadsheet-overflow {
|
|
@@ -28553,6 +28554,10 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
28553
28554
|
position: relative;
|
|
28554
28555
|
}
|
|
28555
28556
|
|
|
28557
|
+
.k-spreadsheet-disabled-mask {
|
|
28558
|
+
position: absolute;
|
|
28559
|
+
}
|
|
28560
|
+
|
|
28556
28561
|
.k-spreadsheet .k-selection-wrapper {
|
|
28557
28562
|
position: relative;
|
|
28558
28563
|
cursor: cell;
|
|
@@ -29069,6 +29074,10 @@ kendo-grid tr.k-hover .k-grid-content-sticky.k-selected {
|
|
|
29069
29074
|
background-color: #ffffff;
|
|
29070
29075
|
}
|
|
29071
29076
|
|
|
29077
|
+
.k-spreadsheet-disabled-mask {
|
|
29078
|
+
background-color: #ffffff;
|
|
29079
|
+
}
|
|
29080
|
+
|
|
29072
29081
|
.k-spreadsheet .k-selection-full,
|
|
29073
29082
|
.k-spreadsheet .k-selection-partial {
|
|
29074
29083
|
background-color: rgba(255, 99, 88, 0.25);
|
package/dist/all.scss
CHANGED
|
@@ -16436,7 +16436,7 @@ $calendar-caption-font-size: null !default;
|
|
|
16436
16436
|
$calendar-caption-line-height: null !default;
|
|
16437
16437
|
$calendar-caption-font-weight: bold !default;
|
|
16438
16438
|
|
|
16439
|
-
$calendar-view-width: ($calendar-cell-size *
|
|
16439
|
+
$calendar-view-width: ($calendar-cell-size * 8) !default;
|
|
16440
16440
|
$calendar-view-height: ($calendar-cell-size * 7) !default;
|
|
16441
16441
|
$calendar-view-gap: map-get( $spacing, 4 ) !default;
|
|
16442
16442
|
|
|
@@ -31174,6 +31174,7 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
31174
31174
|
user-select: none;
|
|
31175
31175
|
position: absolute;
|
|
31176
31176
|
z-index: 2;
|
|
31177
|
+
overflow: hidden;
|
|
31177
31178
|
}
|
|
31178
31179
|
.k-spreadsheet-overflow {
|
|
31179
31180
|
position: absolute;
|
|
@@ -31333,6 +31334,9 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
31333
31334
|
position: relative;
|
|
31334
31335
|
}
|
|
31335
31336
|
|
|
31337
|
+
.k-spreadsheet-disabled-mask {
|
|
31338
|
+
position: absolute;
|
|
31339
|
+
}
|
|
31336
31340
|
|
|
31337
31341
|
// Selection
|
|
31338
31342
|
.k-spreadsheet .k-selection-wrapper {
|
|
@@ -31870,7 +31874,9 @@ $spreadsheet-drawing-anchor-bg: rgba( $selected-bg, .25 ) !default;
|
|
|
31870
31874
|
.k-spreadsheet-merged-cell {
|
|
31871
31875
|
background-color: $spreadsheet-bg;
|
|
31872
31876
|
}
|
|
31873
|
-
|
|
31877
|
+
.k-spreadsheet-disabled-mask {
|
|
31878
|
+
background-color: $spreadsheet-bg;
|
|
31879
|
+
}
|
|
31874
31880
|
|
|
31875
31881
|
// Selection
|
|
31876
31882
|
.k-spreadsheet .k-selection-full,
|
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.9.1-dev.
|
|
4
|
+
"version": "5.9.1-dev.2",
|
|
5
5
|
"author": "Progress",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"keywords": [
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"sass-build": "^1.0.0"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "b6b186f9fb09b89d7b2468e2786165e1c5c62ec2"
|
|
50
50
|
}
|
|
@@ -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: map-get( $spacing, 4 ) !default;
|
|
56
56
|
|
|
@@ -273,6 +273,7 @@
|
|
|
273
273
|
user-select: none;
|
|
274
274
|
position: absolute;
|
|
275
275
|
z-index: 2;
|
|
276
|
+
overflow: hidden;
|
|
276
277
|
}
|
|
277
278
|
.k-spreadsheet-overflow {
|
|
278
279
|
position: absolute;
|
|
@@ -432,6 +433,9 @@
|
|
|
432
433
|
position: relative;
|
|
433
434
|
}
|
|
434
435
|
|
|
436
|
+
.k-spreadsheet-disabled-mask {
|
|
437
|
+
position: absolute;
|
|
438
|
+
}
|
|
435
439
|
|
|
436
440
|
// Selection
|
|
437
441
|
.k-spreadsheet .k-selection-wrapper {
|