groovebasin
groovebasin copied to clipboard
Viewing in latest Ubuntu Firefox GTK3 controls messed with layout.
Firefox 46 was released for Ubuntu today. This new build uses GTK3 controls when rendering. These controls are not the same size as the old ones. This causes issues in layout in Groovebasin.
Hm. I'm not able to reproduce your problem. Here's what it looks like for me in Firefox 46:
I confirmed that the debian package for firefox
I'm using depends on libgtk-3-0
(and libgtk2.0-0
? not sure what that's about).
Could it be there there are some system-level user preferences that you could customize to change the font/size/behavior of the Groovebasin UI? What window manager are you using? And is there a theme that you've chosen? Those might be good places to look for such customization.
If you can help us reproduce this problem, we can look into tightening up the UI code to prevent that wrapping problem from happening.
It might be based on the GTK theme. I'm just using the default theme(Ambiance) for Unity/Ubuntu 14.04 in this case.
@eyecreate are you familiar enough with browser dev tools that you could fiddle with the width of the dropdown in the css until it is no longer wrapping? if you figure out a value that makes it work tell me and I'll update the css accordingly.
Changing these two values seemed to make things fit better.
#library-pane .window-header {
height: 35px;
}
#organize {
width: 185px;
}