From 05763f123ab812cee49647fd77bf056e18a621bc Mon Sep 17 00:00:00 2001 From: Jeff Atwood Date: Mon, 29 Jun 2015 01:14:54 -0700 Subject: [PATCH] move .gap width into desktop styles --- app/assets/stylesheets/common/base/topic-post.scss | 1 - app/assets/stylesheets/desktop/topic-post.scss | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/app/assets/stylesheets/common/base/topic-post.scss b/app/assets/stylesheets/common/base/topic-post.scss index 62e8846588d..574cf56ef8f 100644 --- a/app/assets/stylesheets/common/base/topic-post.scss +++ b/app/assets/stylesheets/common/base/topic-post.scss @@ -204,7 +204,6 @@ blockquote > *:last-child { color: lighten($primary, 70%); cursor: pointer; text-align: center; - width: calc(#{$topic-avatar-width} + #{$topic-body-width} + 2 * #{$topic-body-width-padding}); &.jagged-border { background-image: diff --git a/app/assets/stylesheets/desktop/topic-post.scss b/app/assets/stylesheets/desktop/topic-post.scss index e71ae6d6c27..6f65b98c7d3 100644 --- a/app/assets/stylesheets/desktop/topic-post.scss +++ b/app/assets/stylesheets/desktop/topic-post.scss @@ -709,6 +709,10 @@ $topic-avatar-width: 45px; z-index: 2; } +.gap { + width: calc(#{$topic-avatar-width} + #{$topic-body-width} + 2 * #{$topic-body-width-padding}); +} + .time-gap { width: 755px; border-top: 1px solid dark-light-diff($primary, $secondary, 90%, -60%);