mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
19 lines
443 B
Python
19 lines
443 B
Python
from bauh.view.qt.colors import GREEN
|
|
|
|
OK_BUTTON = """QPushButton { background: %s; color: white; font-weight: bold}
|
|
QPushButton:disabled { background-color: gray; }""" % GREEN
|
|
|
|
GROUP_BOX = """
|
|
QGroupBox {
|
|
font-weight: bold;
|
|
font-size: 12px;
|
|
border: 1px solid silver;
|
|
border-radius: 6px;
|
|
margin-top: 6px;
|
|
}
|
|
QGroupBox::title {
|
|
subcontrol-origin: margin;
|
|
left: 7px;
|
|
padding: 0px 5px 0px 5px;
|
|
}
|
|
""" |