Fix Bootstrap3 regression: reshares in SPV
This commit is contained in:
parent
ab1e879cc2
commit
06a1a1c978
2 changed files with 85 additions and 86 deletions
|
|
@ -4,7 +4,6 @@
|
||||||
|
|
||||||
#single-post-content {
|
#single-post-content {
|
||||||
border-right: solid 1px #cccccc;
|
border-right: solid 1px #cccccc;
|
||||||
padding-right: 12px;
|
|
||||||
#head {
|
#head {
|
||||||
padding-bottom: 10px;
|
padding-bottom: 10px;
|
||||||
border-bottom: 1px solid $border-grey;
|
border-bottom: 1px solid $border-grey;
|
||||||
|
|
@ -60,7 +59,6 @@
|
||||||
.img { margin-right: 10px; }
|
.img { margin-right: 10px; }
|
||||||
}
|
}
|
||||||
#single-post-actions {
|
#single-post-actions {
|
||||||
padding-right: 5px;
|
|
||||||
i {
|
i {
|
||||||
font-size: 28px;
|
font-size: 28px;
|
||||||
line-height: 30px;
|
line-height: 30px;
|
||||||
|
|
|
||||||
|
|
@ -1,21 +1,21 @@
|
||||||
<div id='head' class='row'>
|
<div id="head" class="row">
|
||||||
<div class='col-md-12
|
<div class="col-md-12">
|
||||||
'>
|
<div class="row">
|
||||||
<div id='post-info' class='col-md-8'>
|
<div id="post-info" class="col-md-8">
|
||||||
<div class="img pull-left">
|
<div class="img pull-left">
|
||||||
{{#if root}}
|
{{#if root}}
|
||||||
{{#linkToAuthor root.author}}
|
{{#linkToAuthor root.author}}
|
||||||
{{{personImage this 'medium'}}}
|
{{{personImage this "medium"}}}
|
||||||
{{/linkToAuthor}}
|
{{/linkToAuthor}}
|
||||||
{{else}}
|
{{else}}
|
||||||
{{#linkToAuthor author}}
|
{{#linkToAuthor author}}
|
||||||
{{{personImage this 'medium'}}}
|
{{{personImage this "medium"}}}
|
||||||
{{/linkToAuthor}}
|
{{/linkToAuthor}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="bd">
|
<div class="bd">
|
||||||
<span class='author'>
|
<span class="author">
|
||||||
{{#if root}}
|
{{#if root}}
|
||||||
{{#linkToAuthor root.author}}
|
{{#linkToAuthor root.author}}
|
||||||
{{name}}
|
{{name}}
|
||||||
|
|
@ -27,13 +27,13 @@
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
<div class='info'>
|
<div class="info">
|
||||||
{{#if public}}
|
{{#if public}}
|
||||||
<span class='post_scope' title="{{t "stream.public"}}">
|
<span class="post_scope" title="{{t "stream.public"}}">
|
||||||
<i class="entypo globe small"></i>
|
<i class="entypo globe small"></i>
|
||||||
</span>
|
</span>
|
||||||
{{else}}
|
{{else}}
|
||||||
<span class='post_scope' title="{{t "stream.limited"}}">
|
<span class="post_scope" title="{{t "stream.limited"}}">
|
||||||
<i class="entypo lock small"></i>
|
<i class="entypo lock small"></i>
|
||||||
</span>
|
</span>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
@ -57,24 +57,24 @@
|
||||||
{{t "stream.via" provider=provider_display_name}}
|
{{t "stream.via" provider=provider_display_name}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
{{/if}}
|
{{/if}}
|
||||||
<div class='status-message-location' />
|
<div class="status-message-location" />
|
||||||
</div>
|
</div>
|
||||||
{{#unless root}}
|
{{#unless root}}
|
||||||
<div id='single-post-moderation' />
|
<div id="single-post-moderation" />
|
||||||
{{/unless}}
|
{{/unless}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{#unless root}}
|
{{#unless root}}
|
||||||
<div id='single-post-actions' class='col-md-4' />
|
<div id="single-post-actions" class="col-md-4" />
|
||||||
{{/unless}}
|
{{/unless}}
|
||||||
</div>
|
</div>
|
||||||
{{#if root}}
|
{{#if root}}
|
||||||
<div class='row reshare'>
|
<div class="row reshare">
|
||||||
<div class='col-md-8' id='reshare-info'>
|
<div class="col-md-8" id="reshare-info">
|
||||||
<i class='entypo retweet small pull-left'></i>
|
<i class="entypo retweet small pull-left"></i>
|
||||||
<div class="img pull-left">
|
<div class="img pull-left">
|
||||||
{{#linkToAuthor author}}
|
{{#linkToAuthor author}}
|
||||||
{{{personImage this 'small'}}}
|
{{{personImage this "small"}}}
|
||||||
{{/linkToAuthor}}
|
{{/linkToAuthor}}
|
||||||
</div>
|
</div>
|
||||||
<span class="author">
|
<span class="author">
|
||||||
|
|
@ -88,14 +88,15 @@
|
||||||
<time datetime="{{created_at}}" title="{{localTime created_at}}" />
|
<time datetime="{{created_at}}" title="{{localTime created_at}}" />
|
||||||
</a>
|
</a>
|
||||||
</span>
|
</span>
|
||||||
<span id='single-post-moderation' />
|
<span id="single-post-moderation" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id='single-post-actions' class='col-md-4' />
|
<div id="single-post-actions" class="col-md-4" />
|
||||||
</div>
|
</div>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
<div id='body' class='row'>
|
</div>
|
||||||
<div id='real-post-content' class='post-content col-md-12'>
|
<div id="body" class="row">
|
||||||
|
<div id="real-post-content" class="post-content col-md-12">
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue