Currently the masthead and toolbar set media queries that work on the whole window width to determine when to hide toolbar items behind an overflow button, etc
This is problematic when you have something like a drawer within the window that takes space away from the masthead/toolbar. The drawer should cause the masthead/toolbar to respond sooner.
You can reproduce the issue for example at
https://cloud.redhat.com/beta/application-services/streams/resources?
by opening up a quick start, then resizing the window (or just resizing the drawer).
A possible approach to tackle this might be to add a resize observer to listen to the parent container width and not the browser width to determine when to respond.
Currently the masthead and toolbar set media queries that work on the whole window width to determine when to hide toolbar items behind an overflow button, etc
This is problematic when you have something like a drawer within the window that takes space away from the masthead/toolbar. The drawer should cause the masthead/toolbar to respond sooner.
You can reproduce the issue for example at
https://cloud.redhat.com/beta/application-services/streams/resources?
by opening up a quick start, then resizing the window (or just resizing the drawer).
A possible approach to tackle this might be to add a resize observer to listen to the parent container width and not the browser width to determine when to respond.