mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-12 07:59:29 -05:00
Merge pull request #1117 from chelovechishko/qdarkstyle_fix
Some fixes for qdarkstyle.qss
This commit is contained in:
commit
d2c8ba1a86
@ -44,7 +44,7 @@ QFrame#titleBarFrame, QFrame#toolBarFrame
|
||||
QToolTip
|
||||
{
|
||||
border: 1px solid #3A3939;
|
||||
background-color: rgb(90, 102, 117);;
|
||||
background-color: rgb(90, 102, 117);
|
||||
color: white;
|
||||
padding: 1px;
|
||||
opacity: 200;
|
||||
@ -76,11 +76,11 @@ QWidget:item:selected
|
||||
|
||||
ForumsDialog, GxsForumThreadWidget
|
||||
{
|
||||
qproperty-textColorRead: gray;
|
||||
qproperty-textColorRead: darkgray;
|
||||
qproperty-textColorUnread: white;
|
||||
qproperty-textColorUnreadChildren: gray;
|
||||
qproperty-textColorUnreadChildren: red;
|
||||
qproperty-textColorNotSubscribed: white;
|
||||
qproperty-textColorMissing: red;
|
||||
qproperty-textColorMissing: darkred;
|
||||
}
|
||||
|
||||
QMenuBar
|
||||
@ -330,7 +330,7 @@ QTextEdit
|
||||
|
||||
QPlainTextEdit
|
||||
{
|
||||
background-color: #201F1F;;
|
||||
background-color: #201F1F;
|
||||
color: silver;
|
||||
border-radius: 3px;
|
||||
border: 1px solid #3A3939;
|
||||
@ -830,6 +830,14 @@ QTreeView, QListView
|
||||
background-color: #201F1F;
|
||||
}
|
||||
|
||||
QTreeView::item {
|
||||
background-color: #201F1F;
|
||||
}
|
||||
|
||||
QTreeView::item:!selected {
|
||||
color: #C0C0C0;
|
||||
}
|
||||
|
||||
QTreeView:branch:selected, QTreeView:branch:hover
|
||||
{
|
||||
background: url(qdarkstyle/transparent.png);
|
||||
@ -867,14 +875,14 @@ QTreeView::branch:open:has-children:has-siblings:hover {
|
||||
image: url(qdarkstyle/branch_open-on.png);
|
||||
}
|
||||
|
||||
QListView::item:!selected:hover, QListView::item:!selected:hover, QTreeView::item:!selected:hover {
|
||||
QListView::item:!selected:hover, QTableView::item:!selected:hover, QTreeView::item:!selected:hover {
|
||||
background: rgba(0, 0, 0, 0);
|
||||
outline: 0;
|
||||
color: #FFFFFF
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
QListView::item:selected:hover, QListView::item:selected:hover, QTreeView::item:selected:hover {
|
||||
background: #78879b;;
|
||||
QListView::item:selected:hover, QTableView::item:selected:hover, QTreeView::item:selected:hover {
|
||||
background: #78879b;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user