mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 01:05:34 +08:00
* adjust palette to change link color: hardcoded, but no other way per stylesheet * stylesheet fix to avoid black font in table view (CTRL S) Remark: Currently we just display the blog page as news, which is not correctly formatted, but somehow works. In the future we might use a tailored HTML page for that.
28 lines
591 B
Plaintext
28 lines
591 B
Plaintext
/**
|
|
Works around two issues on Mac OS
|
|
1. The launcher dialog was entirely transparent
|
|
2. Transparency caused the QToolBox labels to be broken
|
|
**/
|
|
QStackedWidget#sw_SwiftLauncher {
|
|
background-image: url(:/textures/icons/textures/texture-inner.jpg);
|
|
}
|
|
|
|
/** special effects for start buttons **/
|
|
#pg_Start QToolButton {
|
|
border: 1px solid green;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
#pg_Start QToolButton:hover {
|
|
border: 5px solid green;
|
|
border-radius: 5px;
|
|
min-width: 30px;
|
|
min-height: 30px;
|
|
}
|
|
|
|
#pg_start QToolTip {
|
|
color: #ffffff;
|
|
background-color: #2a82da;
|
|
border: 1px solid white;
|
|
}
|