From 1103e8abecc11642e84b8887744b8acde6cb44af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julius=20H=C3=A4rtl?= Date: Tue, 25 Feb 2020 19:06:21 +0100 Subject: [PATCH] Fix row height and display name input MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Julius Härtl --- apps/settings/css/settings.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/settings/css/settings.scss b/apps/settings/css/settings.scss index a07072aa8f..ff4611d4af 100644 --- a/apps/settings/css/settings.scss +++ b/apps/settings/css/settings.scss @@ -1418,6 +1418,7 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { #app-content.user-list-grid { display: grid; grid-column-gap: 20px; + grid-auto-rows: minmax(60px, max-content); .row { // TODO replace with css4 subgrid when available @@ -1561,10 +1562,12 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { } > div, + > .displayName > form, > form { grid-row: 1; display: inline-flex; color: var(--color-text-lighter); + flex-grow: 1; > input:not(:focus):not(:active) { border-color: transparent; @@ -1591,6 +1594,7 @@ doesnotexist:-o-prefocus, .strengthify-wrapper { &.mailAddress { > input { text-overflow: ellipsis; + flex-grow: 1; } }