@progress/kendo-theme-classic 9.0.1-dev.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 +16 -123
- 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
|
@@ -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;
|
|
@@ -49214,7 +49214,8 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
49214
49214
|
}
|
|
49215
49215
|
}
|
|
49216
49216
|
|
|
49217
|
-
.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 {
|
|
49218
49219
|
content: "";
|
|
49219
49220
|
width: 100%;
|
|
49220
49221
|
height: 100%;
|
|
@@ -50063,7 +50064,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
50063
50064
|
background-color: $kendo-grid-sticky-bg;
|
|
50064
50065
|
}
|
|
50065
50066
|
|
|
50066
|
-
|
|
50067
|
+
&.k-grid-row-sticky > .k-table-td {
|
|
50067
50068
|
border-top-color: $kendo-grid-sticky-border;
|
|
50068
50069
|
border-bottom-color: $kendo-grid-sticky-border;
|
|
50069
50070
|
background-color: $kendo-grid-sticky-bg;
|
|
@@ -50071,6 +50072,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
50071
50072
|
|
|
50072
50073
|
&.k-table-alt-row {
|
|
50073
50074
|
.k-grid-content-sticky,
|
|
50075
|
+
&.k-grid-row-sticky > .k-table-td,
|
|
50074
50076
|
.k-grid-row-sticky {
|
|
50075
50077
|
@include fill( $bg: $kendo-grid-sticky-alt-bg );
|
|
50076
50078
|
}
|
|
@@ -50078,6 +50080,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
50078
50080
|
|
|
50079
50081
|
// Selected state
|
|
50080
50082
|
&.k-table-row.k-selected td.k-grid-content-sticky,
|
|
50083
|
+
&.k-table-row.k-selected.k-grid-row-sticky > .k-table-td,
|
|
50081
50084
|
&.k-table-row.k-selected .k-table-td.k-grid-row-sticky,
|
|
50082
50085
|
&.k-table-row td.k-grid-content-sticky.k-selected,
|
|
50083
50086
|
&.k-table-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
@@ -50093,6 +50096,7 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
50093
50096
|
}
|
|
50094
50097
|
|
|
50095
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,
|
|
50096
50100
|
&.k-selected.k-table-alt-row .k-table-td.k-grid-row-sticky,
|
|
50097
50101
|
&.k-table-alt-row td.k-grid-content-sticky.k-selected,
|
|
50098
50102
|
&.k-table-alt-row .k-table-td.k-grid-content-sticky.k-selected {
|
|
@@ -50111,8 +50115,10 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
50111
50115
|
// Hovered state
|
|
50112
50116
|
&:hover .k-grid-content-sticky,
|
|
50113
50117
|
&:hover .k-grid-row-sticky,
|
|
50118
|
+
&:hover.k-grid-row-sticky > .k-table-td,
|
|
50114
50119
|
&.k-hover .k-grid-content-sticky,
|
|
50115
|
-
&.k-hover .k-grid-row-sticky
|
|
50120
|
+
&.k-hover .k-grid-row-sticky,
|
|
50121
|
+
&.k-hover.k-grid-row-sticky > .k-table-td {
|
|
50116
50122
|
background-color: $kendo-grid-sticky-hover-bg;
|
|
50117
50123
|
}
|
|
50118
50124
|
|
|
@@ -50120,8 +50126,10 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
50120
50126
|
// Selected hover
|
|
50121
50127
|
&.k-selected:hover td.k-grid-content-sticky,
|
|
50122
50128
|
&.k-selected:hover .k-table-td.k-grid-row-sticky,
|
|
50129
|
+
&.k-selected:hover.k-grid-row-sticky > .k-table-td,
|
|
50123
50130
|
&.k-selected.k-hover td.k-grid-content-sticky,
|
|
50124
50131
|
&.k-selected.k-hover .k-table-td.k-grid-row-sticky,
|
|
50132
|
+
&.k-selected.k-hover.k-grid-row-sticky > .k-table-td,
|
|
50125
50133
|
&:hover td.k-grid-content-sticky.k-selected,
|
|
50126
50134
|
&.k-hover td.k-grid-content-sticky.k-selected,
|
|
50127
50135
|
&:hover .k-table-td.k-grid-content-sticky.k-selected,
|
|
@@ -50138,121 +50146,6 @@ $kendo-grid-row-resizer-height: k-spacing(0.5) !default;
|
|
|
50138
50146
|
}
|
|
50139
50147
|
}
|
|
50140
50148
|
|
|
50141
|
-
kendo-grid.k-grid {
|
|
50142
|
-
.k-grid-content-sticky {
|
|
50143
|
-
border-top-color: $kendo-grid-header-border;
|
|
50144
|
-
border-left-color: $kendo-grid-sticky-border;
|
|
50145
|
-
border-right-color: $kendo-grid-sticky-border;
|
|
50146
|
-
background-color: $kendo-grid-sticky-bg;
|
|
50147
|
-
|
|
50148
|
-
&:hover,
|
|
50149
|
-
&.k-hover {
|
|
50150
|
-
background-color: $kendo-grid-sticky-hover-bg;
|
|
50151
|
-
}
|
|
50152
|
-
}
|
|
50153
|
-
|
|
50154
|
-
.k-grid-row-sticky {
|
|
50155
|
-
td,
|
|
50156
|
-
.k-table-td {
|
|
50157
|
-
border-top-color: $kendo-grid-sticky-border;
|
|
50158
|
-
border-bottom-color: $kendo-grid-sticky-border;
|
|
50159
|
-
background-color: $kendo-grid-sticky-bg;
|
|
50160
|
-
}
|
|
50161
|
-
|
|
50162
|
-
&:hover td,
|
|
50163
|
-
&.k-hover td,
|
|
50164
|
-
&:hover .k-table-td,
|
|
50165
|
-
&.k-hover .k-table-td {
|
|
50166
|
-
background-color: $kendo-grid-sticky-hover-bg;
|
|
50167
|
-
}
|
|
50168
|
-
}
|
|
50169
|
-
|
|
50170
|
-
.k-table-alt-row .k-grid-content-sticky,
|
|
50171
|
-
.k-grid-row-sticky.k-table-alt-row td,
|
|
50172
|
-
.k-grid-row-sticky.k-table-alt-row .k-table-td {
|
|
50173
|
-
@include fill( $bg: $kendo-grid-sticky-alt-bg );
|
|
50174
|
-
}
|
|
50175
|
-
|
|
50176
|
-
// Selected state
|
|
50177
|
-
.k-table-row.k-selected .k-grid-content-sticky,
|
|
50178
|
-
.k-selected.k-grid-row-sticky td,
|
|
50179
|
-
.k-grid-row-sticky td.k-selected,
|
|
50180
|
-
.k-selected.k-grid-row-sticky .k-table-td,
|
|
50181
|
-
.k-grid-row-sticky .k-table-td.k-selected,
|
|
50182
|
-
.k-selected.k-grid-content-sticky {
|
|
50183
|
-
@if($kendo-enable-color-system) {
|
|
50184
|
-
@include fill( $bg: $kendo-grid-sticky-bg );
|
|
50185
|
-
|
|
50186
|
-
&::before {
|
|
50187
|
-
@include fill( $bg: $kendo-grid-sticky-selected-bg );
|
|
50188
|
-
}
|
|
50189
|
-
} @else {
|
|
50190
|
-
@include fill( $bg: $kendo-grid-sticky-selected-bg );
|
|
50191
|
-
}
|
|
50192
|
-
}
|
|
50193
|
-
|
|
50194
|
-
.k-table-row.k-selected.k-table-alt-row .k-grid-content-sticky,
|
|
50195
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky td,
|
|
50196
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky .k-table-td,
|
|
50197
|
-
.k-table-alt-row .k-selected.k-grid-content-sticky {
|
|
50198
|
-
@if($kendo-enable-color-system) {
|
|
50199
|
-
@include fill( $bg: $kendo-grid-sticky-alt-bg );
|
|
50200
|
-
|
|
50201
|
-
&::before {
|
|
50202
|
-
@include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
|
|
50203
|
-
}
|
|
50204
|
-
} @else {
|
|
50205
|
-
@include fill( $bg: $kendo-grid-sticky-selected-alt-bg );
|
|
50206
|
-
}
|
|
50207
|
-
}
|
|
50208
|
-
|
|
50209
|
-
// Hover state
|
|
50210
|
-
.k-table-row:hover .k-grid-content-sticky,
|
|
50211
|
-
.k-table-row.k-hover .k-grid-content-sticky,
|
|
50212
|
-
.k-grid-row-sticky:hover td,
|
|
50213
|
-
.k-grid-row-sticky.k-hover td,
|
|
50214
|
-
.k-grid-row-sticky.k-table-alt-row:hover td,
|
|
50215
|
-
.k-grid-row-sticky.k-table-alt-row.k-hover td,
|
|
50216
|
-
.k-grid-row-sticky:hover .k-table-td,
|
|
50217
|
-
.k-grid-row-sticky.k-hover .k-table-td,
|
|
50218
|
-
.k-grid-row-sticky.k-table-alt-row:hover .k-table-td,
|
|
50219
|
-
.k-grid-row-sticky.k-table-alt-row.k-hover .k-table-td,
|
|
50220
|
-
.k-table-alt-row:hover .k-grid-content-sticky,
|
|
50221
|
-
.k-table-alt-row.k-hover .k-grid-content-sticky {
|
|
50222
|
-
background-color: $kendo-grid-sticky-hover-bg;
|
|
50223
|
-
}
|
|
50224
|
-
|
|
50225
|
-
// Selected + Hover
|
|
50226
|
-
.k-table-row.k-selected:hover .k-grid-content-sticky,
|
|
50227
|
-
.k-table-row.k-selected.k-hover .k-grid-content-sticky,
|
|
50228
|
-
.k-selected.k-grid-row-sticky:hover td,
|
|
50229
|
-
.k-selected.k-grid-row-sticky.k-hover td,
|
|
50230
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky:hover td,
|
|
50231
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky.k-hover td,
|
|
50232
|
-
.k-selected.k-grid-row-sticky:hover .k-table-td,
|
|
50233
|
-
.k-selected.k-grid-row-sticky.k-hover .k-table-td,
|
|
50234
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky:hover .k-table-td,
|
|
50235
|
-
.k-selected.k-table-alt-row.k-grid-row-sticky.k-hover .k-table-td,
|
|
50236
|
-
.k-table-row.k-selected.k-table-alt-row:hover .k-grid-content-sticky,
|
|
50237
|
-
.k-table-row.k-selected.k-table-alt-row.k-hover .k-grid-content-sticky,
|
|
50238
|
-
.k-grid-row-sticky:hover td.k-selected,
|
|
50239
|
-
.k-grid-row-sticky.k-hover td.k-selected,
|
|
50240
|
-
.k-grid-row-sticky:hover .k-table-td.k-selected,
|
|
50241
|
-
.k-grid-row-sticky.k-hover .k-table-td.k-selected,
|
|
50242
|
-
.k-table-row:hover .k-grid-content-sticky.k-selected,
|
|
50243
|
-
.k-table-row.k-hover .k-grid-content-sticky.k-selected {
|
|
50244
|
-
@if($kendo-enable-color-system) {
|
|
50245
|
-
background-color: $kendo-grid-sticky-hover-bg;
|
|
50246
|
-
|
|
50247
|
-
&::before {
|
|
50248
|
-
background-color: $kendo-grid-sticky-selected-hover-bg;
|
|
50249
|
-
}
|
|
50250
|
-
} @else {
|
|
50251
|
-
background-color: $kendo-grid-sticky-selected-hover-bg;
|
|
50252
|
-
}
|
|
50253
|
-
}
|
|
50254
|
-
}
|
|
50255
|
-
|
|
50256
50149
|
.k-grouping-row {
|
|
50257
50150
|
.k-grid-content-sticky {
|
|
50258
50151
|
@include fill( $bg: $kendo-grid-sticky-header-bg );
|
|
@@ -55723,7 +55616,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
|
55723
55616
|
|
|
55724
55617
|
// Toolbar
|
|
55725
55618
|
.k-editor-toolbar {
|
|
55726
|
-
border-width: 0 0 $kendo-toolbar-border-width
|
|
55619
|
+
border-width: 0 0 $kendo-toolbar-border-width;
|
|
55727
55620
|
flex-shrink: 0;
|
|
55728
55621
|
|
|
55729
55622
|
.k-editor-export {
|
|
@@ -55978,7 +55871,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
|
55978
55871
|
|
|
55979
55872
|
// Filebrowser toolbar
|
|
55980
55873
|
.k-filebrowser-toolbar {
|
|
55981
|
-
margin: k-spacing(4) 0 0
|
|
55874
|
+
margin: k-spacing(4) 0 0;
|
|
55982
55875
|
}
|
|
55983
55876
|
|
|
55984
55877
|
.k-upload {
|
|
@@ -56005,7 +55898,7 @@ $kendo-editor-selectednode-outline-color: #88ccff !default;
|
|
|
56005
55898
|
flex-flow: row wrap;
|
|
56006
55899
|
height: 390px;
|
|
56007
55900
|
max-height: 50vh;
|
|
56008
|
-
margin: 0 0 k-spacing(4)
|
|
55901
|
+
margin: 0 0 k-spacing(4);
|
|
56009
55902
|
padding-block: $kendo-padding-md-y;
|
|
56010
55903
|
padding-inline: $kendo-padding-md-x;
|
|
56011
55904
|
border-top-width: 0;
|