Skip to content

Commit

Permalink
fix: header dropdown styling (#335)
Browse files Browse the repository at this point in the history
  • Loading branch information
NGPixel authored Sep 22, 2023
1 parent bbd981b commit c93ccc9
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion ietf/templates/includes/styles/header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,24 @@

.dropdown-menu {
background-color: #FFF;
border-radius: 5px;
box-shadow: $box-shadow;

.dropdown-item:focus, .dropdown-item:hover {
background-color: #EEE;
background-color: rgba(0,0,0,.25);
color: $dark;

@at-root body:not(.iab_body) & {
background-color: rgba(0,0,0,.1);
}
}

.dropdown-item.active, .dropdown-item:active {
background-color: rgba(0,0,0, .25);

@at-root body:not(.iab_body) & {
background-color: rgba(#1762bb, .1);
}
}
}

Expand Down

0 comments on commit c93ccc9

Please sign in to comment.