Merge pull request #2014 from consul/poll_ui_fixes

Polls UI fixes
This commit is contained in:
Alberto García
2017-10-07 21:18:48 +02:00
committed by GitHub
4 changed files with 20 additions and 8 deletions

View File

@@ -335,8 +335,16 @@
word-wrap: break-word;
}
.callout.proposal-retired {
font-size: $base-font-size;
.callout {
&.token-message {
background-color: #fff;
border-color: $info-border;
color: $color-info;
}
&.proposal-retired {
font-size: $base-font-size;
}
}
.social-share-full .social-share-button {

View File

@@ -39,12 +39,6 @@
</div>
<% else %>
<% if poll_voter_token(@poll, current_user).empty? %>
<div class="callout primary js-token-message" style="display: none">
<%= t('poll_questions.show.voted_token') %>
</div>
<% end %>
<% if current_user && !@poll.votable_by?(current_user) %>
<div class="callout warning">
<%= t("polls.show.already_voted_in_web") %>
@@ -55,6 +49,14 @@
<% @questions.each do |question| %>
<%= render 'polls/questions/question', question: question, token: @token %>
<% end %>
<% if poll_voter_token(@poll, current_user).empty? %>
<div class="callout token-message js-token-message" style="display: none">
<%= t('poll_questions.show.voted_token') %>
</div>
<% end %>
<%= link_to t("polls.show.participate_in_other_polls"), polls_path, class: "button hollow" %>
</div>
</div>

View File

@@ -494,6 +494,7 @@ en:
zoom_plus: Expand image
read_more: "Read more about %{answer}"
read_less: "Read less about %{answer}"
participate_in_other_polls: Participate in other polls
poll_questions:
create_question: "Create question"
default_valid_answers: "Yes, No"

View File

@@ -494,6 +494,7 @@ es:
zoom_plus: Ampliar imagen
read_more: "Leer más sobre %{answer}"
read_less: "Leer menos sobre %{answer}"
participate_in_other_polls: Participar en otras votaciones
poll_questions:
create_question: "Crear pregunta para votación"
default_valid_answers: "Sí, No"