mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where the Foreground Color property of server dialog does not work. Fixes #6482
This commit is contained in:
parent
07eb541806
commit
5b12483416
@ -27,3 +27,4 @@ Bug fixes
|
||||
|
||||
| `Issue #4203 <https://redmine.postgresql.org/issues/4203>`_ - Fixed the issue of renaming the database by another user.
|
||||
| `Issue #6478 <https://redmine.postgresql.org/issues/6478>`_ - Fixed duplicate SQL issue for tables with more than one partition.
|
||||
| `Issue #6482 <https://redmine.postgresql.org/issues/6482>`_ - Fixed an issue where the Foreground Color property of server dialog does not work.
|
||||
|
@ -949,7 +949,7 @@ define('pgadmin.browser.node', [
|
||||
style_tag += ' background: ' + bgcolor + '} \n';
|
||||
if (fgcolor) {
|
||||
style_tag += '.' + dynamic_class + ' .aciTreeText {';
|
||||
style_tag += ' color: ' + fgcolor + ';} \n';
|
||||
style_tag += ' color: ' + fgcolor + ' !important;} \n';
|
||||
}
|
||||
style_tag += '</style>';
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user