/usr/share/lxqt/themes/frost/lxqt-notificationd.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 | Notification {
background:palette(text);
padding: 1px;
margin: 0px;
}
QLabel {
color: palette(window);
}
QToolButton {
margin: 1px;
border: 0px solid transparent;
padding: 0px;
font-size: 9pt;
color: hsv(0, 0, 64);
}
QToolButton:focus {
border: 0px solid hsv(0, 0, 160);
}
QToolButton:hover {
border: 0px solid hsv(0, 0, 240);
margin: 2px;
padding: 2px;
}
QToolButton:focus:hover {
border: 1px dashed hsv(0, 0, 255);
}
QToolButton:pressed {
background: hsv(0, 0, 160);
}
#appLabel {
color: palette(window);
}
#closeButton {
qproperty-icon: url(lxqt-runner/close.svg);
qproperty-iconSize: 18px;
}
|