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.
This commit is contained in:
NOYB 2016-01-29 00:42:11 -08:00
parent 1968fe4027
commit 915cbf1943

View File

@ -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;
}