fix select2 and dropdown width for quick-entry form (#3188)

This commit is contained in:
Kevin Papst
2022-03-07 14:22:16 +01:00
committed by GitHub
parent b08c156552
commit 317ac59f47
10 changed files with 38 additions and 13 deletions

View File

@@ -20,4 +20,10 @@
/* empty <option> were too small to be noticed as clickable element */
.select2-container--bootstrap .select2-results__option {
min-height: 30px;
}
}
/* Fixes the size on quick-entry form */
.select2-container--bootstrap {
display: table;
table-layout: fixed;
}