Skip to content

Commit

Permalink
[website] fix css problem on languages menu (apache#2306)
Browse files Browse the repository at this point in the history
### Problem

The languages menu is not displayed properly.

### Changes

Add language menu to custom css file.
  • Loading branch information
sijie authored and jiazhai committed Aug 4, 2018
1 parent 04d6234 commit 28fe0a1
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions site2/website/static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,25 +62,29 @@

/* for drop down menus */
#community-dropdown.hide,
#apache-dropdown.hide {
#apache-dropdown.hide,
#languages-dropdown.hide {
display: none;
}


#community-dropdown.visible,
#apache-dropdown.visible {
#apache-dropdown.visible,
#languages-dropdown.visible {
display: flex;
}

#community-dropdown,
#apache-dropdown {
#apache-dropdown,
#languages-dropdown {
pointer-events: none;
position: absolute;
width: 100%;
}

#community-dropdown-items,
#apache-dropdown-items {
#apache-dropdown-items,
#languages-dropdown-items {
background-color: white;
display: flex;
flex-direction: column;
Expand Down

0 comments on commit 28fe0a1

Please sign in to comment.