[gnome-mines/wip/cssstyling] Fix paths to image files in css



commit 4c61630fac74e7f6019700a45dfe20a6a5336ab7
Author: Michael Catanzaro <mcatanzaro gnome org>
Date:   Sun Apr 20 09:31:12 2014 -0500

    Fix paths to image files in css

 data/gnome-mines.css.in |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/data/gnome-mines.css.in b/data/gnome-mines.css.in
index 133358a..9ef6cc1 100644
--- a/data/gnome-mines.css.in
+++ b/data/gnome-mines.css.in
@@ -36,19 +36,19 @@ Changes are applied instantly and globally, for the whole application.
 }
 
 .flag {
-  background-image:url('/devel/share/gnome-mines/flag.svg');
+  background-image:url('@pkgdatadir@/flag.svg');
   font-size:0;
   background-color:#8ae234;
 }
 
 .exploded {
-  background-image:url('/devel/share/gnome-mines/bang.svg');
+  background-image:url('@pkgdatadir@/bang.svg');
   font-size:0;
   background-color:#cc0000;
 }
 
 .maybe {
-  background-image:url('/devel/share/gnome-mines/flag-question.svg');
+  background-image:url('@pkgdatadir@/flag-question.svg');
   font-size:0;
   background-color:#fce94f;
 }
@@ -59,7 +59,7 @@ Changes are applied instantly and globally, for the whole application.
 }
 
 .mine {
-  background-image:url('/devel/share/gnome-mines/mine.svg');
+  background-image:url('@pkgdatadir@/mine.svg');
   font-size:0;
   background-color:#729fcf;
 }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]