Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
Fix navbar over Drupal admin elements
Browse files Browse the repository at this point in the history
  • Loading branch information
GilOliveira committed Mar 4, 2024
1 parent 9fb91a9 commit 8f04975
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
6 changes: 5 additions & 1 deletion css/base/biodatapt.base.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
/* Temp fix for:
* Issue #3233533: Core .placeholder class conflicts with new Bootstrap .placeholder class
* https://www.drupal.org/project/drupal/issues/3233533
*
*
* Issue #3246827: Fix em.placeholder style from Bootstrap 5 base styling with the Drupal core placeholder
* https://www.drupal.org/i/3246827
*/
Expand Down Expand Up @@ -96,3 +96,7 @@ h3 {
background: url(../../images/square-rss.svg) no-repeat;
}

#page > nav {
z-index: auto;
}

9 changes: 7 additions & 2 deletions scss/base/biodatapt.base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* Temp fix for:
* Issue #3233533: Core .placeholder class conflicts with new Bootstrap .placeholder class
* https://www.drupal.org/project/drupal/issues/3233533
*
*
* Issue #3246827: Fix em.placeholder style from Bootstrap 5 base styling with the Drupal core placeholder
* https://www.drupal.org/i/3246827
*/
Expand Down Expand Up @@ -110,4 +110,9 @@ h3 {
height: 16px;
text-indent: -9999px;
background: url("/images/square-rss.svg") no-repeat;
}
}

// Fix navbar over Drupal admin elements:
#page > nav {
z-index: auto;
}

0 comments on commit 8f04975

Please sign in to comment.