Fix QTextEdit text color in Windows dark mode
Explicitly set color and background on QTextEdit so blacklist text box is readable in dark theme.
This commit is contained in:
parent
0e6307f699
commit
25cfc50f25
@ -1548,10 +1548,12 @@ def _apply_windows_dark_mode(app: QApplication) -> None:
|
|||||||
border: 1px solid #555;
|
border: 1px solid #555;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
}
|
}
|
||||||
QLineEdit {
|
QLineEdit, QTextEdit {
|
||||||
border: 1px solid #555;
|
border: 1px solid #555;
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
|
color: #fff;
|
||||||
|
background-color: #191919;
|
||||||
}
|
}
|
||||||
QScrollBar:vertical {
|
QScrollBar:vertical {
|
||||||
background: #252525;
|
background: #252525;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user