From 915cbf194338a18df2571e9ea742f3d29d2bca3e Mon Sep 17 00:00:00 2001 From: NOYB Date: Fri, 29 Jan 2016 00:42:11 -0800 Subject: [PATCH] Panels Overflow - Horizontal Scroll Bar Been looking into ways to eliminate the horizontal scroll bar in the available widgets, log filter, and manage log panels. Not sure which would be preferred. Using the specific panel ID or the class hierarchy for applying more globally. --- src/usr/local/www/bootstrap/css/pfSense.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/usr/local/www/bootstrap/css/pfSense.css b/src/usr/local/www/bootstrap/css/pfSense.css index 00865ee6b1..ae83cce455 100644 --- a/src/usr/local/www/bootstrap/css/pfSense.css +++ b/src/usr/local/www/bootstrap/css/pfSense.css @@ -796,3 +796,14 @@ a[href]:after { .diff-text { color: #000000; } + +/** Eliminate overflow in available widgets, log filter, and manage log panels. (cause of scroll bar) */ +#widget-available_panel-body>.content>.row, +#filter-panel_panel-body>.form-group, +#manage-log-panel_panel-body>.form-group, +/** optionally prevent more globally by using the class hierarchy */ +.panel-body.collapse.in>.content>.row, +.panel-body.collapse.in>.form-group +{ + margin-right:0px; +} \ No newline at end of file