FEATURE: restyle poll buttons

This commit is contained in:
Sam 2014-08-23 10:50:45 +10:00
parent af71307363
commit 244323d218
2 changed files with 11 additions and 4 deletions

View file

@ -14,7 +14,8 @@
{{/each}}
</table>
<button {{action toggleShowResults}} class="btn btn-small">
<div class='row'>
<button {{action toggleShowResults}} class="btn btn-small show-results">
{{#if showResults}}
<i class="fa fa-eye-slash"></i>
{{i18n poll.results.hide}}
@ -25,7 +26,7 @@
</button>
{{#if showToggleClosePoll}}
<button {{action toggleClosePoll}} class="btn btn-small">
<button {{action toggleClosePoll}} class="btn btn-small toggle-poll">
{{#if poll.closed}}
<i class="fa fa-unlock-alt"></i>
{{i18n poll.open_poll}}
@ -35,6 +36,7 @@
{{/if}}
</button>
{{/if}}
</div>
{{#if loading}}
<i class="fa fa-spin fa-spinner"></i>

View file

@ -158,8 +158,9 @@ register_css <<CSS
cursor: pointer;
}
.poll-ui button:first-of-type {
margin-left: 20px;
.poll-ui .row {
padding-left: 15px;
padding-top: 10px;
}
@ -192,4 +193,8 @@ register_css <<CSS
margin-right: 0px;
}
.poll-ui .toggle-poll {
float: right;
}
CSS