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