summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdolfo Fitoria <adolfo.fitoria@gmail.com>2013-01-10 09:35:37 -0600
committerAdolfo Fitoria <adolfo.fitoria@gmail.com>2013-01-10 09:35:37 -0600
commit8f198b6d9f24c63c9e120544cd348e95d990e97c (patch)
tree4190b35f477cbe09d3567827a6b7f85291f9d966
parent3087781bbba06373797e3010f5ae78abcc9b380a (diff)
downloadaskbot-8f198b6d9f24c63c9e120544cd348e95d990e97c.tar.gz
askbot-8f198b6d9f24c63c9e120544cd348e95d990e97c.tar.bz2
askbot-8f198b6d9f24c63c9e120544cd348e95d990e97c.zip
fixed css issue with dropdown menu's z-index
-rw-r--r--askbot/media/style/style.css11
-rw-r--r--askbot/media/style/style.less1
2 files changed, 12 insertions, 0 deletions
diff --git a/askbot/media/style/style.css b/askbot/media/style/style.css
index 3ca80614..ba6964ae 100644
--- a/askbot/media/style/style.css
+++ b/askbot/media/style/style.css
@@ -249,6 +249,16 @@ body.user-messages {
width: auto;
float: left;
}
+.lang-nav ul {
+ list-style: none;
+}
+.lang-nav li {
+ display: inline;
+ padding-right: 16px;
+}
+.lang-nav li.current {
+ font-weight: bold;
+}
#userToolsNav {
/* Navigation bar containing login link or user information, check widgets/user_navigation.html*/
@@ -363,6 +373,7 @@ body.user-messages {
#metaNav .dropdown-menu {
border-top: none;
left: 7%;
+ z-index: 10100;
}
#metaNav .dropdown-menu a {
color: #666;
diff --git a/askbot/media/style/style.less b/askbot/media/style/style.less
index 76a5c0cf..8e88c071 100644
--- a/askbot/media/style/style.less
+++ b/askbot/media/style/style.less
@@ -390,6 +390,7 @@ body.user-messages {
.dropdown-menu{
border-top: none;
left: 7%;
+ z-index: 10100;
a{
color: #666;
height: 25px;