diff --git a/app/assets/stylesheets/debates.scss b/app/assets/stylesheets/debates.scss index 5ca0559ec..dd29774a5 100644 --- a/app/assets/stylesheets/debates.scss +++ b/app/assets/stylesheets/debates.scss @@ -163,7 +163,7 @@ padding-top: 0; } - .icon-comment-quotes { + .icon-debates { color: $debates; font-size: rem-calc(36); line-height: $line-height; @@ -191,7 +191,7 @@ font-weight: lighter; margin-bottom: 0; - .icon-chat-bubble-two { + .icon-comments { font-size: rem-calc(16); vertical-align: top; } @@ -280,7 +280,7 @@ } } - .icon-comment-quotes { + .icon-debates { font-size: rem-calc(18); left: rem-calc(60); top: 0; @@ -450,7 +450,7 @@ margin-bottom: rem-calc(24); } - .icon-comment-quotes { + .icon-debates { color: $debates; font-size: rem-calc(60); line-height: $line-height; diff --git a/app/assets/stylesheets/participacion.scss b/app/assets/stylesheets/participacion.scss index eb512ad3f..29159aaba 100644 --- a/app/assets/stylesheets/participacion.scss +++ b/app/assets/stylesheets/participacion.scss @@ -614,7 +614,7 @@ form { margin-bottom: rem-calc(24); } - .icon-comment-quotes { + .icon-debates { color: $debates; font-size: rem-calc(60); line-height: $line-height; diff --git a/app/views/debates/_debate.html.erb b/app/views/debates/_debate.html.erb index 56a5127c5..4dd866df2 100644 --- a/app/views/debates/_debate.html.erb +++ b/app/views/debates/_debate.html.erb @@ -5,10 +5,10 @@
<%= t("debates.debate.debate") %> - +

<%= link_to debate.title, debate %>

-   +   <%= link_to t("debates.debate.comments", count: debate.comment_threads.count), debate_path(debate, anchor: "comments") %>

diff --git a/app/views/debates/new.html.erb b/app/views/debates/new.html.erb index c341d178d..7987265bd 100644 --- a/app/views/debates/new.html.erb +++ b/app/views/debates/new.html.erb @@ -10,7 +10,7 @@
- +

<%= t("debates.new.recommendations_title") %>

  • <%= t("debates.new.recommendation_one") %>
  • diff --git a/app/views/debates/show.html.erb b/app/views/debates/show.html.erb index d27edde49..1475e95a8 100644 --- a/app/views/debates/show.html.erb +++ b/app/views/debates/show.html.erb @@ -39,7 +39,7 @@  •  <%= l @debate.created_at.to_date %>  •  -   +   <%= link_to t("debates.show.comments", count: @debate.comment_threads.count), "#comments" %>
diff --git a/app/views/welcome/_featured_debate.html.erb b/app/views/welcome/_featured_debate.html.erb index a1992e337..11cb3b733 100644 --- a/app/views/welcome/_featured_debate.html.erb +++ b/app/views/welcome/_featured_debate.html.erb @@ -4,10 +4,10 @@
<%= t("debates.debate.debate") %> - +

<%= link_to featured_debate.title, featured_debate %>

-   +   <%= link_to t("debates.show.comments", count: featured_debate.comment_threads.count), debate_path(featured_debate, anchor: "comments") %>