StepPlate: force description/remaining-time labels to black text
Both relied on the theme's default label color, which washed out against this dark theme - explicit color keeps them readable regardless. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_019qvu5giu7gvRCyEWzf2Vpx
This commit is contained in:
@@ -289,11 +289,11 @@ class StepPlate(QtWidgets.QFrame):
|
||||
self.led.setFixedSize(16, 16)
|
||||
|
||||
self.label_title = QtWidgets.QLabel("Step {}: {}".format(index + 1, step.get('descr') or ''))
|
||||
self.label_title.setStyleSheet("font-weight: bold;")
|
||||
self.label_title.setStyleSheet("font-weight: bold; color: black;")
|
||||
self.label_title.setWordWrap(True)
|
||||
|
||||
self.label_remaining = QtWidgets.QLabel("--:--")
|
||||
self.label_remaining.setStyleSheet("font-weight: bold;")
|
||||
self.label_remaining.setStyleSheet("font-weight: bold; color: black;")
|
||||
self.label_remaining.setAlignment(QtCore.Qt.AlignRight | QtCore.Qt.AlignVCenter)
|
||||
|
||||
self.label_target = QtWidgets.QLabel()
|
||||
|
||||
Reference in New Issue
Block a user