/usr/share/peony/peony-desktop.css is in peony-common 1.1.1-0ubuntu2.
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 | /* Everything that themes must not override goes in this file */
/* This is loaded with GTK_STYLE_PROVIDER_PRIORITY_APPLICATION and overrides themes */
.peony-desktop-window,
.peony-desktop:not(:selected):not(:active):not(.rubberband){
background-color: transparent;
}
/* desktop mode */
.peony-desktop.peony-canvas-item {
color: #ffffff;
text-shadow: 1px 1px alpha (#000000, 0.8);
}
.peony-desktop.peony-canvas-item:selected,
.peony-desktop.peony-canvas-item:active,
.peony-desktop.peony-canvas-item:hover {
text-shadow: none;
}
/* remove possible theme settings for borders on scrolledwindow with gtk+-3.20 */
.peony-desktop-window > grid.vertical > box.vertical > box.vertical > box.vertical > scrolledwindow,
.peony-desktop-window > grid.vertical > box.vertical > box.vertical > box.vertical > scrolledwindow.frame,
.peony-desktop-window > grid.vertical > box.vertical > box.vertical > box.vertical > scrolledwindow > widget.view.peony-desktop {
border-width: 0px;
border-style: none;
border-radius: 0px;
}
/* This is not on the desktop but will cause errors if themes can override */
/* Padding in slider buttons causes GTK errors in GTK 3.20 or later */
.peony-navigation-window .slider-button {
padding: 0px;
}
|