mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-29 09:26:18 -05:00
Added a default stylesheet for the send button
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@6815 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
13e7ac8b43
commit
d4b64ae551
@ -44,6 +44,9 @@
|
|||||||
<file>images/btn_27_hover.png</file>
|
<file>images/btn_27_hover.png</file>
|
||||||
<file>images/btn_blue.png</file>
|
<file>images/btn_blue.png</file>
|
||||||
<file>images/btn_blue_hover.png</file>
|
<file>images/btn_blue_hover.png</file>
|
||||||
|
<file>images/btn_green.png</file>
|
||||||
|
<file>images/btn_green_hover.png</file>
|
||||||
|
<file>images/btn_green_pressed.png</file>
|
||||||
<file>images/connect_established.png</file>
|
<file>images/connect_established.png</file>
|
||||||
<file>images/connect_established_low.png</file>
|
<file>images/connect_established_low.png</file>
|
||||||
<file>images/connect_creating.png</file>
|
<file>images/connect_creating.png</file>
|
||||||
|
BIN
retroshare-gui/src/gui/images/btn_green.png
Normal file
BIN
retroshare-gui/src/gui/images/btn_green.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 392 B |
BIN
retroshare-gui/src/gui/images/btn_green_hover.png
Normal file
BIN
retroshare-gui/src/gui/images/btn_green_hover.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 399 B |
BIN
retroshare-gui/src/gui/images/btn_green_pressed.png
Normal file
BIN
retroshare-gui/src/gui/images/btn_green_pressed.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 454 B |
@ -184,6 +184,25 @@ ChatWidget QFrame#infoFrame {
|
|||||||
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #FFFFD7, stop:1 #FFFFB2);
|
background-color: qlineargradient(x1:0, y1:0, x2:0, y2:1, stop:0 #FFFFD7, stop:1 #FFFFB2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ChatWidget QPushButton#sendButton {
|
||||||
|
border-image: url(:/images/btn_green.png) 4;
|
||||||
|
border-width: 4;
|
||||||
|
padding: 0px 6px;
|
||||||
|
font-size: 14px;
|
||||||
|
font: bold;
|
||||||
|
color: white;
|
||||||
|
}
|
||||||
|
|
||||||
|
ChatWidget QPushButton#sendButton:hover {
|
||||||
|
border-image: url(:/images/btn_green_hover.png) 4;
|
||||||
|
}
|
||||||
|
|
||||||
|
ChatWidget QPushButton#sendButton:pressed {
|
||||||
|
border-image: url(:/images/btn_green_pressed.png) 4;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
/* Messages */
|
/* Messages */
|
||||||
|
|
||||||
MessageComposer > QToolBar#toolBar {
|
MessageComposer > QToolBar#toolBar {
|
||||||
|
Loading…
Reference in New Issue
Block a user