mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Highlighted the color of closing or opening parenthesis when user select them in CodeMirror. Fixes #4728
This commit is contained in:
committed by
Akshay Joshi
parent
bf2c001c87
commit
41ee58e79a
@@ -3,8 +3,8 @@
|
||||
}
|
||||
/* To override inbuilt Green color for matchingbracket */
|
||||
.cm-s-default .CodeMirror-matchingbracket {
|
||||
color: $color-gray-dark !important;
|
||||
background-color: $color-gray-lighter !important;
|
||||
color: $sql-bracket-match-fg !important;
|
||||
background-color: $sql-bracket-match-bg !important;
|
||||
}
|
||||
|
||||
.CodeMirror {
|
||||
|
||||
@@ -197,6 +197,8 @@ $sql-history-error-fg: $color-danger;
|
||||
$sql-hint-bg: $color-bg-theme;
|
||||
$sql-hint-active-bg: $color-primary;
|
||||
$sql-hint-active-fg: $white;
|
||||
$sql-bracket-match-fg: $color-gray-darker;
|
||||
$sql-bracket-match-bg: #f5d2af;
|
||||
|
||||
$negative-bg: $color-gray-light;
|
||||
$dialog-box-shadow: $box-shadow;
|
||||
|
||||
Reference in New Issue
Block a user