From 345ea3784a52045e4e7c6852d56e8399da903ef0 Mon Sep 17 00:00:00 2001 From: Pedro Pinto Silva Date: Mon, 7 Dec 2020 17:10:36 +0100 Subject: PivotTable: AutofilterDropdown: Fix toggle_all.checkbutton sizes - use original icon size and add margins Signed-off-by: Pedro Pinto Silva Change-Id: I8fb77a147e9bbe16be29b8c53e38052fe3abb41b --- loleaflet/css/jsdialogs.css | 18 ++++++++++++++---- 1 file changed, 14 insertions(+), 4 deletions(-) diff --git a/loleaflet/css/jsdialogs.css b/loleaflet/css/jsdialogs.css index b7669680f9..5f55e51599 100644 --- a/loleaflet/css/jsdialogs.css +++ b/loleaflet/css/jsdialogs.css @@ -152,6 +152,14 @@ padding: 2px; } +#table-buttonbox .autofilter.cell:first-child { + float: right; +} + +#table-buttonbox .autofilter.cell:last-child { + float: left; +} + .autofilter-container { background-color: white; border: solid 1px silver; @@ -179,8 +187,9 @@ } .autofilter-container #select_current { - height: 25px; - width: 25px; + height: 16px; + width: 16px; + margin: 8px; border: none; } @@ -190,8 +199,9 @@ } .autofilter-container #unselect_current { - height: 25px; - width: 25px; + height: 16px; + width: 16px; + margin: 8px 8px 8px 0px; border: none; } -- cgit