forked from treehouse/mastodon
Fix styling of polls in JS-less fallback on public pages (#13436)
parent
c99bc5d51b
commit
9d24bcc5e6
|
@ -12,14 +12,16 @@
|
||||||
%span.poll__number><
|
%span.poll__number><
|
||||||
- if own_votes.include?(index)
|
- if own_votes.include?(index)
|
||||||
%i.poll__voted__mark.fa.fa-check
|
%i.poll__voted__mark.fa.fa-check
|
||||||
= percent.round
|
= "#{percent.round}%"
|
||||||
= Formatter.instance.format_poll_option(status, option, autoplay: autoplay)
|
%span.poll__option__text
|
||||||
|
= Formatter.instance.format_poll_option(status, option, autoplay: autoplay)
|
||||||
|
|
||||||
%span.poll__chart{ style: "width: #{percent}%" }
|
%span.poll__chart{ style: "width: #{percent}%" }
|
||||||
- else
|
- else
|
||||||
%label.poll__option><
|
%label.poll__option><
|
||||||
%span.poll__input{ class: poll.multiple? ? 'checkbox' : nil}><
|
%span.poll__input{ class: poll.multiple? ? 'checkbox' : nil}><
|
||||||
= Formatter.instance.format_poll_option(status, option, autoplay: autoplay)
|
%span.poll__option__text
|
||||||
|
= Formatter.instance.format_poll_option(status, option, autoplay: autoplay)
|
||||||
.poll__footer
|
.poll__footer
|
||||||
- unless show_results
|
- unless show_results
|
||||||
%button.button.button-secondary{ disabled: true }
|
%button.button.button-secondary{ disabled: true }
|
||||||
|
|
Loading…
Reference in New Issue