From 6b78f2582bdb7f7f43b97a845f1c7dffbf09eb0d Mon Sep 17 00:00:00 2001 From: Scott Nonnenberg Date: Wed, 1 Aug 2018 17:01:54 -0700 Subject: [PATCH] Fix styling of the 'Start conversation...' search result item --- stylesheets/_global.scss | 18 ++++++++++++++---- stylesheets/_theme_dark.scss | 2 +- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/stylesheets/_global.scss b/stylesheets/_global.scss index 15d25c0d8..2f0625160 100644 --- a/stylesheets/_global.scss +++ b/stylesheets/_global.scss @@ -136,7 +136,7 @@ a { outline: solid 1px $blue; } -$avatar-size: 44px; +$avatar-size: 48px; .avatar { display: inline-block; @@ -244,13 +244,23 @@ $unread-badge-size: 21px; } } +$new-contact-left-margin: 16px; +.new-contact .avatar { + margin-left: $new-contact-left-margin; +} + +// Still used for the contact search view .contact-details { - $left-margin: 8px; + $left-margin: 12px; vertical-align: middle; display: inline-block; margin: 0 0 0 $left-margin; - width: calc(100% - #{$avatar-size} - #{$left-margin} - #{(4/14) + em}); + width: calc( + 100% - #{$avatar-size} - #{$new-contact-left-margin} - #{$left-margin} - #{( + 4/14 + ) + em} + ); text-align: left; p { @@ -270,7 +280,7 @@ $unread-badge-size: 21px; } .number { - color: $grey; + color: $color-light-60; font-size: $font-size-small; } diff --git a/stylesheets/_theme_dark.scss b/stylesheets/_theme_dark.scss index 8961ea9fd..408be4fbc 100644 --- a/stylesheets/_theme_dark.scss +++ b/stylesheets/_theme_dark.scss @@ -253,7 +253,7 @@ body.dark-theme { .contact-details { .number { - color: $grey; + color: $color-dark-30; } .verified-icon {