forked from Support/sp-hydra-veil-gui
22 lines
465 B
Python
22 lines
465 B
Python
|
|
|
|
forced_sync_popup_style = """
|
|
QPushButton {
|
|
background-color: #3498db;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
padding: 8px 20px;
|
|
font-weight: bold;
|
|
min-width: 80px;
|
|
}
|
|
QPushButton:hover {
|
|
background-color: #2980b9;
|
|
}
|
|
QPushButton[text="Cancel"] {
|
|
background-color: #e74c3c;
|
|
}
|
|
QPushButton[text="Cancel"]:hover {
|
|
background-color: #c0392b;
|
|
}
|
|
"""
|