From 4908e31565802f1e8fad31fb1c74fc8bf28cc417 Mon Sep 17 00:00:00 2001 From: Louis Date: Mon, 12 Oct 2020 16:15:29 +0200 Subject: [PATCH] fixes #1229 album properties table css Fix the css of the double select on the app by setting the width to 100% to the categoryList, the doubleSelect and to 50% to the inside the table --- admin/themes/default/theme.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/admin/themes/default/theme.css b/admin/themes/default/theme.css index 193a5fb9a..7256df2a8 100644 --- a/admin/themes/default/theme.css +++ b/admin/themes/default/theme.css @@ -964,7 +964,7 @@ TEXTAREA.description { SELECT.categoryList { height: 20em; - width: auto; + width: 100%; } DIV.comment BLOCKQUOTE { @@ -4825,4 +4825,12 @@ li.plupload_delete a:hover {background: url("images/cancelhover.svg")!important; position: absolute; top: calc(50% + 200px / 2); display: none; +} + +.doubleSelect { + width: 100%; +} + +.doubleSelect td { + width: 50%; } \ No newline at end of file