summaryrefslogtreecommitdiff
path: root/src/stylesheets/Transparent-Style-BOS.qss
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2020-02-18 17:32:11 -0500
committerGitHub <noreply@github.com>2020-02-18 17:32:11 -0500
commite749b2072601830c11495ce210907391dfe7bc6b (patch)
tree45d3082c037c99d60ddbbe5be8ab2bc60e467e23 /src/stylesheets/Transparent-Style-BOS.qss
parent8c2814c9dc0d92e1ab015cde33eee8dcf880e265 (diff)
parenta28bd45c0b4dfbedcb816fedf0783c5287be3b19 (diff)
Merge pull request #1003 from isanae/file-list-improvements
Refresh optimizations
Diffstat (limited to 'src/stylesheets/Transparent-Style-BOS.qss')
-rw-r--r--src/stylesheets/Transparent-Style-BOS.qss13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/stylesheets/Transparent-Style-BOS.qss b/src/stylesheets/Transparent-Style-BOS.qss
index 33eed327..0b4ba23d 100644
--- a/src/stylesheets/Transparent-Style-BOS.qss
+++ b/src/stylesheets/Transparent-Style-BOS.qss
@@ -12,8 +12,8 @@
}
QAbstractItemView{
color: #dcdcdc;
- background-color: rgb(45,45,48,30);
- alternate-background-color: rgb(38,38,38,50);
+ background-color: rgba(45,45,48,30);
+ alternate-background-color: rgba(38,38,38,50);
border: 1px solid #3F3F46;
/* Grey - Blue*/
border-style:outset;
@@ -507,6 +507,11 @@ QMenu::item:selected{
QTreeView::branch:open:has-children:!has-siblings{
background:url(Transparent-Style/vault-101-itemB-open-last.png) center center no-repeat;
}
+
+QAbstractItemView[filtered=true] {
+ border: 2px solid #f00 !important;
+}
+
/* **************************************************************** */
/* Checkboxes and Radio buttons common #QCheckBox, #QRadioButton */
/* common */
@@ -747,3 +752,7 @@ QStatusBar::item {border: None;}
LinkLabel {
qproperty-linkColor: #3399FF;
}
+
+QLineEdit[valid-filter=false] {
+ background-color: #661111 !important;
+}