mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-16 10:15:24 -06:00
Fixed an issue where the current debug line is not visible in the 'Dark' theme. Fixes #6409
This commit is contained in:
parent
72f3730c34
commit
ac403d0dfa
@ -26,6 +26,7 @@ Bug fixes
|
||||
| `Issue #6377 <https://redmine.postgresql.org/issues/6377>`_ - Fixed an issue where schema diff does not create DROP DEFAULT statement for columns.
|
||||
| `Issue #6385 <https://redmine.postgresql.org/issues/6385>`_ - Ensure that Backup and Restore should work on shared servers.
|
||||
| `Issue #6408 <https://redmine.postgresql.org/issues/6408>`_ - Fixed ModuleNotFoundError when running setup.py from outside of the root.
|
||||
| `Issue #6409 <https://redmine.postgresql.org/issues/6409>`_ - Fixed an issue where the current debug line is not visible in the 'Dark' theme.
|
||||
| `Issue #6413 <https://redmine.postgresql.org/issues/6413>`_ - Fixed an issue where duplicate columns are visible in the browser tree, which is owned by two sequences.
|
||||
| `Issue #6416 <https://redmine.postgresql.org/issues/6416>`_ - Added comment column in the properties panel for View and Materialized View collection node.
|
||||
| `Issue #6417 <https://redmine.postgresql.org/issues/6417>`_ - Fixed an issue where query editor is not being closed if the user clicks on the 'Don't Save' button.
|
||||
|
@ -174,7 +174,7 @@
|
||||
}
|
||||
|
||||
.CodeMirror-activeline-background {
|
||||
background: $color-danger-lighter !important;
|
||||
background: $color-editor-activeline !important;
|
||||
}
|
||||
|
||||
.CodeMirror-simplescroll-horizontal {
|
||||
|
@ -77,7 +77,7 @@ $color-editor-comment: #7fcc5c;
|
||||
$color-editor-bracket: #d6aaaa;
|
||||
$color-editor-operator: #d6aaaa;
|
||||
$color-editor-foldmarker: #0000FF !default;
|
||||
$color-editor-activeline: #50B0F0 !default;
|
||||
$color-editor-activeline: #323e43 !default;
|
||||
|
||||
$explain-sev-2-bg: #ded17e;
|
||||
$explain-sev-3-bg: #824d18;
|
||||
|
@ -96,7 +96,7 @@ $color-editor-comment: #FFAD65;
|
||||
$color-editor-bracket: #D6AAAA;
|
||||
$color-editor-operator: $color-fg;
|
||||
$color-editor-foldmarker: #FFFFFF;
|
||||
$color-editor-activeline: #50B0F0;
|
||||
$color-editor-activeline: #063057;
|
||||
|
||||
$active-color: $color-fg;
|
||||
$active-border: 3px solid $color-primary;
|
||||
|
@ -1,6 +1,3 @@
|
||||
.debugger-container .CodeMirror-activeline-background {
|
||||
background: $color-editor-activeline;
|
||||
}
|
||||
|
||||
/* To make font same as Query tool in messages tab */
|
||||
.messages {
|
||||
|
@ -59,10 +59,6 @@
|
||||
right: 0;
|
||||
}
|
||||
|
||||
#editor-panel .CodeMirror-activeline-background {
|
||||
background: $color-primary-light;
|
||||
}
|
||||
|
||||
|
||||
.ajs-body .warn-icon {
|
||||
color: $color-warning;
|
||||
|
Loading…
Reference in New Issue
Block a user