46 lines
979 B
Text
46 lines
979 B
Text
/*
|
|
|
|
A branding component can ship a stylesheet (like this one)
|
|
which is applied to parts of the Calamares user-interface.
|
|
In principle, all parts can be styled through CSS.
|
|
Missing parts should be filed as issues.
|
|
|
|
The IDs are based on the object names in the C++ code.
|
|
|
|
Documentation for styling Qt Widgets through a stylesheet
|
|
can be found at
|
|
https://doc.qt.io/qt-5/stylesheet-examples.html
|
|
In Calamares, styling widget classes is supported (e.g.
|
|
using `QComboBox` as a selector). You can also use specific
|
|
object names (ids), which you can find through debugging tools.
|
|
|
|
*/
|
|
|
|
/* Main application window. */
|
|
|
|
#mainApp {
|
|
}
|
|
|
|
/*-----QPushButton-----*/
|
|
|
|
QPushButton::flat {
|
|
background-color: transparent;
|
|
border: none;
|
|
color: #cad3f5;
|
|
}
|
|
|
|
/* Partitioning module.
|
|
|
|
#bootInfoIcon { }
|
|
#bootInfoLable { }
|
|
#deviceInfoIcon { }
|
|
#defineInfoLabel { }
|
|
#scrollAreaWidgetContents { }
|
|
#partitionBarView { }
|
|
*/
|
|
|
|
/* Licensing module.
|
|
|
|
#licenseItem { }
|
|
#licenseItemFullText { }
|
|
*/
|