Skip to content

Commit

Permalink
Transparent backgroundcolor in buttons and clock (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
stefonarch authored Feb 27, 2024
1 parent 65bbc5f commit fd4581f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
15 changes: 8 additions & 7 deletions themes/Arch-Colors/lxqt-panel.qss
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ QMenu::indicator:non-exclusive:checked {
*/
#MainMenu {
qproperty-icon: url(mainmenu.svg);
background: #162635;
background: transparent;
margin: 0px;
padding: 3px;
color: #e7eff1;
Expand Down Expand Up @@ -188,9 +188,8 @@ QMenu::indicator:non-exclusive:checked {
*/
#FancyMenu {
qproperty-icon: url(mainmenu.svg);
background: #162635;
background: transparent;
margin: 0px;
padding: 3px;
color: #e7eff1;
}

Expand Down Expand Up @@ -364,12 +363,10 @@ StatusNotifierButton {
#VolumePlugin QToolButton {
margin: 2px;
padding: 2px;
background: #162635;
}

#VolumePlugin QToolButton:hover {
background: #1899da;
border-radius: 2px;
}

VolumePopup {
Expand Down Expand Up @@ -418,15 +415,15 @@ VolumePopup > QSlider::sub-page:vertical {
#WorldClock {
margin: 0px;
padding: 0px;
background-color: #162635;
background: transparent;
}

#WorldClock QLabel {
padding: 2px;
margin: 0px;
color: #e7eff1;
qproperty-alignment: alignCenter;
background-color: #162635;
background: transparent;
}

/*
Expand Down Expand Up @@ -635,6 +632,10 @@ QCalendarWidget QSpinBox {
/*
* Backlight Plugin
*/

#BacklightPlugin QToolButton:hover {
background: #1899da;
}
#Backlight > SliderDialog > QToolButton {
margin: 2px;
padding: 2px;
Expand Down
3 changes: 2 additions & 1 deletion themes/Clearlooks/lxqt-panel.qss
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,13 @@ Plugin > QWidget > QToolButton,
Plugin > QWidget > QToolButton > QWidget > QToolButton,

LXQtPanelPlugin > QToolButton {
background: #edeceb;
background: transparent;
margin: 0px;
padding: 2px;
color: #1a1a1a;
}


QToolTip {
border: 1px solid palette(text);
background: palette(window);
Expand Down
10 changes: 4 additions & 6 deletions themes/Valendas/lxqt-panel.qss
Original file line number Diff line number Diff line change
Expand Up @@ -185,13 +185,13 @@ QMenu QToolButton {

#FancyMenu {
qproperty-icon: url(mainmenu.svg);
background-color: rgba(0, 0, 0,);
background: transparent;
margin-right: 5px;
color: #ebebeb;
}

#FancyMenu:hover {
background-color: rgba(5, 0, 0, 45%);
color: white;
}

#FancyMenu:pressed {
Expand Down Expand Up @@ -248,8 +248,6 @@ LXQtFancyMenuWindow {
border: 1px solid grey;
}

#FancyMenu QToolButton:focus

#FancyMenu QToolButton:pressed {
background: #b6b6b6;
border: 1px solid grey;
Expand Down Expand Up @@ -705,14 +703,14 @@ QCalendarWidget QSpinBox {
*/
#WorldClock {
color: #eef5fc;
background: #2f2f2f;
background: transparent;
}

#WorldClock QLabel {
margin: 2px;
padding: 4px;
color: #eef5fc;
background: #2f2f2f;
background: transparent;
}

/*
Expand Down

0 comments on commit fd4581f

Please sign in to comment.