summaryrefslogtreecommitdiff
path: root/src/caja-application.c
diff options
context:
space:
mode:
authorlukefromdc <[email protected]>2016-12-04 15:23:03 -0500
committerlukefromdc <[email protected]>2016-12-04 15:23:03 -0500
commitaa7af8673a3d894fc99a00d1a30ea57f44e3e1c5 (patch)
treed6c19dd79e6c83f61ce629316a1ba97e62ea6e1b /src/caja-application.c
parent6ec1d86a500590e5a02bbddf054b88897f2a973c (diff)
downloadcaja-aa7af8673a3d894fc99a00d1a30ea57f44e3e1c5.tar.bz2
caja-aa7af8673a3d894fc99a00d1a30ea57f44e3e1c5.tar.xz
Rename labels: follow theme if available, sane default
Fixes https://github.com/mate-desktop/caja/issues/688 *Split caja.css. Much of it can load with GTK_STYLE_PROVIDER_PRIORITY_THEME to allow themes that support Caja to set their own style. CSS required for the desktop background to show and to keep the white text suitable for most backgrounds needs GTK_STYLE_PROVIDER_PRIORITY_APPLICATION so it is loaded separately from new file caja-desktop.css *Move all css items that must not be overridden by themes (most of them are for the desktop) to caja-desktop.css and keep those that are only needed when themes do not set them at all in caja.css
Diffstat (limited to 'src/caja-application.c')
-rw-r--r--src/caja-application.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/caja-application.c b/src/caja-application.c
index bf8404d9..972b11b0 100644
--- a/src/caja-application.c
+++ b/src/caja-application.c
@@ -2221,9 +2221,24 @@ init_icons_and_styles (void)
} else {
gtk_style_context_add_provider_for_screen (gdk_screen_get_default (),
GTK_STYLE_PROVIDER (provider),
+ GTK_STYLE_PROVIDER_PRIORITY_THEME);
+ }
+
+/* add our desktop CSS provider, ensures the desktop background does not get covered */
+ provider = gtk_css_provider_new ();
+ gtk_css_provider_load_from_path (provider,
+ CAJA_DATADIR G_DIR_SEPARATOR_S "caja-desktop.css", &error);
+
+ if (error != NULL) {
+ g_warning ("Can't parse Caja' CSS custom description: %s\n", error->message);
+ g_error_free (error);
+ } else {
+ gtk_style_context_add_provider_for_screen (gdk_screen_get_default (),
+ GTK_STYLE_PROVIDER (provider),
GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
}
+
g_object_unref (provider);
/* initialize search path for custom icons */