Merge remote-tracking branch 'origin/master' into v0.12.0.x

+Fix Makefile.qt.include
This commit is contained in:
UdjinM6 2015-04-16 01:11:34 +03:00
commit 5daefc1a08
5 changed files with 75 additions and 18 deletions

View File

@ -275,7 +275,19 @@ endif
RES_IMAGES = \
qt/res/images/about.png \
qt/res/images/splash.png \
qt/res/images/splash_testnet.png
qt/res/images/splash_testnet.png \
qt/res/images/dash_logo_horizontal.png \
qt/res/images/drkblue_downArrow.png \
qt/res/images/drkblue_downArrow_small.png \
qt/res/images/drkblue_upArrow_small.png \
qt/res/images/drkblue_leftArrow_small.png \
qt/res/images/drkblue_rightArrow_small.png \
qt/res/images/drkblue_qtreeview_selected.png \
qt/res/images/drkblue_walletFrame_bg.png \
qt/res/images/drkblue_walletFrame.png
RES_CSS = \
qt/res/css/drkblue.css
RES_MOVIES = $(wildcard qt/res/movies/spinner-*.png)

View File

@ -61,6 +61,8 @@
<file alias="drkblue_downArrow">res/images/drkblue_downArrow.png</file>
<file alias="drkblue_downArrow_small">res/images/drkblue_downArrow_small.png</file>
<file alias="drkblue_upArrow_small">res/images/drkblue_upArrow_small.png</file>
<file alias="drkblue_leftArrow_small">res/images/drkblue_leftArrow_small.png</file>
<file alias="drkblue_rightArrow_small">res/images/drkblue_rightArrow_small.png</file>
<file alias="drkblue_qtreeview_selected">res/images/drkblue_qtreeview_selected.png</file>
<file alias="drkblue_walletFrame_bg">res/images/drkblue_walletFrame_bg.png</file>
<file alias="drkblue_walletFrame">res/images/drkblue_walletFrame.png</file>

View File

@ -273,23 +273,21 @@ color:#333;
}
QScrollBar { /* Scroll Bar */
background-color:#ffffff;
}
QScrollBar:vertical { /* Vertical Scroll Bar Attributes */
border:1px solid #818181;
border-left:0px;
background:#333;
width:17px;
margin: 0px 0px 0px 0px;
border:0;
background:#ffffff;
width:18px;
margin: 18px 0px 18px 0px;
}
QScrollBar:horizontal { /* Horizontal Scroll Bar Attributes */
border:1px solid #818181;
border-top:0px;
background:#333;
height:17px;
margin: 0px 0px 0px 0px;
border:0;
background:#ffffff;
height:18px;
margin: 0px 18px 0px 18px;
}
@ -303,18 +301,63 @@ background:#e0e0e0;
min-width:10px;
}
QScrollBar::add-page, QScrollBar::sub-page { /* Scroll Bar Background */
background:#F8F6F6;
}
QScrollBar:up-arrow, QScrollBar:down-arrow { /* Up and Down Arrows */
border:2px solid #333;
width:3px;
height:3px;
background:#fff;
QScrollBar::add-line:vertical, QScrollBar::sub-line:vertical, QScrollBar::add-line:horizontal, QScrollBar::sub-line:horizontal { /* Define Arrow Button Dimensions */
background-color:#F8F6F6;
border: 1px solid #f2f0f0;
width:16px;
height:16px;
}
QScrollBar::add-line:vertical:pressed, QScrollBar::sub-line:vertical:pressed, QScrollBar::add-line:horizontal:pressed, QScrollBar::sub-line:horizontal:pressed {
background-color:#e0e0e0;
}
QScrollBar::sub-line:vertical { /* Vertical - top button position */
subcontrol-position:top;
subcontrol-origin: margin;
}
QScrollBar::add-line:vertical { /* Vertical - bottom button position */
subcontrol-position:bottom;
subcontrol-origin: margin;
}
QScrollBar::sub-line:horizontal { /* Vertical - left button position */
subcontrol-position:left;
subcontrol-origin: margin;
}
QScrollBar::add-line:horizontal { /* Vertical - right button position */
subcontrol-position:right;
subcontrol-origin: margin;
}
QScrollBar:up-arrow, QScrollBar:down-arrow, QScrollBar:left-arrow, QScrollBar:right-arrow { /* Arrows Icon */
width:10px;
height:10px;
}
QScrollBar:up-arrow {
background-image: url(':/images/drkblue_upArrow_small');
}
QScrollBar:down-arrow {
background-image: url(':/images/drkblue_downArrow_small');
}
QScrollBar:left-arrow {
background-image: url(':/images/drkblue_leftArrow_small');
}
QScrollBar:right-arrow {
background-image: url(':/images/drkblue_rightArrow_small');
}
/*******************************************************/
/* DIALOG BOXES */

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB