Autofilter: decrease size by remove padding and frames

Autofilter dropdown was too big and with too many elements with
padding and margin on top of that it had too many lines (giving it a
"boxy" look) and making it hard to scan the information (too much
emphasis on the structure rather than the content)

Signed-off-by: Pedro Pinto Silva <pedro.silva@collabora.com>
Change-Id: I0fbcaab2abe5084ee0604182f56458efb6ea6b0a
This commit is contained in:
Pedro Pinto Silva 2022-02-25 16:19:26 +01:00 committed by Gökay ŞATIR
parent 79c4e93749
commit e2a326c6ab

View file

@ -339,6 +339,10 @@ input[type='checkbox']:checked.autofilter, .jsdialog input[type='checkbox']:chec
width: -moz-available;
width: -webkit-fill-available;
width: fill-available;
margin-top: 8px;
border-radius: 0;
border-left: none;
border-right: none;
}
/* checkbox */
@ -498,10 +502,20 @@ input[type='number']:hover::-webkit-outer-spin-button {
border: solid 1px silver;
position: absolute;
z-index: 1105;
padding: 10px;
padding: 0;
font-family: var(--jquery-ui-font);
}
.autofilter-container > .root-container,
.autofilter-container .cell,
.autofilter-container .row {
margin: 0;
padding: 0;
}
.autofilter-container .ui-treeview {
border: none;
}
.autofilter-container #menu.ui-treeview .ui-treeview-body {
height: auto;
width: 100%;