summaryrefslogtreecommitdiff
path: root/themes/xfce/gtk-3.0/gtk.css
diff options
context:
space:
mode:
authorNicolas Iooss <nicolas.iooss_xfce@m4x.org>2014-06-09 12:34:03 +0200
committerPeter de Ridder <peter@xfce.org>2015-02-18 21:11:47 +0100
commit9cee5b99364e77567a56385af63fc1d5a8f456be (patch)
treefcbfdb83420e73a4a344c7fa26aba8c0f383b855 /themes/xfce/gtk-3.0/gtk.css
parent098cec3528eeda44b9e1ec23e4bab55ea1db15c5 (diff)
downloadgtk-xfce-engine-9cee5b99364e77567a56385af63fc1d5a8f456be.tar.gz
Fix text-shadow value to silence a gtk3 warning
When running gtk applications in XFCE, the following warning appears in the console: (gedit:9384): Gtk-WARNING **: Theme parsing error: gtk.css:102:18: Not using units is deprecated. Assuming 'px'. (gedit:9384): Gtk-WARNING **: Theme parsing error: gtk.css:102:20: Not using units is deprecated. Assuming 'px'. These warning are triggered by such lines: text-shadow: 1 1 white; The fix consists in replacing "1" by "1px" in such lines.
Diffstat (limited to 'themes/xfce/gtk-3.0/gtk.css')
-rw-r--r--themes/xfce/gtk-3.0/gtk.css2
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/xfce/gtk-3.0/gtk.css b/themes/xfce/gtk-3.0/gtk.css
index 83489ac..95183f6 100644
--- a/themes/xfce/gtk-3.0/gtk.css
+++ b/themes/xfce/gtk-3.0/gtk.css
@@ -99,7 +99,7 @@
color: @fg_insensitive;
background-color: @bg_insensitive;
border-color: darker(@bg_insensitive);
- text-shadow: 1 1 white;
+ text-shadow: 1px 1px white;
}
*:hover {