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 <td> inside the table
This commit is contained in:
Louis
2020-10-12 16:15:29 +02:00
parent 6756838c0f
commit 4908e31565
+9 -1
View File
@@ -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%;
}