-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make transparency complete #101
base: master
Are you sure you want to change the base?
Conversation
@@ -43,7 +43,7 @@ LXQtPanelPlugin > QToolButton { | |||
Plugin > QToolButton:hover, | |||
Plugin > QWidget > QToolButton:hover, | |||
LXQtPanelPlugin > QToolButton:hover { | |||
color: #0a0a2b; | |||
background: #1899da; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Golden rule: no background color without a foreground color, and conversely.
I see that the rule wasn't followed in some places of this theme before your change either. Sooner or later, you'll see unreadable texts somewhere. It needs to be corrected.
LXQtPanelPlugin > QToolButton { | ||
background: #edeceb; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Golden rule.
@@ -19,7 +19,6 @@ Plugin > QToolButton, | |||
Plugin > QWidget > QToolButton, | |||
Plugin > QWidget > QToolButton > QWidget > QToolButton, | |||
LXQtPanelPlugin > QToolButton { | |||
background: #000000; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Golden rule.
Please also note that background/foreground colors are sometimes inherited from previous blocks, so that they don't need to be set in all places. But they need to be applied together in all places where one of them exists. |
Partial fix for #100