Problem/Motivation
Some secondary toolbar menus goes off-screen.

Proposed resolution
Open all secondary menu on the left.
I propose the following change to the toolbar_meta.scss:
diff --git a/styles/components/toolbar_meta.scss b/styles/components/toolbar_meta.scss
index f005d3f..81c0ad5 100644
--- a/styles/components/toolbar_meta.scss
+++ b/styles/components/toolbar_meta.scss
@@ -246,11 +246,12 @@
.toolbar-tray {
position: absolute;
- left: 0;
+ left: auto;
+ right: 0;
width: 170px;
background-color: var(--colorGinLayer3Background);
border-bottom: 0 none;
- border-radius: 0 var(--ginBorderMedium) var(--ginBorderMedium) var(--ginBorderMedium);
+ border-radius: var(--ginBorderMedium) 0 var(--ginBorderMedium) var(--ginBorderMedium);
box-shadow: var(--ginShadowLevel2);
a {
@@ -293,13 +294,6 @@
}
}
- .toolbar-tray {
- left: auto;
- right: 0;
- border-radius: var(--ginBorderMedium) 0 var(--ginBorderMedium) var(--ginBorderMedium);
- }
-
-
// If custom user image
&:not(.has-user-icon) {
margin-right: -1.333em;
What do you think?
Comments
Comment #5
saschaeggiThanks!
Comment #6
finex commentedyou're welcome!
Comment #8
finex commentedHi, it looks that the same problem is happening on the shortcut menu:
Should a new issue be opened?