forked from Support/sp-hydra-veil-gui
18 lines
487 B
Python
Executable file
18 lines
487 B
Python
Executable file
MESSAGE_BOX_QSS = (
|
|
"QMessageBox { background-color: white; }"
|
|
"QMessageBox QLabel { color: black; }"
|
|
"QMessageBox QPushButton { color: black; padding: 5px 14px; }"
|
|
)
|
|
|
|
CONFIRM_BUTTON_QSS = "color: #2e7d32; font-weight: bold; padding: 5px 14px;"
|
|
|
|
|
|
def style_message_box(box):
|
|
box.setStyleSheet(MESSAGE_BOX_QSS)
|
|
|
|
|
|
def mark_confirm_button(button):
|
|
if button is None:
|
|
return
|
|
button.setText(f"✓ {button.text()}")
|
|
button.setStyleSheet(CONFIRM_BUTTON_QSS)
|