diff --git a/Gemfile b/Gemfile index 07b629886..e88499c30 100644 --- a/Gemfile +++ b/Gemfile @@ -35,7 +35,7 @@ gem 'kaminari' gem 'ancestry', '~> 2.2.2' gem 'acts-as-taggable-on' gem 'responders', '~> 2.3.0' -gem 'foundation-rails', '~> 6.2.4.0' +gem 'foundation-rails', '6.2.3.0' # Allows use responsive menu gem 'foundation_rails_helper', '~> 2.0.0' gem 'acts_as_votable' gem 'ckeditor', '~> 4.2.0' diff --git a/Gemfile.lock b/Gemfile.lock index fe1948752..7e196f0cb 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -160,7 +160,7 @@ GEM i18n (~> 0.5) faraday (0.9.2) multipart-post (>= 1.2, < 3) - foundation-rails (6.2.4.0) + foundation-rails (6.2.3.0) railties (>= 3.1.0) sass (>= 3.3.0, < 3.5) sprockets-es6 (>= 0.9.0) @@ -477,7 +477,7 @@ DEPENDENCIES email_spec factory_girl_rails faker - foundation-rails (~> 6.2.4.0) + foundation-rails (= 6.2.3.0) foundation_rails_helper (~> 2.0.0) fuubar groupdate (~> 3.1.0) diff --git a/app/assets/stylesheets/layout.scss b/app/assets/stylesheets/layout.scss index 8c4549ffd..e5e6562d3 100644 --- a/app/assets/stylesheets/layout.scss +++ b/app/assets/stylesheets/layout.scss @@ -246,7 +246,7 @@ a { } } - h2 { + h2, h3 { font-size: $base-font-size; } } diff --git a/app/views/comments/_comment.html.erb b/app/views/comments/_comment.html.erb index 3424e6fcc..549b62862 100644 --- a/app/views/comments/_comment.html.erb +++ b/app/views/comments/_comment.html.erb @@ -1,6 +1,6 @@ <% cache [locale_and_user_status(comment), comment, commentable_cache_key(comment.commentable), comment.author, (@comment_flags[comment.id] if @comment_flags)] do %>
<% if comment.hidden? || comment.user.hidden? %> <% if comment.children.size > 0 %> @@ -23,7 +23,7 @@ <% end %> <% end %> -
+ -
<% if comment.as_administrator? %>
@@ -92,14 +92,13 @@
<%= render 'comments/form', {commentable: comment.commentable, parent_id: comment.id, toggeable: true} %>
<% end %>
-
+
<% end %>
-
-
+
-
<% child_comments_of(comment).each do |child| %> <%= render 'comments/comment', comment: child %> <% end %> -