mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Merge pull request #2337 from defnax/ui-fix-v15
Added a own arrow icons for the friendslist tree branch
This commit is contained in:
commit
21e775d116
@ -1,5 +1,7 @@
|
||||
<RCC>
|
||||
<qresource prefix="/">
|
||||
<file>images/arrow-right.png</file>
|
||||
<file>images/arrow-down.png</file>
|
||||
<file>images/logo/background.png</file>
|
||||
<file>images/logo/background_lessblue.png</file>
|
||||
<file>images/logo/logo_spash2.png</file>
|
||||
|
BIN
retroshare-gui/src/gui/images/arrow-down.png
Normal file
BIN
retroshare-gui/src/gui/images/arrow-down.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 495 B |
BIN
retroshare-gui/src/gui/images/arrow-right.png
Normal file
BIN
retroshare-gui/src/gui/images/arrow-right.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 465 B |
@ -1205,10 +1205,22 @@ BoardsCommentsItem QLabel#subjectLabel, QLabel#titleLabel , QLabel#nameLabel {
|
||||
font: bold;
|
||||
}
|
||||
|
||||
NewFriendList QTreeView#peerTreeWidget::item:selected/*, QTreeView#peerTreeWidget::branch:selected:active */{
|
||||
background-color: #cde8ff;
|
||||
NewFriendList QTreeView#peerTreeWidget::item:selected, QTreeView#peerTreeWidget::branch:selected:active {
|
||||
background: #cde8ff;
|
||||
}
|
||||
|
||||
NewFriendList QTreeView#peerTreeWidget {
|
||||
font-size: 12pt;
|
||||
}
|
||||
|
||||
NewFriendList QTreeView::branch:has-children:!has-siblings:closed,
|
||||
NewFriendList QTreeView::branch:closed:has-children:has-siblings {
|
||||
border-image: none;
|
||||
image: url(:/images/arrow-right.png);
|
||||
}
|
||||
|
||||
NewFriendList QTreeView::branch:open:has-children:!has-siblings,
|
||||
NewFriendList QTreeView::branch:open:has-children:has-siblings {
|
||||
border-image: none;
|
||||
image: url(:/images/arrow-down.png);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user