From 95c9e7a6d4a049b6742ab5474c135f03d902ae02 Mon Sep 17 00:00:00 2001 From: Noelle Leigh Date: Tue, 5 May 2020 17:32:42 -0400 Subject: [PATCH] Remove unnecessary CSS property from header (#4227) This CSS rule was causing conversation header text to be truncated even when there was enough whitespace to display the entire text at certain zoom levels and platforms. Removing the property did not introduce any UI regressions from this author's testing. Fixes: #3168 --- stylesheets/_modules.scss | 2 -- 1 file changed, 2 deletions(-) diff --git a/stylesheets/_modules.scss b/stylesheets/_modules.scss index f8a8a975bb..54788f8823 100644 --- a/stylesheets/_modules.scss +++ b/stylesheets/_modules.scss @@ -2664,8 +2664,6 @@ $timer-icons: '55', '50', '45', '40', '35', '30', '25', '20', '15', '10', '05', @include font-body-1-bold; - // width of avatar (28px) and our 6px left margin - max-width: calc(100% - 34px); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;