- Issue created by @Klaus Juhantalo
- ๐ฎ๐ณIndia rajneeshb New Delhi
Devel sf-dump class having z-index 99999, so to fix the issue for toolbar menu added z-index to 100000.
- Status changed to RTBC
over 1 year ago 11:53am 28 April 2023 - ๐ฌ๐งUnited Kingdom james.williams
Works for me! That said, I wonder if a fix should really go into core, since core's own toolbar gets obscured by the output from the dumper too. admin_toolbar could probably then just make use of core's fix. Up to this module's maintainer really?
- Status changed to Fixed
over 1 year ago 1:03pm 28 April 2023 -
adriancid โ
committed 33ca790b on 3.x authored by
rajneeshb โ
Issue #3335841 by rajneeshb, adriancid: Admin toolbar menu z-index sucks...
-
adriancid โ
committed 33ca790b on 3.x authored by
rajneeshb โ
-
adriancid โ
committed ac0c6477 on 3.x authored by
rajneeshb โ
Issue #3335841 by rajneeshb, adriancid: Admin toolbar menu z-index sucks...
-
adriancid โ
committed ac0c6477 on 3.x authored by
rajneeshb โ
- ๐ง๐ชBelgium joevagyok
The changed z-index causes a problem with media and other dialogues, because the toolbar z-index the closing of the dialogues is not clickable any more.
- ๐บ๐ธUnited States butterwise
The changed z-index also causes a problem with Ckeditor: When you maximize a formatted text field using Ckeditor, the admin toolbar shifts to the left-vertical position and overlays the editor window:
- ๐ฌ๐งUnited Kingdom jessebaker
This change to using an enormous z-index has also broken aspects of Acquia Site Studio which assumes the admin toolbar's z-index to be 502 which it has been for years.
Will it be reverted because otherwise we will need to resolve the issues it causes.
- ๐ง๐ชBelgium joevagyok
I tried to contact the maintainers on slack but haven't received feedback on the issue so far. I found another issue created related to this.
@jessebaker Just lock the version to 3.3.0 for now in composer until it gets resolved. - Status changed to Active
over 1 year ago 1:13pm 10 May 2023 - ๐จ๐ฆCanada adriancid Montreal, Canada
I'm reverting this issue due to the problems described at ๐ New z-index is breaking other functionalities Closed: duplicate
-
adriancid โ
committed de85d10d on 3.x authored by
rajneeshb โ
Revert "Issue #3335841 by rajneeshb, adriancid: Admin toolbar menu z-...
-
adriancid โ
committed de85d10d on 3.x authored by
rajneeshb โ
- ๐ฌ๐งUnited Kingdom jessebaker
Thanks @adriancid. However I think you also need to remove the duplicate style declaration on line 1 of the same file -
#toolbar-bar { z-index: 100000; }
was in that file twice.
- ๐จ๐ฆCanada adriancid Montreal, Canada
@jessebaker can you check the last changes? I can't see any duplicate code there.
- ๐จ๐ฆCanada adriancid Montreal, Canada
The patch here is causing this error ๐ Top search results are hidden under the toolbar. Closed: works as designed
- ๐ฌ๐งUnited Kingdom jessebaker
Hmm I might be wrong, sorry!
If you look here https://git.drupalcode.org/project/admin_toolbar/-/blob/3.3.2/css/admin.... you can see the following code twice (on lines 1 and again on 9)
#toolbar-bar { z-index: 100000; }
It looked like the commit linked in your comment only removed the second one - but looking at 3.x it looks like both are gone!
https://git.drupalcode.org/project/admin_toolbar/-/blob/3.x/css/admin.to...
Hi
To address the issue, the requirement states that the toolbar menu should be positioned above the status message.
However, applying the CSS property z-index: 100000; to the #toolbar-bar class caused some unforeseen problems.In order to resolve this for admin toolbar module, creating a - patch menu-z-index-sucks-with-devel-module-3335841-17.patch. override the CSS (z-index:0;) of the devel module specifically for the admin toolbar by modifying the "admin.toolbar_search.css" file.
- Status changed to Needs review
over 1 year ago 9:43am 16 May 2023 - last update
over 1 year ago 17 pass - ๐ฎ๐ณIndia Jaspreet-Kaur
Verified! After applying patch #17 issue seems to be fixed. Thanks!
- ๐จ๐ฆCanada adriancid Montreal, Canada
I will leave open the issue until the other user reporting problems write a comment saying is working for them.
- ๐น๐ทTurkey Kartagis Istanbul
The patch at #2 works for me, I don't know about the other issues mentioned.