Skip to content

Commit

Permalink
make css paths to images relative
Browse files Browse the repository at this point in the history
fixes #23
  • Loading branch information
lukebaker committed Sep 24, 2013
1 parent 7ee9708 commit 81852f0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions public/stylesheets/sass/screen.sass
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ label.over-apply
table.tablesorter
thead tr .header
padding-right: 12px
background-image: url(/images/bg-invert.gif)
background-image: url(../images/bg-invert.gif)
background-repeat: no-repeat
background-position: center right
cursor: pointer
Expand All @@ -318,9 +318,9 @@ table.tablesorter
background-color: #fefefe
thead tr
.headerSortUp
background-image: url(/images/asc-invert.gif)
background-image: url(../images/asc-invert.gif)
.headerSortDown
background-image: url(/images/desc-invert.gif)
background-image: url(../images/desc-invert.gif)

.twenty_pixel_font
font-size: 20px
Expand Down Expand Up @@ -634,7 +634,7 @@ p.add-idea
.divider
width: 78px
height: 350px
background-image: url('/images/homepage/arrow.png')
background-image: url('../images/homepage/arrow.png')
display: block
position: absolute
top: -20px
Expand Down
8 changes: 4 additions & 4 deletions public/stylesheets/sass/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ form#new_question_form{
}
h2 {
padding-left: 25px;
background: url(/images/blocked_cookies.png) no-repeat left center;
background: url(../images/blocked_cookies.png) no-repeat left center;
}
}
.interior-content {
Expand Down Expand Up @@ -338,7 +338,7 @@ ul.footer-social-icons {
li a {
display: block;
text-indent: -9999px;
background: url(/images/social_icons.png) no-repeat;
background: url(../images/social_icons.png) no-repeat;
background-size: 152px 64px;
float: left;
width: 32px;
Expand Down Expand Up @@ -371,7 +371,7 @@ ul.footer-social-icons {
only screen and (min--moz-device-pixel-ratio: 1.5),
only screen and (min-device-pixel-ratio: 1.5) {
li a {
background-image: url(/images/social_icons@2x.png);
background-image: url(../images/social_icons@2x.png);
}
}
}
Expand All @@ -384,7 +384,7 @@ ul.footer-social-icons {
display: block;
width: 139px;
height: 29px;
background: url(/images/powered-by-aoi.gif) no-repeat;
background: url(../images/powered-by-aoi.gif) no-repeat;
font-size: 0;
}
.powered-by:hover {
Expand Down
Loading

0 comments on commit 81852f0

Please sign in to comment.