From d663dd7fe8f4063c6c13879e7be3c1595c6b2b48 Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Tue, 15 Oct 2019 19:35:00 -0700 Subject: [PATCH] fix: fix wasted space in options dialog (#1585) fixes #1487 --- .../_components/dialog/components/GenericDialogList.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/routes/_components/dialog/components/GenericDialogList.html b/src/routes/_components/dialog/components/GenericDialogList.html index 0c163138..20a17734 100644 --- a/src/routes/_components/dialog/components/GenericDialogList.html +++ b/src/routes/_components/dialog/components/GenericDialogList.html @@ -25,7 +25,6 @@ width: 100%; border: 1px solid var(--settings-list-item-border); box-sizing: border-box; - min-width: 350px; } .generic-dialog-list-item { border: 1px solid var(--settings-list-item-border); @@ -44,6 +43,7 @@ background: var(--settings-list-item-bg); border: none; margin: 0; + overflow-x: hidden; } .generic-dialog-list-button-inner { display: flex; @@ -53,7 +53,6 @@ flex: 1; margin-left: 20px; text-align: left; - width: 0; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;