@progress/kendo-theme-classic 9.0.0 → 9.0.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 +1 -1
- package/dist/all.scss +27 -130
- package/dist/classic-green-dark.css +1 -1
- package/dist/classic-green.css +1 -1
- package/dist/classic-lavender-dark.css +1 -1
- package/dist/classic-lavender.css +1 -1
- package/dist/classic-main-dark.css +1 -1
- package/dist/classic-main.css +1 -1
- package/dist/classic-metro-dark.css +1 -1
- package/dist/classic-metro.css +1 -1
- package/dist/classic-moonlight.css +1 -1
- package/dist/classic-opal-dark.css +1 -1
- package/dist/classic-opal.css +1 -1
- package/dist/classic-silver-dark.css +1 -1
- package/dist/classic-silver.css +1 -1
- package/dist/classic-uniform.css +1 -1
- package/lib/swatches/classic-green-dark.json +1 -1
- package/lib/swatches/classic-green.json +1 -1
- package/lib/swatches/classic-lavender-dark.json +1 -1
- package/lib/swatches/classic-lavender.json +1 -1
- package/lib/swatches/classic-main-dark.json +1 -1
- package/lib/swatches/classic-main.json +1 -1
- package/lib/swatches/classic-metro-dark.json +1 -1
- package/lib/swatches/classic-metro.json +1 -1
- package/lib/swatches/classic-moonlight.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/lib/swatches/classic-uniform.json +1 -1
- package/package.json +5 -5
package/dist/all.scss
CHANGED
|
@@ -12466,8 +12466,8 @@ $kendo-utils: (
|
|
|
12466
12466
|
/// @group height
|
|
12467
12467
|
/// @contextType css
|
|
12468
12468
|
|
|
12469
|
-
/// This is equivalent to `
|
|
12470
|
-
/// @example
|
|
12469
|
+
/// This is equivalent to `height: 100%;`.
|
|
12470
|
+
/// @example height: 100%;
|
|
12471
12471
|
/// @name .k-h-full
|
|
12472
12472
|
/// @group height
|
|
12473
12473
|
/// @contextType css
|
|
@@ -12636,8 +12636,8 @@ $kendo-utils: (
|
|
|
12636
12636
|
/// @group width
|
|
12637
12637
|
/// @contextType css
|
|
12638
12638
|
|
|
12639
|
-
/// This is equivalent to `
|
|
12640
|
-
/// @example
|
|
12639
|
+
/// This is equivalent to `width: 100%;`.
|
|
12640
|
+
/// @example width: 100%;
|
|
12641
12641
|
/// @name .k-w-full
|
|
12642
12642
|
/// @group width
|
|
12643
12643
|
/// @contextType css
|
|
@@ -26166,7 +26166,7 @@ $kendo-form-sizes: (
|
|
|
26166
26166
|
|
|
26167
26167
|
|
|
26168
26168
|
.k-edit-label {
|
|
26169
|
-
margin: 0 0 k-spacing(4)
|
|
26169
|
+
margin: 0 0 k-spacing(4);
|
|
26170
26170
|
// TODO: do we need the input variable?
|
|
26171
26171
|
padding: calc( #{$kendo-input-padding-y} + #{$kendo-input-border-width} ) 0;
|
|
26172
26172
|
width: 30%;
|
|
@@ -26176,7 +26176,7 @@ $kendo-form-sizes: (
|
|
|
26176
26176
|
clear: both;
|
|
26177
26177
|
}
|
|
26178
26178
|
.k-edit-field {
|
|
26179
|
-
margin: 0 0 k-spacing(4)
|
|
26179
|
+
margin: 0 0 k-spacing(4);
|
|
26180
26180
|
width: 65%;
|
|
26181
26181
|
float: right;
|
|
26182
26182
|
clear: right;
|
|
@@ -38905,10 +38905,8 @@ $_kendo-module-meta: (
|
|
|
38905
38905
|
overflow: hidden;
|
|
38906
38906
|
cursor: default;
|
|
38907
38907
|
flex: 1;
|
|
38908
|
-
display: flex;
|
|
38909
|
-
flex-flow: row nowrap;
|
|
38910
38908
|
|
|
38911
|
-
|
|
38909
|
+
&:empty::before {
|
|
38912
38910
|
content: "\200b";
|
|
38913
38911
|
}
|
|
38914
38912
|
}
|
|
@@ -49216,7 +49214,8 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
49216
49214
|
}
|
|
49217
49215
|
}
|
|
49218
49216
|
|
|
49219
|
-
.k-master-row .k-grid-content-sticky::before
|
|
49217
|
+
.k-master-row .k-grid-content-sticky::before,
|
|
49218
|
+
.k-master-row.k-grid-row-sticky .k-table-td::before {
|
|
49220
49219
|
content: "";
|
|
49221
49220
|
width: 100%;
|
|
49222
49221
|
height: 100%;
|
|
@@ -50065,7 +50064,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
50065
50064
|
background-color: $kendo-grid-sticky-bg;
|
|
50066
50065
|
}
|
|
50067
50066
|
|
|
50068
|
-
|
|
50067
|
+
&.k-grid-row-sticky > .k-table-td {
|
|
50069
50068
|
border-top-color: $kendo-grid-sticky-border;
|
|
50070
50069
|
border-bottom-color: $kendo-grid-sticky-border;
|
|
50071
50070
|
background-color: $kendo-grid-sticky-bg;
|
|
@@ -50073,6 +50072,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
50073
50072
|
|
|
50074
50073
|
&.k-table-alt-row {
|
|
50075
50074
|
.k-grid-content-sticky,
|
|
50075
|
+
&.k-grid-row-sticky > .k-table-td,
|
|
50076
50076
|
.k-grid-row-sticky {
|
|
50077
50077
|
@include fill( $bg: $kendo-grid-sticky-alt-bg );
|
|
50078
50078
|
}
|
|
@@ -50080,6 +50080,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
50080
50080
|
|
|
50081
50081
|
// Selected state
|
|
50082
50082
|
&.k-table-row.k-selected td.k-grid-content-sticky,
|
|
50083
|
+
&.k-table-row.k-selected.k-grid-row-sticky > .k-table-td,
|
|
50083
50084
|
&.k-table-row.k-selected .k-table-td.k-grid-row-sticky,
|
|
50084
50085
|
&.k-table-row td.k-grid-content-sticky.k-selected,
|
|
50085
50086
|
&.k-table-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
@@ -50095,6 +50096,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
50095
50096
|
}
|
|
50096
50097
|
|
|
50097
50098
|
&.k-selected.k-table-alt-row td.k-grid-content-sticky,
|
|
50099
|
+
&.k-selected.k-table-alt-row.k-grid-row-sticky > .k-table-td,
|
|
50098
50100
|
&.k-selected.k-table-alt-row .k-table-td.k-grid-row-sticky,
|
|
50099
50101
|
&.k-table-alt-row td.k-grid-content-sticky.k-selected,
|
|
50100
50102
|
&.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
@@ -50113,8 +50115,10 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
50113
50115
|
// Hovered state
|
|
50114
50116
|
&:hover .k-grid-content-sticky,
|
|
50115
50117
|
&:hover .k-grid-row-sticky,
|
|
50118
|
+
&:hover.k-grid-row-sticky > .k-table-td,
|
|
50116
50119
|
&.k-hover .k-grid-content-sticky,
|
|
50117
|
-
&.k-hover .k-grid-row-sticky
|
|
50120
|
+
&.k-hover .k-grid-row-sticky,
|
|
50121
|
+
&.k-hover.k-grid-row-sticky > .k-table-td {
|
|
50118
50122
|
background-color: $kendo-grid-sticky-hover-bg;
|
|
50119
50123
|
}
|
|
50120
50124
|
|
|
@@ -50122,8 +50126,10 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
50122
50126
|
// Selected hover
|
|
50123
50127
|
&.k-selected:hover td.k-grid-content-sticky,
|
|
50124
50128
|
&.k-selected:hover .k-table-td.k-grid-row-sticky,
|
|
50129
|
+
&.k-selected:hover.k-grid-row-sticky > .k-table-td,
|
|
50125
50130
|
&.k-selected.k-hover td.k-grid-content-sticky,
|
|
50126
50131
|
&.k-selected.k-hover .k-table-td.k-grid-row-sticky,
|
|
50132
|
+
&.k-selected.k-hover.k-grid-row-sticky > .k-table-td,
|
|
50127
50133
|
&:hover td.k-grid-content-sticky.k-selected,
|
|
50128
50134
|
&.k-hover td.k-grid-content-sticky.k-selected,
|
|
50129
50135
|
&:hover .k-table-td.k-grid-content-sticky.k-selected,
|
|
@@ -50140,121 +50146,6 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
50140
50146
|
}
|
|
50141
50147
|
}
|
|
50142
50148
|
|
|
50143
|
-
kendo-grid.k-grid {
|
|
50144
|
-
.k-grid-content-sticky {
|
|
50145
|
-
border-top-color: $kendo-grid-header-border;
|
|
50146
|
-
border-left-color: $kendo-grid-sticky-border;
|
|
50147
|
-
border-right-color: $kendo-grid-sticky-border;
|
|
50148
|
-
background-color: $kendo-grid-sticky-bg;
|
|
50149
|
-
|
|
50150
|
-
&:hover,
|
|
50151
|
-
&.k-hover {
|
|
50152
|
-
background-color: $kendo-grid-sticky-hover-bg;
|
|
50153
|
-
}
|
|
50154
|
-
}
|
|
50155
|
-
|
|
50156
|
-
.k-grid-row-sticky {
|
|
50157
|
-
td,
|
|
50158
|
-
.k-table-td {
|
|
50159
|
-
border-top-color: $kendo-grid-sticky-border;
|
|
50160
|
-
border-bottom-color: $kendo-grid-sticky-border;
|
|
50161
|
-
background-color: $kendo-grid-sticky-bg;
|
|
50162
|
-
}
|
|
50163
|
-
|
|
50164
|
-
&:hover td,
|
|
50165
|
-
&.k-hover td,
|
|
50166
|
-
&:hover .k-table-td,
|
|
50167
|
-
&.k-hover .k-table-td {
|
|
50168
|
-
background-color: $kendo-grid-sticky-hover-bg;
|
|
50169
|
-
}
|
|
50170
|
-
}
|
|
50171
|
-
|
|
50172
|
-
.k-table-alt-row .k-grid-content-sticky,
|
|
50173
|
-
.k-grid-row-sticky.k-table-alt-row td,
|
|
50174
|
-
.k-grid-row-sticky.k-table-alt-row .k-table-td {
|
|
50175
|
-
@include fill( $bg: $kendo-grid-sticky-alt-bg );
|
|
50176
|
-
}
|
|
50177
|
-
|
|
50178
|
-
// Selected state
|
|
50179
|
-
.k-table-row.k-selected .k-grid-content-sticky,
|
|
50180
|
-
.k-selected.k-grid-row-sticky td,
|
|
50181
|
-
.k-grid-row-sticky td.k-selected,
|
|
50182
|
-
.k-selected.k-grid-row-sticky .k-table-td,
|
|
50183
|
-
.k-grid-row-sticky .k-table-td.k-selected,
|
|
50184
|
-
.k-selected.k-grid-content-sticky {
|
|
50185
|
-
@if($kendo-enable-color-system) {
|
|
50186
|
-
@include fill( $bg: $kendo-grid-sticky-bg );
|
|
50187
|
-
|
|
50188
|
-
&::before {
|
|
50189
|
-
@include fill( $bg: $kendo-grid-sticky-selected-bg );
|
|
50190
|
-
}
|
|
50191
|
-
} @else {
|
|
50192
|
-
@include fill( $bg: $kendo-grid-sticky-selected-bg );
|
|
50193
|
-
}
|
|
50194
|
-
}
|
|
50195
|
-
|
|
50196
|
-
.k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
|
|
50197
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky td,
|
|
50198
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
|
|
50199
|
-
.k-table-alt-row .k-selected.k-grid-content-sticky {
|
|
50200
|
-
@if($kendo-enable-color-system) {
|
|
50201
|
-
@include fill( $bg: $kendo-grid-sticky-alt-bg );
|
|
50202
|
-
|
|
50203
|
-
&::before {
|
|
50204
|
-
@include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
|
|
50205
|
-
}
|
|
50206
|
-
} @else {
|
|
50207
|
-
@include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
|
|
50208
|
-
}
|
|
50209
|
-
}
|
|
50210
|
-
|
|
50211
|
-
// Hover state
|
|
50212
|
-
.k-table-row:hover .k-grid-content-sticky,
|
|
50213
|
-
.k-table-row.k-hover .k-grid-content-sticky,
|
|
50214
|
-
.k-grid-row-sticky:hover td,
|
|
50215
|
-
.k-grid-row-sticky.k-hover td,
|
|
50216
|
-
.k-grid-row-sticky.k-table-alt-row:hover td,
|
|
50217
|
-
.k-grid-row-sticky.k-table-alt-row.k-hover td,
|
|
50218
|
-
.k-grid-row-sticky:hover .k-table-td,
|
|
50219
|
-
.k-grid-row-sticky.k-hover .k-table-td,
|
|
50220
|
-
.k-grid-row-sticky.k-table-alt-row:hover .k-table-td,
|
|
50221
|
-
.k-grid-row-sticky.k-table-alt-row.k-hover .k-table-td,
|
|
50222
|
-
.k-table-alt-row:hover .k-grid-content-sticky,
|
|
50223
|
-
.k-table-alt-row.k-hover .k-grid-content-sticky {
|
|
50224
|
-
background-color: $kendo-grid-sticky-hover-bg;
|
|
50225
|
-
}
|
|
50226
|
-
|
|
50227
|
-
// Selected + Hover
|
|
50228
|
-
.k-table-row.k-selected:hover .k-grid-content-sticky,
|
|
50229
|
-
.k-table-row.k-selected.k-hover .k-grid-content-sticky,
|
|
50230
|
-
.k-selected.k-grid-row-sticky:hover td,
|
|
50231
|
-
.k-selected.k-grid-row-sticky.k-hover td,
|
|
50232
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky:hover td,
|
|
50233
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky.k-hover td,
|
|
50234
|
-
.k-selected.k-grid-row-sticky:hover .k-table-td,
|
|
50235
|
-
.k-selected.k-grid-row-sticky.k-hover .k-table-td,
|
|
50236
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky:hover .k-table-td,
|
|
50237
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky.k-hover .k-table-td,
|
|
50238
|
-
.k-table-row.k-selected.k-table-alt-row:hover .k-grid-content-sticky,
|
|
50239
|
-
.k-table-row.k-selected.k-table-alt-row.k-hover .k-grid-content-sticky,
|
|
50240
|
-
.k-grid-row-sticky:hover td.k-selected,
|
|
50241
|
-
.k-grid-row-sticky.k-hover td.k-selected,
|
|
50242
|
-
.k-grid-row-sticky:hover .k-table-td.k-selected,
|
|
50243
|
-
.k-grid-row-sticky.k-hover .k-table-td.k-selected,
|
|
50244
|
-
.k-table-row:hover .k-grid-content-sticky.k-selected,
|
|
50245
|
-
.k-table-row.k-hover .k-grid-content-sticky.k-selected {
|
|
50246
|
-
@if($kendo-enable-color-system) {
|
|
50247
|
-
background-color: $kendo-grid-sticky-hover-bg;
|
|
50248
|
-
|
|
50249
|
-
&::before {
|
|
50250
|
-
background-color: $kendo-grid-sticky-selected-hover-bg;
|
|
50251
|
-
}
|
|
50252
|
-
} @else {
|
|
50253
|
-
background-color: $kendo-grid-sticky-selected-hover-bg;
|
|
50254
|
-
}
|
|
50255
|
-
}
|
|
50256
|
-
}
|
|
50257
|
-
|
|
50258
50149
|
.k-grouping-row {
|
|
50259
50150
|
.k-grid-content-sticky {
|
|
50260
50151
|
@include fill( $bg: $kendo-grid-sticky-header-bg );
|
|
@@ -55634,6 +55525,12 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
|
55634
55525
|
visibility: hidden;
|
|
55635
55526
|
}
|
|
55636
55527
|
|
|
55528
|
+
// Resizable tables
|
|
55529
|
+
.k-editor-resize-wrap-element {
|
|
55530
|
+
display: inline-block;
|
|
55531
|
+
position: relative;
|
|
55532
|
+
}
|
|
55533
|
+
|
|
55637
55534
|
.k-editor-resize-handle {
|
|
55638
55535
|
width: $kendo-editor-resize-handle-size;
|
|
55639
55536
|
height: $kendo-editor-resize-handle-size;
|
|
@@ -55719,7 +55616,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
|
55719
55616
|
|
|
55720
55617
|
// Toolbar
|
|
55721
55618
|
.k-editor-toolbar {
|
|
55722
|
-
border-width: 0 0 $kendo-toolbar-border-width
|
|
55619
|
+
border-width: 0 0 $kendo-toolbar-border-width;
|
|
55723
55620
|
flex-shrink: 0;
|
|
55724
55621
|
|
|
55725
55622
|
.k-editor-export {
|
|
@@ -55974,7 +55871,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
|
55974
55871
|
|
|
55975
55872
|
// Filebrowser toolbar
|
|
55976
55873
|
.k-filebrowser-toolbar {
|
|
55977
|
-
margin: k-spacing(4) 0 0
|
|
55874
|
+
margin: k-spacing(4) 0 0;
|
|
55978
55875
|
}
|
|
55979
55876
|
|
|
55980
55877
|
.k-upload {
|
|
@@ -56001,7 +55898,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
|
56001
55898
|
flex-flow: row wrap;
|
|
56002
55899
|
height: 390px;
|
|
56003
55900
|
max-height: 50vh;
|
|
56004
|
-
margin: 0 0 k-spacing(4)
|
|
55901
|
+
margin: 0 0 k-spacing(4);
|
|
56005
55902
|
padding-block: $kendo-padding-md-y;
|
|
56006
55903
|
padding-inline: $kendo-padding-md-x;
|
|
56007
55904
|
border-top-width: 0;
|