mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 23:58:31 -05:00
FEATURE: restyle poll buttons
This commit is contained in:
parent
af71307363
commit
244323d218
2 changed files with 11 additions and 4 deletions
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue