diff --git a/igniter/install_dialog.py b/igniter/install_dialog.py index 746437100a..1da8fd518e 100644 --- a/igniter/install_dialog.py +++ b/igniter/install_dialog.py @@ -179,16 +179,12 @@ class InstallDialog(QtWidgets.QDialog): # -------------------------------------------------------------------- main_label = QtWidgets.QLabel("Welcome to OpenPype", self) main_label.setWordWrap(True) - main_label.setStyleSheet("color: rgb(200, 200, 200);") + main_label.setObjectName("MainLabel") # Mongo box | OK button # -------------------------------------------------------------------- - - mongo_label = QtWidgets.QLabel( - """Enter URL for running MongoDB instance:""" - ) + mongo_label = QtWidgets.QLabel("Enter your Mongo URL:") mongo_label.setWordWrap(True) - mongo_label.setStyleSheet("color: rgb(150, 150, 150);") mongo_input = MongoUrlInput(self) mongo_input.setPlaceholderText( diff --git a/igniter/stylesheet.css b/igniter/stylesheet.css index 4dae3c27b4..092741cbd9 100644 --- a/igniter/stylesheet.css +++ b/igniter/stylesheet.css @@ -1,10 +1,11 @@ * { color: rgb(200, 200, 200); background-color: rgb(23, 23, 23); + font-size: 8pt; } QLabel { - color: rgb(200, 200, 200); + color: rgb(150, 150, 150); } QLineEdit { @@ -84,6 +85,10 @@ QMenu::item:selected { background-color: rgba(72, 200, 150, 63); } +#MainLabel { + color: rgb(200, 200, 200); +} + #Console { background-color: rgb(32, 32, 32); color: rgb(72, 200, 150);