Skip to content

Commit

Permalink
fix css issue in navbar with (.nav > li > a:hover)
Browse files Browse the repository at this point in the history
  • Loading branch information
Coto committed Jul 24, 2012
1 parent 061c232 commit 2106ca1
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions static/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ body {
background-image: -webkit-linear-gradient(top, #ffffff 0%,#e7e7e7 50%); /* Chrome 10+,Safari 5.1+ */
background-image: -ms-linear-gradient(top, #ffffff 0%,#e7e7e7 50%); /* IE10+ */
background-image: -o-linear-gradient(top, #ffffff 0%,#e7e7e7 50%); /* Opera 11.10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7e7e7', endColorstr='#eeeeee',GradientType=0 ); /* IE6-9 */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e7e7e7',GradientType=0 ); /* IE6-9 */
background-image: linear-gradient(top, #ffffff 0%,#e7e7e7 50%); /* W3C */
border: 1px solid #e5e5e5;
-webkit-border-radius: 4px;
Expand Down Expand Up @@ -195,15 +195,15 @@ body {
border-right: 0;
}

.nav > li > a:hover {
#content > .nav > li > a:hover {
background: #ffff00;
background-image: -moz-linear-gradient(top, #e7e7e7 0%, #ffffff 70%); /* FF3.6+ */
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e7e7e7), color-stop(70%,#ffffff)); /* Chrome,Safari4+ */
background-image: -webkit-linear-gradient(top, #e7e7e7 0%,#ffffff 70%); /* Chrome 10+,Safari 5.1+ */
background-image: -ms-linear-gradient(top, #e7e7e7 0%,#ffffff 70%); /* IE10+ */
background-image: -o-linear-gradient(top, #e7e7e7 0%,#ffffff 70%); /* Opera 11.10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7e7e7', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
background-image: linear-gradient(top, #e7e7e7 0%,#ffffff 70%); /* W3C */
background-image: -moz-linear-gradient(top, #e7e7e7 0%, #f1f1f1 70%); /* FF3.6+ */
background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#e7e7e7), color-stop(70%,#f1f1f1)); /* Chrome,Safari4+ */
background-image: -webkit-linear-gradient(top, #e7e7e7 0%,#f1f1f1 70%); /* Chrome 10+,Safari 5.1+ */
background-image: -ms-linear-gradient(top, #e7e7e7 0%,#f1f1f1 70%); /* IE10+ */
background-image: -o-linear-gradient(top, #e7e7e7 0%,#f1f1f1 70%); /* Opera 11.10+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e7e7e7', endColorstr='#f1f1f1',GradientType=0 ); /* IE6-9 */
background-image: linear-gradient(top, #e7e7e7 0%,#f1f1f1 70%); /* W3C */
}

/*
Expand Down

0 comments on commit 2106ca1

Please sign in to comment.