Merge pull request #2337 from defnax/ui-fix-v15

Added a own arrow icons for the friendslist tree branch
This commit is contained in:
defnax 2021-02-19 13:44:24 +01:00 committed by GitHub
commit 21e775d116
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 16 additions and 2 deletions

View File

@ -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>

Binary file not shown.

After

Width:  |  Height:  |  Size: 495 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 465 B

View File

@ -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);
}