Commit 6910edf
Fix shutdown banner visibility on Plugin Manager pages (#26234)
* Fix shutdown banner visibility on Plugin Manager pages
The shutdown banner was being obscured by the sticky app bar's
backdrop blur effect on the Installed, Available, and Updates pages.
Root cause: The sticky app bar (introduced in c42ab43) uses
pseudo-elements with backdrop-filter: blur(10px) that extend upwards
(negative top inset). These pseudo-elements have z-index: -1 relative
to the sticky bar (which has z-index: 2), but the shutdown banner had
no explicit z-index (defaulting to 0).
Fix: Add position: relative and z-index: 5 to #shutdown-msg and
#safe-restart-msg to ensure they render above the sticky app bar's
backdrop effect.
This is a minimal fix that preserves the header redesign while ensuring
critical system messages remain visible.
Fixes #26022
* Fix banner on dashboard experimental page
---------
Co-authored-by: Dhanush Raja A <dhanushrajaa@Dhanushs-MacBook-Air.local>
Co-authored-by: Tim Jacomb <timjacomb1@gmail.com>
Co-authored-by: Mark Waite <mark.earl.waite@gmail.com>1 parent b1da869 commit 6910edf
1 file changed
+4
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
71 | 71 | | |
72 | 72 | | |
73 | 73 | | |
| 74 | + | |
| 75 | + | |
74 | 76 | | |
75 | 77 | | |
76 | 78 | | |
| |||
82 | 84 | | |
83 | 85 | | |
84 | 86 | | |
| 87 | + | |
| 88 | + | |
85 | 89 | | |
86 | 90 | | |
87 | 91 | | |
| |||
0 commit comments