add tooltip and better color to reply jump arrows
This commit is contained in:
parent
7f4ee00228
commit
cecbede5db
|
@ -11,9 +11,9 @@
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class='span11 topic-body'>
|
<div class='span11 topic-body'>
|
||||||
{{#if view.previousPost}}<a href='{{unbound url}}' class="arrow"><i class='icon icon-arrow-up'></i></a>{{/if}}
|
{{#if view.previousPost}}<a href='{{unbound url}}' class="arrow" title="jump to earlier reply"><i class='icon icon-arrow-up'></i></a>{{/if}}
|
||||||
{{{unbound cooked}}}
|
{{{unbound cooked}}}
|
||||||
{{#unless view.previousPost}}<a href='{{unbound url}}' class="arrow"><i class='icon icon-arrow-down'></i></a>{{/unless}}
|
{{#unless view.previousPost}}<a href='{{unbound url}}' class="arrow" title="jump to later reply"><i class='icon icon-arrow-down'></i></a>{{/unless}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{/with}}
|
{{/with}}
|
||||||
|
|
|
@ -431,6 +431,7 @@
|
||||||
a.arrow {
|
a.arrow {
|
||||||
float: right;
|
float: right;
|
||||||
margin: 3px 0 3px 0;
|
margin: 3px 0 3px 0;
|
||||||
|
color: grey;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue