HP t520 Login Screen Customization - Page 11

For example, you might customize the center area of the dialog box, as follows, Rounded

Page 11 highlights

• SSOLineEdit#userLabel* • SSOLineEdit#passwordLabel* • QPushButton#showPasswordButton • QLabel#capsLockLabel • QComboBox#domainLabel* • QCheckBox#smartcardCheck* • QCheckBox#rememberCheck* • QPushButton#connectButton • QPushButton#cancelButton* For example, you might customize the center area of the dialog box, as follows: QDialog { /* Sea green dialog background color */ background-color: rgb(46,139,87); /* Rounded, thicker borders */ border-width: 6px; border-radius: 16px; border-color: #CCCCCC; border-style: solid; /* Make sure it is at least 400 pixels wide */ min-width: 400px; } 11

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

11
SSOLineEdit#userLabel*
SSOLineEdit#passwordLabel*
QPushButton#showPasswordButton
QLabel#capsLockLabel
QComboBox#domainLabel*
QCheckBox#smartcardCheck*
QCheckBox#rememberCheck*
QPushButton#connectButton
QPushButton#cancelButton*
For example, you might customize the center area of the dialog box, as follows:
QDialog {
/* Sea green dialog background color */
background-color: rgb(46,139,87);
/* Rounded, thicker borders */
border-width: 6px;
border-radius: 16px;
border-color: #CCCCCC;
border-style: solid;
/* Make sure it is at least 400 pixels wide */
min-width: 400px;
}