fancy menu theming
This commit is contained in:
parent
4e60008684
commit
f4f72447e6
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
|||||||
|
lubuntu-artwork (25.04.2~ppa2) plucky; urgency=medium
|
||||||
|
|
||||||
|
* Added theming for Fancy Menu.
|
||||||
|
|
||||||
|
-- Walter Lapchynski <wxl@ubuntu.com> Thu, 13 Feb 2025 07:00:00 +0000
|
||||||
|
|
||||||
lubuntu-artwork (25.04.1) plucky; urgency=medium
|
lubuntu-artwork (25.04.1) plucky; urgency=medium
|
||||||
|
|
||||||
* Welcome to Plucky Puffin!
|
* Welcome to Plucky Puffin!
|
||||||
|
@ -300,15 +300,17 @@ TrayIcon {
|
|||||||
* Main menu
|
* Main menu
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#MainMenu {
|
#MainMenu,
|
||||||
|
#FancyMenu {
|
||||||
|
color: #D2D8E0;
|
||||||
margin: 2px;
|
margin: 2px;
|
||||||
padding: 2px;
|
padding: 2px;
|
||||||
border: 0px solid rgba(0, 0, 0, 30%);
|
border: 0px solid rgba(0, 0, 0, 30%);
|
||||||
background: rgba(0, 0, 0, 0%);
|
background: rgba(0, 0, 0, 0%);
|
||||||
qproperty-icon: url(mainmenu.svg);
|
qproperty-icon: url(mainmenu.svg);
|
||||||
color: #D2D8E0;
|
|
||||||
}
|
}
|
||||||
#MainMenu:hover {
|
#MainMenu:hover,
|
||||||
|
#FancyMenu:hover {
|
||||||
border: 1px solid rgb(39, 44, 53);
|
border: 1px solid rgb(39, 44, 53);
|
||||||
background: rgb(79, 86, 101);
|
background: rgb(79, 86, 101);
|
||||||
}
|
}
|
||||||
@ -340,7 +342,8 @@ TrayIcon {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#MainMenu QLineEdit {
|
#MainMenu QLineEdit,
|
||||||
|
#FancyMenu #AppView {
|
||||||
background: rgb(64, 69, 82);
|
background: rgb(64, 69, 82);
|
||||||
border: 2px solid #2D303B;
|
border: 2px solid #2D303B;
|
||||||
padding: 4px;
|
padding: 4px;
|
||||||
@ -349,7 +352,6 @@ TrayIcon {
|
|||||||
color: #D2D8E0;
|
color: #D2D8E0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#MainMenu ActionView {
|
#MainMenu ActionView {
|
||||||
border: none;
|
border: none;
|
||||||
background: rgb(64, 69, 82);
|
background: rgb(64, 69, 82);
|
||||||
@ -525,3 +527,71 @@ TrayIcon {
|
|||||||
margin-right: 2px;
|
margin-right: 2px;
|
||||||
margin-left: 2px;
|
margin-left: 2px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Fancy Menu
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#FancyMenu QListView::item {
|
||||||
|
color: #D2D8E0;
|
||||||
|
background-color: #2d313c;
|
||||||
|
padding-left: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#FancyMenu QListView::item::selected {
|
||||||
|
color: #D2D8E0;
|
||||||
|
background: rgb(79, 86, 101);
|
||||||
|
}
|
||||||
|
|
||||||
|
#FancyMenu #AppView::item {
|
||||||
|
color: #D2D8E0;
|
||||||
|
background: rgb(64, 69, 82);
|
||||||
|
}
|
||||||
|
|
||||||
|
#FancyMenu #AppView::item::selected {
|
||||||
|
color: #D2D8E0;
|
||||||
|
background: #3c8ce6;
|
||||||
|
}
|
||||||
|
|
||||||
|
#FancyMenu QToolButton {
|
||||||
|
background: rgb(64, 69, 82);
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
qproperty-iconSize: 26px;
|
||||||
|
border: 1px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
#FancyMenu QToolButton:hover,
|
||||||
|
#FancyMenu QToolButton:focus {
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
qproperty-iconSize: 26px;
|
||||||
|
background: rgb(79, 86, 101);
|
||||||
|
border: 1px solid transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
LXQtFancyMenuWindow {
|
||||||
|
background: #2d313c;
|
||||||
|
}
|
||||||
|
|
||||||
|
#FancyMenu QLineEdit:focus {
|
||||||
|
border: 2px solid #3c8ce6;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#FancyMenu QListView {
|
||||||
|
color: #D2D8E0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#FancyMenu QLineEdit {
|
||||||
|
background: rgb(64, 69, 82);
|
||||||
|
border: 2px solid #2D303B;
|
||||||
|
border-radius: 2px;
|
||||||
|
padding: 4px;
|
||||||
|
margin-right: 2px;
|
||||||
|
margin-left: 2px;
|
||||||
|
color: #D2D8E0;
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user