Top left Google Maps control will not move along (aka they will not remain visible if the sidebar is opened).
The following css pattern appears 10 times in gmaps-sidebar.css .
.sidebar-left ~ .sidebar-map .gm-style > div.gmnoprint[style*="left: 0px"] {
changing all 10 similar patterns to
.sidebar-left ~ .sidebar-map .gm-style > div div.gmnoprint[style*="left: 0px"]:first-of-type {
Seems to correct the issue for me.
Top left Google Maps control will not move along (aka they will not remain visible if the sidebar is opened).
The following css pattern appears 10 times in gmaps-sidebar.css .
.sidebar-left ~ .sidebar-map .gm-style > div.gmnoprint[style*="left: 0px"] {
changing all 10 similar patterns to
.sidebar-left ~ .sidebar-map .gm-style > div div.gmnoprint[style*="left: 0px"]:first-of-type {
Seems to correct the issue for me.