Change the CodeMirror active line background colour to $color-danger-lighter so it doesn't conflict with the selection colour. Fixes #4073

This commit is contained in:
Dave Page 2019-03-13 16:04:26 +00:00
parent ab9a3a57ad
commit 870d373ced
2 changed files with 6 additions and 1 deletions

View File

@ -20,4 +20,5 @@ Bug fixes
| `Bug #3995 <https://redmine.postgresql.org/issues/3995>`_ - Avoid 'bogus varno' message from Postgres when viewing the SQL for a table with triggers.
| `Bug #4054 <https://redmine.postgresql.org/issues/4054>`_ - Handle resultsets with zero columns correctly in the Query Tool.
| `Bug #4060 <https://redmine.postgresql.org/issues/4060>`_ - Fix the latexpdf doc build.
| `Bug #4071 <https://redmine.postgresql.org/issues/4071>`_ - Ensure that Firefox prompts for a filename/location when downloading query results as a CSV file.
| `Bug #4071 <https://redmine.postgresql.org/issues/4071>`_ - Ensure that Firefox prompts for a filename/location when downloading query results as a CSV file.
| `Bug #4073 <https://redmine.postgresql.org/issues/4073>`_ - Change the CodeMirror active line background colour to $color-danger-lighter so it doesn't conflict with the selection colour.

View File

@ -156,3 +156,7 @@
.CodeMirror-focused .CodeMirror-selected {
background: $color-primary-light !important;
}
.CodeMirror-activeline-background {
background: $color-danger-lighter !important;
}