From df9563abed07b6061de723a395e9142233de15b8 Mon Sep 17 00:00:00 2001 From: dpwegener Date: Wed, 28 Oct 2015 22:20:38 -0500 Subject: [PATCH] Fix GTK theme parse error The Irradiance-X unity.css file has an incorrect shade definition for the box-shadow entry in the UnityDecoration.top section. There is an extraneous rgba before the reference to @darg_bg_color. --- Irradiance-X/gtk-3.0/apps/unity.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Irradiance-X/gtk-3.0/apps/unity.css b/Irradiance-X/gtk-3.0/apps/unity.css index 770fe54..26c1f6c 100644 --- a/Irradiance-X/gtk-3.0/apps/unity.css +++ b/Irradiance-X/gtk-3.0/apps/unity.css @@ -26,7 +26,7 @@ UnityDecoration.top { padding: 1px 6px 0 6px; box-shadow: inset 0 0 transparent, inset 0 0 transparent, - inset 0 1px shade (rgba @dark_bg_color, 1.12), inset 0 0 transparent; + inset 0 1px shade (@dark_bg_color, 1.12), inset 0 0 transparent; background-color: transparent; background-clip: border-box;