Skip to content

Commit

Permalink
Hardcode text color to black in suggestor window
Browse files Browse the repository at this point in the history
  • Loading branch information
JHolba committed Feb 8, 2024
1 parent dddf883 commit 7146cf9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ert/gui/suggestor/suggestor.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def __init__(
self.setWindowTitle("ERT")
data_widget = QWidget(parent=self)
self.__layout.addWidget(data_widget)
self.setStyleSheet(f"background-color: {LIGHT_GREY};")
self.setStyleSheet(f"background-color: {LIGHT_GREY}; color: black")
self.__layout.setContentsMargins(32, 47, 32, 16)
self.__layout.setSpacing(32)

Expand Down

0 comments on commit 7146cf9

Please sign in to comment.