Files
bearhub/bauh/view/qt/css.py
2020-04-27 18:46:21 -03:00

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;
}
"""