about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Yip <yipdw@member.fsf.org>2017-12-30 17:15:20 -0600
committerDavid Yip <yipdw@member.fsf.org>2017-12-30 17:15:20 -0600
commit513d982f29f4ce4df163c53e4891663ce6742a39 (patch)
tree1ac27ade0ac1cde67f9dbe951a3dfc8319ed385c
parent7174d1c955116e142754189e6169d9b31b599070 (diff)
Use ~ notation in components for image references
This uses (more or less) absolute references to external assets, which
allows imported stylesheets (like components.scss) to work from other
locations that may not have the expected path structure (e.g. the win95
theme).
-rw-r--r--app/javascript/styles/mastodon/components.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/styles/mastodon/components.scss b/app/javascript/styles/mastodon/components.scss
index 207406cc0..0366d7cba 100644
--- a/app/javascript/styles/mastodon/components.scss
+++ b/app/javascript/styles/mastodon/components.scss
@@ -1758,7 +1758,7 @@
   position: absolute;
   top: 0;
   left: 0;
-  background: lighten($ui-base-color, 13%) url('../images/wave-drawer.png') no-repeat bottom / 100% auto;
+  background: lighten($ui-base-color, 13%) url('~images/wave-drawer.png') no-repeat bottom / 100% auto;
   box-sizing: border-box;
   padding: 0;
   display: flex;
@@ -1773,7 +1773,7 @@
   }
 
   > .mastodon {
-    background: url('../images/mastodon-drawer.png') no-repeat left bottom / contain;
+    background: url('~images/mastodon-drawer.png') no-repeat left bottom / contain;
     flex: 1;
   }
 }