From 44e770aa0b58aa61907ade06a0a997e6f046b862 Mon Sep 17 00:00:00 2001 From: Nikhil Mohite Date: Fri, 17 Sep 2021 21:04:49 +0530 Subject: [PATCH] Updated query error row selection color as per dark theme style guide. Fixes #6723 --- docs/en_US/release_notes_6_0.rst | 1 + web/pgadmin/static/scss/resources/dark/_theme.variables.scss | 2 ++ 2 files changed, 3 insertions(+) diff --git a/docs/en_US/release_notes_6_0.rst b/docs/en_US/release_notes_6_0.rst index 70fbfdaff..44f35a5d6 100644 --- a/docs/en_US/release_notes_6_0.rst +++ b/docs/en_US/release_notes_6_0.rst @@ -25,4 +25,5 @@ Bug fixes | `Issue #3827 `_ - Ensure that in the Query History tab, query details should be scrollable. | `Issue #6712 `_ - Fixed an issue where collapse and expand arrows mismatch in case of nested IF. | `Issue #6713 `_ - Fixed an issue where the last message is not visible in the Debugger. +| `Issue #6723 `_ - Updated query error row selection color as per dark theme style guide. | `Issue #6724 `_ - Fixed an issue where the drop cascade button enables for Databases. diff --git a/web/pgadmin/static/scss/resources/dark/_theme.variables.scss b/web/pgadmin/static/scss/resources/dark/_theme.variables.scss index 2fa907b87..2c8534553 100644 --- a/web/pgadmin/static/scss/resources/dark/_theme.variables.scss +++ b/web/pgadmin/static/scss/resources/dark/_theme.variables.scss @@ -65,6 +65,8 @@ $alert-warning-color: $color-bg; $alert-header-fg: $color-fg; $table-bg: $color-gray-lighter; +// SET sql text selection background color. +$sql-editor-selection-bg: #536270; $color-editor-fg: #7dc9f1; $color-editor-keyword: #db7c74;