This commit is contained in:
davedatum
2019-11-05 21:19:27 +00:00
parent 863a6de5fe
commit 8f7781dc1c
17 changed files with 2 additions and 2 deletions

View File

@@ -0,0 +1,31 @@
/*
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.
*/
#mainText{
font : bold 18px;
}
#logoApp {
min-height: 80px;
margin-bottom: 50px;
}
QVBoxLayout {
background-color: pink;
color: pink;
}