From 7ba5f806bc910698177f6a90d9da6b6775eaa692 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Calvi=C3=B1o=20S=C3=A1nchez?= Date: Fri, 14 Dec 2018 06:56:11 +0100 Subject: [PATCH] Fix room name input width MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit After moving the room name into a flex container the room name input no longer expanded to fill the whole width of the sidebar. Signed-off-by: Daniel Calviño Sánchez --- css/style.scss | 2 ++ 1 file changed, 2 insertions(+) diff --git a/css/style.scss b/css/style.scss index f667ce8de10..32ed7035bde 100644 --- a/css/style.scss +++ b/css/style.scss @@ -705,6 +705,8 @@ .room-name { display: block; + flex-grow: 1; + /* Limit the room name to the container width and prevent it from * wrapping the full label when using a flex display; this is needed for * the edit button and the ellipsis in the name to work as expected. */