38be0d1383
This is the beginning of revision history for this module. If you want to look at revision history older than this, please refer to the Qt Git wiki for how to use Git history grafting. At the time of writing, this wiki is located here: http://qt.gitorious.org/qt/pages/GitIntroductionWithQt If you have already performed the grafting and you don't see any history beyond this commit, try running "git log" with the "--follow" argument. Branched from the monolithic repo, Qt master branch, at commit 896db169ea224deb96c59ce8af800d019de63f12
126 lines
2.1 KiB
Plaintext
126 lines
2.1 KiB
Plaintext
QWidget#StyleWidget
|
|
{
|
|
background-color: none;
|
|
background-image: url(icons:nature_1.jpg);
|
|
}
|
|
|
|
QLabel, QAbstractButton
|
|
{
|
|
font: bold;
|
|
color: beige;
|
|
}
|
|
|
|
QAbstractButton
|
|
{
|
|
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 rgba(173,216,230,60%), stop:1 rgba(0,0,139,60%) );
|
|
border-color: black;
|
|
border-style: solid;
|
|
border-width: 3px;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
QAbstractButton:pressed, QAbstractButton:checked
|
|
{
|
|
background: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 rgba(0,0,139,60%), stop:1 rgba(173,216,230,60%) );
|
|
}
|
|
|
|
QSpinBox {
|
|
padding-left: 24px;
|
|
padding-right: 24px;
|
|
border-color: darkkhaki;
|
|
border-style: solid;
|
|
border-radius: 5;
|
|
border-width: 3;
|
|
}
|
|
|
|
QSpinBox::up-button
|
|
{
|
|
subcontrol-origin: padding;
|
|
subcontrol-position: right; /* position at the top right corner */
|
|
width: 24px;
|
|
height: 24px;
|
|
border-width: 3px;
|
|
|
|
}
|
|
|
|
QSpinBox::up-arrow
|
|
{
|
|
image: url(icons:add.png);
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
|
|
QSpinBox::down-button
|
|
{
|
|
subcontrol-origin: border;
|
|
subcontrol-position: left;
|
|
width: 24px;
|
|
height: 24px;
|
|
border-width: 3px;
|
|
}
|
|
|
|
QSpinBox::down-arrow
|
|
{
|
|
image: url(icons:remove.png);
|
|
width: 18px;
|
|
height: 18px;
|
|
}
|
|
|
|
|
|
QScrollBar:horizontal
|
|
{
|
|
border: 1px solid black;
|
|
background: qlineargradient(x1:0, y1:0, x2:1, y2:0, stop:0 rgba(0,0,139,60%), stop:1 rgba(173,216,230,60%) );
|
|
height: 15px;
|
|
margin: 0px 20px 0 20px;
|
|
}
|
|
|
|
QScrollBar::handle:horizontal
|
|
{
|
|
border: 1px solid black;
|
|
background: rgba(0,0,139,60%);
|
|
min-width: 20px;
|
|
}
|
|
|
|
QScrollBar::add-line:horizontal
|
|
{
|
|
border: 1px solid black;
|
|
background: rgba(0,0,139,60%);
|
|
width: 20px;
|
|
subcontrol-position: right;
|
|
subcontrol-origin: margin;
|
|
}
|
|
|
|
QScrollBar::sub-line:horizontal
|
|
{
|
|
border: 1px solid black;
|
|
background: rgba(0,0,139,60%);
|
|
width: 20px;
|
|
subcontrol-position: left;
|
|
subcontrol-origin: margin;
|
|
}
|
|
|
|
QScrollBar:left-arrow:horizontal, QScrollBar::right-arrow:horizontal
|
|
{
|
|
border: none;
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
|
|
QScrollBar:left-arrow:horizontal
|
|
{
|
|
image: url(icons:add.png)
|
|
}
|
|
|
|
QScrollBar::right-arrow:horizontal
|
|
{
|
|
image: url(icons:remove.png)
|
|
}
|
|
|
|
QScrollBar::add-page:horizontal, QScrollBar::sub-page:horizontal
|
|
{
|
|
background: none;
|
|
}
|
|
|