mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-25 06:40:58 -04:00
Merge pull request #1117 from chelovechishko/qdarkstyle_fix
Some fixes for qdarkstyle.qss
This commit is contained in:
commit
d2c8ba1a86
1 changed files with 17 additions and 9 deletions
|
@ -44,7 +44,7 @@ QFrame#titleBarFrame, QFrame#toolBarFrame
|
||||||
QToolTip
|
QToolTip
|
||||||
{
|
{
|
||||||
border: 1px solid #3A3939;
|
border: 1px solid #3A3939;
|
||||||
background-color: rgb(90, 102, 117);;
|
background-color: rgb(90, 102, 117);
|
||||||
color: white;
|
color: white;
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
opacity: 200;
|
opacity: 200;
|
||||||
|
@ -76,11 +76,11 @@ QWidget:item:selected
|
||||||
|
|
||||||
ForumsDialog, GxsForumThreadWidget
|
ForumsDialog, GxsForumThreadWidget
|
||||||
{
|
{
|
||||||
qproperty-textColorRead: gray;
|
qproperty-textColorRead: darkgray;
|
||||||
qproperty-textColorUnread: white;
|
qproperty-textColorUnread: white;
|
||||||
qproperty-textColorUnreadChildren: gray;
|
qproperty-textColorUnreadChildren: red;
|
||||||
qproperty-textColorNotSubscribed: white;
|
qproperty-textColorNotSubscribed: white;
|
||||||
qproperty-textColorMissing: red;
|
qproperty-textColorMissing: darkred;
|
||||||
}
|
}
|
||||||
|
|
||||||
QMenuBar
|
QMenuBar
|
||||||
|
@ -330,7 +330,7 @@ QTextEdit
|
||||||
|
|
||||||
QPlainTextEdit
|
QPlainTextEdit
|
||||||
{
|
{
|
||||||
background-color: #201F1F;;
|
background-color: #201F1F;
|
||||||
color: silver;
|
color: silver;
|
||||||
border-radius: 3px;
|
border-radius: 3px;
|
||||||
border: 1px solid #3A3939;
|
border: 1px solid #3A3939;
|
||||||
|
@ -830,6 +830,14 @@ QTreeView, QListView
|
||||||
background-color: #201F1F;
|
background-color: #201F1F;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
QTreeView::item {
|
||||||
|
background-color: #201F1F;
|
||||||
|
}
|
||||||
|
|
||||||
|
QTreeView::item:!selected {
|
||||||
|
color: #C0C0C0;
|
||||||
|
}
|
||||||
|
|
||||||
QTreeView:branch:selected, QTreeView:branch:hover
|
QTreeView:branch:selected, QTreeView:branch:hover
|
||||||
{
|
{
|
||||||
background: url(qdarkstyle/transparent.png);
|
background: url(qdarkstyle/transparent.png);
|
||||||
|
@ -867,14 +875,14 @@ QTreeView::branch:open:has-children:has-siblings:hover {
|
||||||
image: url(qdarkstyle/branch_open-on.png);
|
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);
|
background: rgba(0, 0, 0, 0);
|
||||||
outline: 0;
|
outline: 0;
|
||||||
color: #FFFFFF
|
color: #FFFFFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
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: #78879b;;
|
background: #78879b;
|
||||||
color: #FFFFFF;
|
color: #FFFFFF;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue