demos/embedded/styledemo/files/blue.qss
author William Roberts <williamr@symbian.org>
Thu, 22 Jul 2010 16:41:55 +0100
branchGCC_SURGE
changeset 31 5daf16870df6
parent 0 1918ee327afb
permissions -rw-r--r--
Catchup to latest Symbian^4

*
{
	color: beige;
}

QLabel, QAbstractButton 
{
    font: bold;
	color: yellow;
}

QFrame
{
    background-color: rgba(96,96,255,60%);
    border-color: rgb(32,32,196);
    border-width: 3px;
    border-style: solid;
    border-radius: 5;
    padding: 3px;
}

QAbstractButton
{
    background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
                             stop:0 lightblue, stop:0.5 darkblue);
    border-width: 3px;
    border-color: darkblue;
    border-style: solid;
    border-radius: 5;
    padding: 3px;
}

QAbstractButton:pressed
{
    background: qlineargradient(x1:0, y1:0, x2:0, y2:1,
                             stop:0.5 darkblue, stop:1 lightblue);
    border-color: beige;
}