Fixed an issue where the Foreground Color property of server dialog does not work. Fixes #6482

This commit is contained in:
Nikhil Mohite 2021-06-07 21:09:04 +05:30 committed by Akshay Joshi
parent 07eb541806
commit 5b12483416
2 changed files with 2 additions and 1 deletions

View File

@ -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.

View File

@ -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>';