raise-common-lib 0.0.114 → 0.0.117
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/bundles/raise-common-lib.umd.js +5 -2
- package/bundles/raise-common-lib.umd.js.map +1 -1
- package/bundles/raise-common-lib.umd.min.js +1 -1
- package/bundles/raise-common-lib.umd.min.js.map +1 -1
- package/esm2015/lib/layout/nav-card-group/index.component.js +1 -1
- package/esm2015/lib/layout/page-tab/index.component.js +5 -2
- package/esm5/lib/layout/nav-card-group/index.component.js +1 -1
- package/esm5/lib/layout/page-tab/index.component.js +5 -2
- package/fesm2015/raise-common-lib.js +5 -2
- package/fesm2015/raise-common-lib.js.map +1 -1
- package/fesm5/raise-common-lib.js +5 -2
- package/fesm5/raise-common-lib.js.map +1 -1
- package/package.json +1 -1
- package/raise-common-lib.metadata.json +1 -1
- package/src/assets/style/reset/grid.scss +16 -16
|
@@ -220,18 +220,19 @@
|
|
|
220
220
|
padding: 2px 12px;
|
|
221
221
|
border-top: 0;
|
|
222
222
|
border-bottom: 1px solid #eaedf0;
|
|
223
|
+
color: var(--rs-text-color) !important;
|
|
224
|
+
font-family: Arial;
|
|
225
|
+
font-size: var(--rs-grid-row-cell-font-size);
|
|
226
|
+
font-weight: 400;
|
|
227
|
+
line-height: 24px;
|
|
228
|
+
height: var(--rs-grid-row-height) !important;
|
|
229
|
+
&.e-updatedtd {
|
|
230
|
+
background-color: #edf5ff; // selected bg
|
|
231
|
+
}
|
|
223
232
|
&.e-leftfreeze {
|
|
224
233
|
border-right: none;
|
|
225
234
|
border-left: none;
|
|
226
235
|
}
|
|
227
|
-
&:not(.e-editedbatchcell):not(.e-updatedtd) {
|
|
228
|
-
color: var(--rs-text-color);
|
|
229
|
-
font-family: Arial;
|
|
230
|
-
font-size: var(--rs-grid-row-cell-font-size);
|
|
231
|
-
font-weight: 400;
|
|
232
|
-
line-height: 24px;
|
|
233
|
-
height: var(--rs-grid-row-height) !important;
|
|
234
|
-
}
|
|
235
236
|
&.e-active {
|
|
236
237
|
background-color: #edf5ff; // selected bg
|
|
237
238
|
&.e-gridchkbox {
|
|
@@ -358,16 +359,15 @@
|
|
|
358
359
|
.e-updatedtd
|
|
359
360
|
):not(.e-indentcell) {
|
|
360
361
|
background-color: var(--rs-grid-row-hover-bg); // hover bg
|
|
361
|
-
|
|
362
362
|
}
|
|
363
363
|
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
364
|
+
td.e-active.e-leftfreeze:not(.e-updatedtd),
|
|
365
|
+
td.e-active.e-unfreeze:not(.e-updatedtd),
|
|
366
|
+
td.e-active.e-rightfreeze:not(.e-updatedtd),
|
|
367
|
+
td.e-active.e-fixedfreeze:not(.e-updatedtd),
|
|
368
|
+
.e-columnselection.e-leftfreeze:not(.e-updatedtd),
|
|
369
|
+
.e-columnselection.e-unfreeze:not(.e-updatedtd),
|
|
370
|
+
.e-columnselection.e-rightfreeze:not(.e-updatedtd),
|
|
371
371
|
.e-columnselection.e-fixedfreeze:not(.e-updatedtd) {
|
|
372
372
|
background-color: #edf5ff; // selected bg
|
|
373
373
|
}
|