This is an automated email from the ASF dual-hosted git repository.

zhaijia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-pulsar.git


The following commit(s) were added to refs/heads/master by this push:
     new 28fe0a1  [website] fix css problem on languages menu (#2306)
28fe0a1 is described below

commit 28fe0a174c38bb57e11e0ca9706893c294b4df42
Author: Sijie Guo <[email protected]>
AuthorDate: Sat Aug 4 00:12:59 2018 -0700

    [website] fix css problem on languages menu (#2306)
    
    ### Problem
    
    The languages menu is not displayed properly.
    
    ### Changes
    
    Add language menu to custom css file.
---
 site2/website/static/css/custom.css | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/site2/website/static/css/custom.css 
b/site2/website/static/css/custom.css
index 2830e81..fc89652 100644
--- a/site2/website/static/css/custom.css
+++ b/site2/website/static/css/custom.css
@@ -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;

Reply via email to