some more fixes for the show pages
|
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
|
Before Width: | Height: | Size: 4 KiB After Width: | Height: | Size: 4 KiB |
|
Before Width: | Height: | Size: 4 KiB After Width: | Height: | Size: 4 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 4.3 KiB |
|
|
@ -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 {
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
|
|
@ -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>
|
||||||
|
|
|
||||||
|
|
@ -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'
|
||||||
|
|
|
||||||