Skip to content

Commit

Permalink
Merge pull request #283 from uw-it-aca/task/continuum-DT-menu-fix
Browse files Browse the repository at this point in the history
fix continuum DT more menu
  • Loading branch information
matsmats-uw authored Dec 13, 2024
2 parents a306638 + 2058295 commit 0eb5833
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions includes/uw-uweo/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -1496,13 +1496,13 @@ div.entry-content {
}

/* The dropdown container */
.dropdown {
.dropdown:not('.main-nav-more') {
float: left;
overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
.dropdown:not('.main-nav-more') .dropbtn {
font-size: 1rem;
border: none;
outline: none;
Expand All @@ -1513,7 +1513,7 @@ div.entry-content {
margin: 0; /* Important for vertical align on mobile phones */
}

.navbar a:hover, .dropdown:hover .dropbtn {
.navbar a:hover, .dropdown:not('.main-nav-more'):hover .dropbtn {
background-color: cornflowerblue;
}

Expand Down Expand Up @@ -1541,7 +1541,7 @@ div.entry-content {
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
.dropdown:not('.main-nav-more'):hover .dropdown-content {
display: block;
}

Expand Down

0 comments on commit 0eb5833

Please sign in to comment.