HP Smart Client Administrator's Guide

As examples of changes, the central frame area might be customized as follows:
QFrame#centralFrame {
/* Sea green dialog background color */
background-color: rgb(46,139,87);
/* Rounded, thicker borders */
border-width: 6px;
border-radius: 16px;
/* Make sure it is at least 400 pixels wide */
min-width: 400px;
}
Text for the login header might be customized as follows:
LoginArea QLabel#loginHeader {
/* Change the login text at the top */
qproperty-text: "Login Here";
color: white;
font-size: 16pt;
font-weight: bold;
}
NOTE: Text that is overridden in the .qss file will not be localized when the locale changes.
The login icon in the upper right can be customized:
LoginArea QLabel#loginIcon {
/* Substitute my company logo for the normal one. */
image: url(/writable/misc/MyCompanyLogo.png);
min-width: 48px;
min-height: 48px;
}
It can have a different style when it is not enabled:
QPushButton#connectButton:disabled {
Using Profile Editor
31