67 lines
1.5 KiB
CSS
67 lines
1.5 KiB
CSS
#playlist {
|
|
background-color: %palette-base;
|
|
alternate-background-color: %palette-alternate-base;
|
|
}
|
|
|
|
#playlist[default_background_enabled = "true"] {
|
|
background-image: url(:pictures/strawberry-faded.png);
|
|
background-attachment: fixed;
|
|
background-position: bottom right;
|
|
background-repeat: none;
|
|
background-clip: content;
|
|
}
|
|
|
|
#playlist[strawbs_background_enabled = "true"] {
|
|
background-image: url(:pictures/strawbs.png);
|
|
background-attachment: fixed;
|
|
background-position: bottom right;
|
|
background-repeat: none;
|
|
background-clip: content;
|
|
}
|
|
|
|
#context-layout-container {
|
|
background-color: %palette-base;
|
|
}
|
|
|
|
#context-widget-scrollarea {
|
|
background-color: %palette-base;
|
|
}
|
|
|
|
#context-layout-scrollarea {
|
|
background-color: %palette-base;
|
|
}
|
|
|
|
#context-scrollarea {
|
|
background-color: %palette-base;
|
|
}
|
|
|
|
QToolButton {
|
|
border: 2px solid transparent;
|
|
border-radius: 3px;
|
|
padding: 1px;
|
|
}
|
|
|
|
QToolButton:hover {
|
|
border: 2px solid %palette-highlight;
|
|
background-color: %palette-highlight-lighter;
|
|
}
|
|
|
|
QToolButton:pressed {
|
|
border: 2px solid %palette-highlight-darker;
|
|
background-color: %palette-highlight-lighter;
|
|
}
|
|
|
|
QToolButton[popupMode="MenuButtonPopup"], QToolButton:hover[popupMode="MenuButtonPopup"], QToolButton:pressed[popupMode="MenuButtonPopup"] {
|
|
padding-right: 16px;
|
|
}
|
|
|
|
/* For backwards compatibility with Qt 5 as it does not support property name */
|
|
QToolButton[popupMode="1"], QToolButton:hover[popupMode="1"], QToolButton:pressed[popupMode="1"] {
|
|
padding-right: 16px;
|
|
}
|
|
|
|
QToolButton::menu-button {
|
|
width: 16px;
|
|
border: none;
|
|
}
|