18 lines
422 B
Python
18 lines
422 B
Python
def pushBtnStyle(color):
|
|
style = f"""
|
|
QPushButton {{
|
|
background-color: {color};
|
|
border-style: outset;
|
|
border-width: 1px;
|
|
border-radius: 5px;
|
|
border-color: white;
|
|
font: bold 10px;
|
|
min-width: 10em;
|
|
padding: 3px;
|
|
}}
|
|
QPushButton:pressed {{
|
|
background-color: rgb(220, 220, 220);
|
|
border-style: inset;
|
|
}}
|
|
"""
|
|
return style |