-added new stylesheet skin orangesurfer
-updated some other stylesheets git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@759 b45a01b8-16f6-495d-af2f-9b41ad6348cc
@ -1,38 +0,0 @@
|
||||
|
||||
|
||||
/* Customize the toolbar. */
|
||||
QToolBar {
|
||||
|
||||
min-height: 89px;
|
||||
}
|
||||
|
||||
QToolBar {
|
||||
|
||||
border-image: url(qss/arachnophobia/background.png);
|
||||
|
||||
}
|
||||
|
||||
|
||||
QPushButton#okButton {
|
||||
min-height: 27px;
|
||||
min-width: 77px;
|
||||
}
|
||||
|
||||
QPushButton#cancelprefButton {
|
||||
min-height: 27px;
|
||||
min-width: 77px;
|
||||
}
|
||||
|
||||
QPushButton#cancelButton {
|
||||
min-height: 25px;
|
||||
max-height: 25px;
|
||||
min-width: 75px;
|
||||
}
|
||||
|
||||
|
||||
QPushButton#applyButton {
|
||||
|
||||
min-height: 25px;
|
||||
max-height: 25px;
|
||||
min-width: 75px;
|
||||
}
|
@ -37,5 +37,26 @@ QPushButton#applyButton {
|
||||
|
||||
|
||||
|
||||
QMenu::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #E3EFFF, stop: 1 #87ADE4);
|
||||
}
|
||||
|
||||
QListWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #E3EFFF, stop: 1 #87ADE4);
|
||||
}
|
||||
|
||||
QTreeWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #E3EFFF, stop: 1 #87ADE4);
|
||||
}
|
||||
|
||||
QStatusBar{
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #E3EFFF, stop: 1 #87ADE4);
|
||||
}
|
116
retroshare-gui/src/gui/qss/orangesurfer.qss
Normal file
@ -0,0 +1,116 @@
|
||||
.QWidget {
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #67768D, stop: 0.4 #EDEEFD);
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Customize the toolbar. */
|
||||
QToolBar {
|
||||
border-image: url(qss/orangesurfer/main.png);
|
||||
|
||||
}
|
||||
|
||||
|
||||
QTabBar::tab {
|
||||
border-image: url(qss/orangesurfer/tab_normal.png);
|
||||
border-top-left-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
min-width: 8ex;
|
||||
padding: 4px;
|
||||
|
||||
|
||||
}
|
||||
|
||||
QTabBar::tab:!selected {
|
||||
margin-top: 2px; /* make non-selected tabs look smaller */
|
||||
|
||||
}
|
||||
|
||||
QTabBar::tab:selected, QTabBar::tab:hover {
|
||||
|
||||
border-image: url(qss/orangesurfer/tab_hover.png);
|
||||
|
||||
|
||||
}
|
||||
|
||||
QTabBar::tab:selected {
|
||||
border-image: url(qss/orangesurfer/tab_pressed.png);
|
||||
}
|
||||
|
||||
|
||||
QPushButton#okButton {
|
||||
min-height: 27px;
|
||||
min-width: 77px;
|
||||
}
|
||||
|
||||
QPushButton#cancelprefButton {
|
||||
min-height: 27px;
|
||||
min-width: 77px;
|
||||
}
|
||||
|
||||
QPushButton#cancelButton {
|
||||
min-height: 25px;
|
||||
max-height: 25px;
|
||||
min-width: 75px;
|
||||
}
|
||||
|
||||
|
||||
QPushButton#applyButton {
|
||||
|
||||
min-height: 25px;
|
||||
max-height: 25px;
|
||||
min-width: 75px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
QStatusBar{
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #67768D, stop: 0.4 #EDEEFD);
|
||||
|
||||
}
|
||||
|
||||
QSizeGrip {
|
||||
image: url(qss/orangesurfer/sizegrip.png);
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
QMenu {
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #67768D, stop: 0.4 #EDEEFD);
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
QMenu::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F7B552, stop: 1 #FF5E07);
|
||||
}
|
||||
|
||||
QListWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F7B552, stop: 1 #FF5E07);
|
||||
}
|
||||
|
||||
QTreeWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
/*background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F7B552, stop: 1 #FF5E07);*/
|
||||
|
||||
border-image: url(qss/gofast/border.png);
|
||||
|
||||
}
|
||||
|
||||
QTreeView::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
/*background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F7B552, stop: 1 #FF5E07);*/
|
||||
|
||||
border-image: url(qss/orangesurfer/border.png);
|
||||
|
||||
}
|
BIN
retroshare-gui/src/gui/qss/orangesurfer/border.png
Normal file
After Width: | Height: | Size: 1003 B |
BIN
retroshare-gui/src/gui/qss/orangesurfer/main.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
retroshare-gui/src/gui/qss/orangesurfer/sizegrip.png
Normal file
After Width: | Height: | Size: 288 B |
BIN
retroshare-gui/src/gui/qss/orangesurfer/tab_hover.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
retroshare-gui/src/gui/qss/orangesurfer/tab_normal.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
retroshare-gui/src/gui/qss/orangesurfer/tab_pressed.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
retroshare-gui/src/gui/qss/orangesurfer/toolbar.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
@ -8,6 +8,21 @@ QToolBar {
|
||||
border-image: url(qss/red/red.png);
|
||||
|
||||
|
||||
}
|
||||
|
||||
/* it works only at the moment with vista Thema on XP*/
|
||||
QToolButton::hover {
|
||||
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #FFD200, stop: 1 #FF6400);
|
||||
|
||||
|
||||
}
|
||||
|
||||
QToolButton::pressed {
|
||||
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #FFD200, stop: 1 #FF6400);
|
||||
|
||||
|
||||
}
|
||||
|
||||
QPushButton {
|
||||
@ -45,7 +60,7 @@ color: white;
|
||||
}
|
||||
|
||||
QToolButton {
|
||||
color: white;
|
||||
color: black;
|
||||
}
|
||||
|
||||
QTabWidget::tab-bar {
|
||||
@ -111,3 +126,9 @@ QTreeWidget::item:selected { /* when user selects item using mouse or keyboard *
|
||||
stop: 0 red, stop: 1 darkred);
|
||||
}
|
||||
|
||||
QTreeView::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 red, stop: 1 darkred);
|
||||
|
||||
}
|
@ -29,4 +29,28 @@ QPushButton#applyButton {
|
||||
min-height: 25px;
|
||||
max-height: 25px;
|
||||
min-width: 75px;
|
||||
}
|
||||
|
||||
QMenu::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F9F9FF, stop: 1 #9F9DB9);
|
||||
}
|
||||
|
||||
QListWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F9F9FF, stop: 1 #9F9DB9);
|
||||
}
|
||||
|
||||
QTreeWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F9F9FF, stop: 1 #9F9DB9);
|
||||
}
|
||||
|
||||
QStatusBar{
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F9F9FF, stop: 1 #9F9DB9);
|
||||
}
|
@ -73,7 +73,7 @@ QMenu {
|
||||
QMenu::item {
|
||||
/* sets background of menu item. set this to something non-transparent
|
||||
if you want menu color and menu item color to be different */
|
||||
background-color: transparent;
|
||||
/*background-color: transparent;*/
|
||||
}
|
||||
|
||||
QMenu::item:selected { /* when user selects item using mouse or keyboard */
|
||||
@ -87,8 +87,13 @@ QListWidget::item:selected { /* when user selects item using mouse or keyboard *
|
||||
}
|
||||
|
||||
QTreeWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
||||
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
||||
stop:0 #6F6F6F, stop:1 #979797);
|
||||
}
|
||||
|
||||
QTreeView::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop:0 #6F6F6F, stop:1 #979797);
|
||||
|
||||
}
|
||||
|
@ -13,6 +13,21 @@ QToolBar {
|
||||
|
||||
}
|
||||
|
||||
/* it works only at the moment with vista Thema on XP*/
|
||||
QToolButton::hover {
|
||||
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #BDDF7D, stop: 1 #49881F);
|
||||
|
||||
|
||||
}
|
||||
|
||||
QToolButton::pressed {
|
||||
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #BDDF7D, stop: 1 #49881F);
|
||||
|
||||
|
||||
}
|
||||
|
||||
/* Style the tab using the tab sub-control. Note that
|
||||
it reads QTabBar _not_ QTabWidget */
|
||||
QTabBar::tab {
|
||||
@ -25,25 +40,25 @@ QTabBar::tab {
|
||||
min-width: 8ex;
|
||||
padding: 2px;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
QTabBar::tab:!selected {
|
||||
margin-top: 2px; /* make non-selected tabs look smaller */
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
QTabBar::tab:selected, QTabBar::tab:hover {
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F0F8CB, stop: 1 #F0F8CD);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
QTabBar::tab:selected {
|
||||
border-color: #9B9B9B;
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F5FFBC, stop: 1 #609C08);
|
||||
}
|
||||
}
|
||||
|
||||
QHeaderView::section {
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
@ -129,6 +144,13 @@ QTreeWidget::item:selected { /* when user selects item using mouse or keyboard *
|
||||
|
||||
}
|
||||
|
||||
QTreeView::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #BDDF7D, stop: 1 #49881F);
|
||||
|
||||
}
|
||||
|
||||
QToolTip{
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #376D85, stop: 0.4 #185772);
|
||||
|
@ -90,4 +90,11 @@ QListWidget::item:selected { /* when user selects item using mouse or keyboard *
|
||||
QTreeWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
||||
stop:0 #FBC957, stop:1 #D79704);
|
||||
}
|
||||
|
||||
QTreeView::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #FBC957, stop: 1 #D79704);
|
||||
|
||||
}
|
@ -87,6 +87,13 @@ QListWidget::item:selected { /* when user selects item using mouse or keyboard *
|
||||
}
|
||||
|
||||
QTreeWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
||||
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
||||
stop:0 #FBC957, stop:1 #D79704);
|
||||
}
|
||||
|
||||
TreeView::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #FBC957, stop: 1 #D79704);
|
||||
|
||||
}
|
@ -1,38 +0,0 @@
|
||||
|
||||
|
||||
/* Customize the toolbar. */
|
||||
QToolBar {
|
||||
|
||||
min-height: 89px;
|
||||
}
|
||||
|
||||
QToolBar {
|
||||
|
||||
border-image: url(qss/arachnophobia/background.png);
|
||||
|
||||
}
|
||||
|
||||
|
||||
QPushButton#okButton {
|
||||
min-height: 27px;
|
||||
min-width: 77px;
|
||||
}
|
||||
|
||||
QPushButton#cancelprefButton {
|
||||
min-height: 27px;
|
||||
min-width: 77px;
|
||||
}
|
||||
|
||||
QPushButton#cancelButton {
|
||||
min-height: 25px;
|
||||
max-height: 25px;
|
||||
min-width: 75px;
|
||||
}
|
||||
|
||||
|
||||
QPushButton#applyButton {
|
||||
|
||||
min-height: 25px;
|
||||
max-height: 25px;
|
||||
min-width: 75px;
|
||||
}
|
@ -37,5 +37,26 @@ QPushButton#applyButton {
|
||||
|
||||
|
||||
|
||||
QMenu::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #E3EFFF, stop: 1 #87ADE4);
|
||||
}
|
||||
|
||||
QListWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #E3EFFF, stop: 1 #87ADE4);
|
||||
}
|
||||
|
||||
QTreeWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #E3EFFF, stop: 1 #87ADE4);
|
||||
}
|
||||
|
||||
QStatusBar{
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #E3EFFF, stop: 1 #87ADE4);
|
||||
}
|
116
retroshare-gui/src/release/qss/orangesurfer.qss
Normal file
@ -0,0 +1,116 @@
|
||||
.QWidget {
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #67768D, stop: 0.4 #EDEEFD);
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Customize the toolbar. */
|
||||
QToolBar {
|
||||
border-image: url(qss/orangesurfer/main.png);
|
||||
|
||||
}
|
||||
|
||||
|
||||
QTabBar::tab {
|
||||
border-image: url(qss/orangesurfer/tab_normal.png);
|
||||
border-top-left-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
min-width: 8ex;
|
||||
padding: 4px;
|
||||
|
||||
|
||||
}
|
||||
|
||||
QTabBar::tab:!selected {
|
||||
margin-top: 2px; /* make non-selected tabs look smaller */
|
||||
|
||||
}
|
||||
|
||||
QTabBar::tab:selected, QTabBar::tab:hover {
|
||||
|
||||
border-image: url(qss/orangesurfer/tab_hover.png);
|
||||
|
||||
|
||||
}
|
||||
|
||||
QTabBar::tab:selected {
|
||||
border-image: url(qss/orangesurfer/tab_pressed.png);
|
||||
}
|
||||
|
||||
|
||||
QPushButton#okButton {
|
||||
min-height: 27px;
|
||||
min-width: 77px;
|
||||
}
|
||||
|
||||
QPushButton#cancelprefButton {
|
||||
min-height: 27px;
|
||||
min-width: 77px;
|
||||
}
|
||||
|
||||
QPushButton#cancelButton {
|
||||
min-height: 25px;
|
||||
max-height: 25px;
|
||||
min-width: 75px;
|
||||
}
|
||||
|
||||
|
||||
QPushButton#applyButton {
|
||||
|
||||
min-height: 25px;
|
||||
max-height: 25px;
|
||||
min-width: 75px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
QStatusBar{
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #67768D, stop: 0.4 #EDEEFD);
|
||||
|
||||
}
|
||||
|
||||
QSizeGrip {
|
||||
image: url(qss/orangesurfer/sizegrip.png);
|
||||
width: 16px;
|
||||
height: 16px;
|
||||
}
|
||||
|
||||
QMenu {
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #67768D, stop: 0.4 #EDEEFD);
|
||||
border: 1px solid black;
|
||||
}
|
||||
|
||||
QMenu::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F7B552, stop: 1 #FF5E07);
|
||||
}
|
||||
|
||||
QListWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F7B552, stop: 1 #FF5E07);
|
||||
}
|
||||
|
||||
QTreeWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
/*background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F7B552, stop: 1 #FF5E07);*/
|
||||
|
||||
border-image: url(qss/gofast/border.png);
|
||||
|
||||
}
|
||||
|
||||
QTreeView::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
/*background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F7B552, stop: 1 #FF5E07);*/
|
||||
|
||||
border-image: url(qss/orangesurfer/border.png);
|
||||
|
||||
}
|
BIN
retroshare-gui/src/release/qss/orangesurfer/border.png
Normal file
After Width: | Height: | Size: 1003 B |
BIN
retroshare-gui/src/release/qss/orangesurfer/main.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
retroshare-gui/src/release/qss/orangesurfer/sizegrip.png
Normal file
After Width: | Height: | Size: 288 B |
BIN
retroshare-gui/src/release/qss/orangesurfer/tab_hover.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
retroshare-gui/src/release/qss/orangesurfer/tab_normal.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
retroshare-gui/src/release/qss/orangesurfer/tab_pressed.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
retroshare-gui/src/release/qss/orangesurfer/toolbar.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
@ -8,6 +8,21 @@ QToolBar {
|
||||
border-image: url(qss/red/red.png);
|
||||
|
||||
|
||||
}
|
||||
|
||||
/* it works only at the moment with vista Thema on XP*/
|
||||
QToolButton::hover {
|
||||
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #FFD200, stop: 1 #FF6400);
|
||||
|
||||
|
||||
}
|
||||
|
||||
QToolButton::pressed {
|
||||
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #FFD200, stop: 1 #FF6400);
|
||||
|
||||
|
||||
}
|
||||
|
||||
QPushButton {
|
||||
@ -45,7 +60,7 @@ color: white;
|
||||
}
|
||||
|
||||
QToolButton {
|
||||
color: white;
|
||||
color: black;
|
||||
}
|
||||
|
||||
QTabWidget::tab-bar {
|
||||
@ -111,3 +126,9 @@ QTreeWidget::item:selected { /* when user selects item using mouse or keyboard *
|
||||
stop: 0 red, stop: 1 darkred);
|
||||
}
|
||||
|
||||
QTreeView::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 red, stop: 1 darkred);
|
||||
|
||||
}
|
@ -29,4 +29,28 @@ QPushButton#applyButton {
|
||||
min-height: 25px;
|
||||
max-height: 25px;
|
||||
min-width: 75px;
|
||||
}
|
||||
|
||||
QMenu::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F9F9FF, stop: 1 #9F9DB9);
|
||||
}
|
||||
|
||||
QListWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F9F9FF, stop: 1 #9F9DB9);
|
||||
}
|
||||
|
||||
QTreeWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F9F9FF, stop: 1 #9F9DB9);
|
||||
}
|
||||
|
||||
QStatusBar{
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F9F9FF, stop: 1 #9F9DB9);
|
||||
}
|
@ -73,7 +73,7 @@ QMenu {
|
||||
QMenu::item {
|
||||
/* sets background of menu item. set this to something non-transparent
|
||||
if you want menu color and menu item color to be different */
|
||||
background-color: transparent;
|
||||
/*background-color: transparent;*/
|
||||
}
|
||||
|
||||
QMenu::item:selected { /* when user selects item using mouse or keyboard */
|
||||
@ -87,8 +87,13 @@ QListWidget::item:selected { /* when user selects item using mouse or keyboard *
|
||||
}
|
||||
|
||||
QTreeWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
||||
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
||||
stop:0 #6F6F6F, stop:1 #979797);
|
||||
}
|
||||
|
||||
QTreeView::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop:0 #6F6F6F, stop:1 #979797);
|
||||
|
||||
}
|
||||
|
@ -13,6 +13,21 @@ QToolBar {
|
||||
|
||||
}
|
||||
|
||||
/* it works only at the moment with vista Thema on XP*/
|
||||
QToolButton::hover {
|
||||
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #BDDF7D, stop: 1 #49881F);
|
||||
|
||||
|
||||
}
|
||||
|
||||
QToolButton::pressed {
|
||||
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #BDDF7D, stop: 1 #49881F);
|
||||
|
||||
|
||||
}
|
||||
|
||||
/* Style the tab using the tab sub-control. Note that
|
||||
it reads QTabBar _not_ QTabWidget */
|
||||
QTabBar::tab {
|
||||
@ -25,25 +40,25 @@ QTabBar::tab {
|
||||
min-width: 8ex;
|
||||
padding: 2px;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
QTabBar::tab:!selected {
|
||||
margin-top: 2px; /* make non-selected tabs look smaller */
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
QTabBar::tab:selected, QTabBar::tab:hover {
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F0F8CB, stop: 1 #F0F8CD);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
QTabBar::tab:selected {
|
||||
border-color: #9B9B9B;
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #F5FFBC, stop: 1 #609C08);
|
||||
}
|
||||
}
|
||||
|
||||
QHeaderView::section {
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
@ -129,6 +144,13 @@ QTreeWidget::item:selected { /* when user selects item using mouse or keyboard *
|
||||
|
||||
}
|
||||
|
||||
QTreeView::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #BDDF7D, stop: 1 #49881F);
|
||||
|
||||
}
|
||||
|
||||
QToolTip{
|
||||
background: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #376D85, stop: 0.4 #185772);
|
||||
|
@ -90,4 +90,11 @@ QListWidget::item:selected { /* when user selects item using mouse or keyboard *
|
||||
QTreeWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
||||
stop:0 #FBC957, stop:1 #D79704);
|
||||
}
|
||||
|
||||
QTreeView::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #FBC957, stop: 1 #D79704);
|
||||
|
||||
}
|
@ -87,6 +87,13 @@ QListWidget::item:selected { /* when user selects item using mouse or keyboard *
|
||||
}
|
||||
|
||||
QTreeWidget::item:selected { /* when user selects item using mouse or keyboard */
|
||||
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
||||
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1,
|
||||
stop:0 #FBC957, stop:1 #D79704);
|
||||
}
|
||||
|
||||
TreeView::item:selected { /* when user selects item using mouse or keyboard */
|
||||
|
||||
background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1,
|
||||
stop: 0 #FBC957, stop: 1 #D79704);
|
||||
|
||||
}
|