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
commit 0a81dd5225
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 = '';
} }
} }