Skip to content

Commit

Permalink
Twenty Twelve: Fixes submenu hiding under slideshow block.
Browse files Browse the repository at this point in the history
Whilst initially this could be thought to be solved in Jetpack due to submenus only having a z-index of 1 a fix is desirable. This brings in the suggested value.

Props robertghetau, SergeyBiryukov, sabernhardt, poena, narenin.
Fixes #55892.


git-svn-id: https://develop.svn.wordpress.org/trunk@58776 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
karmatosed committed Jul 22, 2024
1 parent f003fd0 commit 9a65808
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/wp-content/themes/twentytwelve/css/ie.css
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ body.full-width .site-content {
padding: 0;
position: absolute;
top: 100%;
z-index: 1;
z-index: 99999;
height: 1px;
width: 1px;
overflow: hidden;
Expand Down
2 changes: 1 addition & 1 deletion src/wp-content/themes/twentytwelve/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1606,7 +1606,7 @@ img#wpstats {
padding: 0;
position: absolute;
top: 100%;
z-index: 1;
z-index: 99999;
height: 1px;
width: 1px;
overflow: hidden;
Expand Down

0 comments on commit 9a65808

Please sign in to comment.