/* Customize any plain widget that is a child of a QMainWindow. */
QMainWindow #main_widget {
    background-color: rgb( 239, 238, 233 );
    background-image: url(:/design/bg.png);
    background-position: bottom right;
    background-repeat: no-repeat
}

AWizardFace #view {
    background-image: url(:/design/bg-center.png);
    background-position: bottom right;
    background-repeat: no-repeat
}

/* Nice WindowsXP-style password character for password line edits. */
QLineEdit[echoMode="2"] {
    lineedit-password-character: 9679;
}

QProgressBar:horizontal { 
     border: 1px solid gray; border-radius: 3px; background: white; padding: 1px; 
     } 
QProgressBar::chunk:horizontal { 
     background: qlineargradient(x1: 0, y1: 0.5, x2: 1, y2: 0.5, stop: 0 gold, stop: 1 white); 
     }

/* Customize tooltips. */
QToolTip {
    background-color: rgb(200,200,255);
    border-color: darkslategray;
    border-width: 1px;
    border-style: solid;
    padding: 3px;
    font: bold;
    border-radius: 3px;
    opacity: 200;
}

