diff --git a/_includes/2017/comments-area.html b/_includes/2017/comments-area.html index 21a37217a..67678e7a8 100644 --- a/_includes/2017/comments-area.html +++ b/_includes/2017/comments-area.html @@ -3,13 +3,13 @@
+ {% if site.disqus_host %} {% include 2017/comments-area.html page=page %} {% endif %} - - {% include 2017/search-footer.html %} {% include 2017/related-posts.html page=page %} {% include 2017/foot.html %} diff --git a/_sass/2017/components/comments-area.scss b/_sass/2017/components/comments-area.scss index cdd8c0687..9dadc9201 100644 --- a/_sass/2017/components/comments-area.scss +++ b/_sass/2017/components/comments-area.scss @@ -4,13 +4,23 @@ .comments-area { & { - margin: 32px 0; + margin: 32px 0 16px 0; } + // Container & > .container { @include gutter(padding-left); @include gutter(padding-right); max-width: $area-width; margin: 0 auto; } + + // Horizontal line + & > .container::before { + content: ''; + display: block; + background: linear-gradient(to right, $dark-line-color 50%, transparent); + margin-bottom: 16px; + height: 1px; + } } diff --git a/_sass/2017/components/comments-details.scss b/_sass/2017/components/comments-details.scss index ceb709efe..17e6f1943 100644 --- a/_sass/2017/components/comments-details.scss +++ b/_sass/2017/components/comments-details.scss @@ -7,15 +7,7 @@ margin-bottom: 16px; white-space: nowrap; cursor: pointer; - color: $base-text; - } - - & > summary::after { - content: ''; - display: block; - background: linear-gradient(to right, $dark-line-color 50%, transparent); - margin-top: 16px; - height: 1px; + color: $base-head; } & > summary:hover, @@ -25,7 +17,7 @@ & > summary > strong { @include font-size(1); - font-weight: normal; + font-weight: bold; } & > summary > strong::before {
- + Comments