datasketch / shinypanels

Collapsible panels layout for r shiny apps
Other
80 stars 10 forks source link

Fix panel internal width #73

Closed jpmarindiaz closed 4 years ago

jpmarindiaz commented 4 years ago

A horizontal scroll bar appears when not needed image

brazadas commented 4 years ago

this horizontal scroll is actually because of the info tooltip that is not overlapping the panel but it is staying inside overflowing it (issue #43 parmesan) ; we have been looking at it with @ddazal

jpmarindiaz commented 4 years ago

I don't see why it is related to changing the panel size. No need to augment the panel size with the size of the tooltip. The tooltip should stay within the defined limits of the panel

brazadas commented 4 years ago

there is no manual change in the panel size; it an undesired behavior due to the overflow-y property of the panel-body class (where the info tooltips lay). We haven't been able to figure it out why it affects the overflow-x property but it does. @ddazal and I are still trying to figure it out