some more fixes for the show pages

This commit is contained in:
Maxwell Salzberg 2012-03-28 13:56:52 -07:00
parent 283e730430
commit 5dbfd89d93
10 changed files with 11 additions and 10 deletions

View file

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

View file

Before

Width:  |  Height:  |  Size: 4 KiB

After

Width:  |  Height:  |  Size: 4 KiB

View file

Before

Width:  |  Height:  |  Size: 4 KiB

After

Width:  |  Height:  |  Size: 4 KiB

View file

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

View file

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

View file

@ -1,3 +1,4 @@
/* variables */ /* variables */
$light-grey: #999; $light-grey: #999;
@ -88,7 +89,7 @@ $pane-width: 420px;
@mixin dark-hatched-bg() { @mixin dark-hatched-bg() {
background-color: #444; background-color: #444;
background-image: url("../images/hatched-bg-dark.png"); background-image: image-url("hatched-bg-dark.png");
} }
@mixin photo-shadow() { @mixin photo-shadow() {
@ -108,15 +109,15 @@ $pane-width: 420px;
/* bootstrap extentions */ /* bootstrap extentions */
.icon-red { .icon-red {
background-image: url(../img/glyphicons-halflings-red.png); background-image: image-url("img/glyphicons-halflings-red.png");
} }
.icon-green { .icon-green {
background-image: url(../img/glyphicons-halflings-green.png); background-image: image-url("img/glyphicons-halflings-green.png");
} }
.icon-blue { .icon-blue {
background-image: url(../img/glyphicons-halflings-blue.png); background-image: image-url("img/glyphicons-halflings-blue.png");
} }
/* styles */ /* styles */
@ -516,7 +517,7 @@ body.idle {
border-top: 1px solid #444; border-top: 1px solid #444;
text-align: left; text-align: left;
background-image: url("../images/hatched-bg-dark.png"); background-image: image-url("hatched-bg-dark.png");
} }
#new-post-comment-container { #new-post-comment-container {

View file

@ -45,7 +45,7 @@
<div id="post-info-sneaky" class="passive"> <div id="post-info-sneaky" class="passive">
<div id="post-info-container-sneaky"> <div id="post-info-container-sneaky">
<a href="#" rel="invoke-interaction-pane" class="invoker"> <a href="#" rel="invoke-interaction-pane" class="invoker">
<img src="/images/up-tick-inset.png" class="info-tick"/> <img src="{{imageUrl "up-tick-inset.png"}}" class="info-tick"/>
<a href="/" title="{{t "header.home"}}" class="home-button"> <a href="/" title="{{t "header.home"}}" class="home-button">
<i class="icon-home icon-white"></i> <i class="icon-home icon-white"></i>
</a> </a>

View file

@ -2,7 +2,7 @@
<div id="post-info" style="display:none;"> <div id="post-info" style="display:none;">
<div id="post-info-container"> <div id="post-info-container">
<img src="/images/down-tick-inset.png" class="info-tick"/> <img src="{{imageUrl "down-tick-inset.png"}}" class="info-tick"/>
<div id="post-reactions"> </div> <div id="post-reactions"> </div>
<div id="new-post-comment"> </div> <div id="new-post-comment"> </div>

View file

@ -1,11 +1,11 @@
<a href="#" class="nav-arrow left" id="forward"> <a href="#" class="nav-arrow left" id="forward">
<div class="nav-arrow-inner"> <div class="nav-arrow-inner">
<img src="/images/arrow-left.png" /> <img src="{{imageUrl "arrow-left.png"}}" />
</div> </div>
</a> </a>
<a href="#" class="nav-arrow right" id="back"> <a href="#" class="nav-arrow right" id="back">
<div class="nav-arrow-inner"> <div class="nav-arrow-inner">
<img src="/images/arrow-right.png" /> <img src="{{imageUrl "arrow-right.png"}}" />
</div> </div>
</a> </a>

View file

@ -23,7 +23,7 @@
= page_title yield(:page_title) = page_title yield(:page_title)
= include_base_css_framework(:bootstrap) = include_base_css_framework(:bootstrap)
= stylesheet_link_tag :default, :new_templates, :media => 'all' = stylesheet_link_tag :default, 'new-templates', :media => 'all'
- if rtl? - if rtl?
= stylesheet_link_tag :rtl, :media => 'all' = stylesheet_link_tag :rtl, :media => 'all'