Ensure that query highlighting color in the query tool should be less intensive. Fixes #6754

This commit is contained in:
Rahul Shirsat
2021-10-12 14:30:29 +05:30
committed by Akshay Joshi
parent d81960a6eb
commit 2ced82c7b3
3 changed files with 8 additions and 0 deletions

View File

@@ -19,5 +19,6 @@ Housekeeping
Bug fixes
*********
| `Issue #6754 <https://redmine.postgresql.org/issues/6754>`_ - Ensure that query highlighting color in the query tool should be less intensive.
| `Issue #6797 <https://redmine.postgresql.org/issues/6797>`_ - Remove an extra blank line at the start of the SQL for function, procedure, and trigger function.
| `Issue #6828 <https://redmine.postgresql.org/issues/6828>`_ - Fixed an issue where the tree is not scrolling to the object selected from the search result.

View File

@@ -198,6 +198,8 @@ $color-editor-bracket: #737373 !default;
$color-editor-operator: $color-fg !default;
$color-editor-foldmarker: #0000FF !default;
$color-editor-activeline: #50B0F0 !default;
$color-editor-activeline-light: #EDF9FF !default;
$color-editor-activeline-border-color: #BCDEF3 !default;
$active-color: $color-primary !default;
$active-border: 3px solid $active-color !default;

View File

@@ -97,6 +97,11 @@ li.CodeMirror-hint-active {
color: $color-primary-fg;
}
.sql-editor .CodeMirror-activeline-background {
background: $color-editor-activeline-light !important;
border: 1px solid $color-editor-activeline-border-color;
}
.filter-container {
position: relative;
background-color: $color-bg;