Minor colour tweaks for highlighted rows in the data editor. These are likely to be changed again when we overhaul and standardise the colouring, but at least now they're using colours from the style guide.

This commit is contained in:
Dave Page 2017-05-12 11:29:36 +01:00
parent 1f903ba231
commit dd318e679d

View File

@ -407,17 +407,17 @@ input.editor-checkbox:focus {
/* To highlight all newly inserted rows */
.grid-canvas .new_row {
background: #f3f2d8;
background: #dff0d7;
}
/* To highlight all the updated rows */
.grid-canvas .updated_row {
background: #c1c1c1;
background: #cccccc;
}
/* To highlight row at fault */
.grid-canvas .new_row.error, .grid-canvas .updated_row.error {
background: #e46b6b;
background: #f2dede;
}
/* Disabled row */