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

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