Merge pull request #5585 from Bwin4L/master

Fix token counter color on dark theme
This commit is contained in:
AUTOMATIC1111
2022-12-10 18:20:28 +03:00
committed by GitHub

View File

@@ -88,7 +88,7 @@ function checkBrackets(evt) {
if(counterElt.title != '') { if(counterElt.title != '') {
counterElt.style = 'color: #FF5555;'; counterElt.style = 'color: #FF5555;';
} else { } else {
counterElt.style = 'color: #000;'; counterElt.style = '';
} }
} }