/usr/share/lxqt/themes/system/lxqt-panel.qss is in lxqt-common 0.11.2-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | /*
* Plain widget theme, only specific widgets are themed
*/
/*
* General panel settings
*/
LXQtPanel #BackgroundWidget{
background: palette(window);
}
/*
* TaskBar
*/
#TaskBar QToolButton[urgent="true"] {
color: palette(highlighted-text);
background: palette(highlight);
}
/*
* Desktopswitch
*/
#DesktopSwitch QToolButton[urgent="true"] {
color: palette(highlighted-text);
background: palette(highlight);
}
/*
* Spacer
*/
#Spacer {
background-position: center center;
}
#Spacer[type="lined"] {
background-image: url(/spacer-plugin/spacer-line.svg);
}
#Spacer[type="dotted"] {
background-image: url(/spacer-plugin/spacer-dots.svg);
}
#Spacer[orientation="horizontal"] {
background-repeat: repeat-y;
margin-top: 2px;
margin-bottom: 2px;
}
#Spacer[orientation="vertical"] {
background-repeat: repeat-x;
margin-right: 2px;
margin-left: 2px;
}
/*
* Main menu plugin
*/
#MainMenu {
qproperty-icon: url();
}
|