32 lines
704 B
Python
32 lines
704 B
Python
FADER_STYLE = """
|
|
QSlider::groove:vertical {
|
|
background: #1e1e1e;
|
|
width: 8px;
|
|
border-radius: 4px;
|
|
}
|
|
QSlider::handle:vertical {
|
|
background: #bbbbbb;
|
|
border: 1px solid #222222;
|
|
height: 39px;
|
|
width: 24px;
|
|
margin: 0 -8px;
|
|
border-radius: 3px;
|
|
}
|
|
QSlider::handle:vertical:hover {
|
|
background: #dddddd;
|
|
border: 1px solid #111111;
|
|
}
|
|
"""
|
|
|
|
TITLE_STYLE = """
|
|
QLineEdit {
|
|
background-color: #000000;
|
|
border: none;
|
|
color: #ffffff;
|
|
font-weight: bold;
|
|
padding: 2px;
|
|
}
|
|
QLineEdit:focus {
|
|
border: 1px solid #555;
|
|
}
|
|
""" |