diff options
author | lukefromdc <[email protected]> | 2016-07-29 17:12:55 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-08-04 15:30:23 +0200 |
commit | 8d658fa4f3790972c38e04df23eaa7b88b5066d8 (patch) | |
tree | 0a8a91d1a3b44b30a8b779c156ebf172e157ac4c | |
parent | 190d8b70717fc2b91507ae7695acdeee894c11cd (diff) | |
download | caja-8d658fa4f3790972c38e04df23eaa7b88b5066d8.tar.bz2 caja-8d658fa4f3790972c38e04df23eaa7b88b5066d8.tar.xz |
caja.css: include GTK 3.21 desktop selectors
The selectors to hold the desktop transparent in GTK 3.21 or later builds seem to be ignored in GTK 3.20 or older builds where Caja draws the desktop. Ideally some makefile work and two raw files would apply this only in GTK 3.21 and later builds
-rw-r--r-- | data/caja.css | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/data/caja.css b/data/caja.css index b507e5ef..f0b8a607 100644 --- a/data/caja.css +++ b/data/caja.css @@ -3,6 +3,15 @@ border-radius: 3px; } +.caja-desktop-window, +.caja-desktop:not(:selected):not(:active):not(.rubberband){ + background-color: transparent; +} +/*color of desktop when compositor is not available*/ +.caja-fallback-desktop-background{ + background-color: #114466; +} + /* desktop mode */ .caja-desktop.caja-canvas-item { color: #ffffff; |