summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-05-15 08:41:05 -0700
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-05-15 08:41:05 -0700
commita27ee184284880fcd4bb3958ce12fa8ac6817330 (patch)
treec8c0d54be19cfd0ab78a11fc1c0686a52a00060f
parent81a89f6a834de58ed4da6177778cace6798006a0 (diff)
parent6a4ae93f57d891bca6ce6645a178495880e485ef (diff)
downloadgitlab-ce-a27ee184284880fcd4bb3958ce12fa8ac6817330.tar.gz
Merge pull request #823 from kugaevsky/main_menu_styles
CSS fix: main menu buttons dividers
-rw-r--r--app/assets/stylesheets/common.scss7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/assets/stylesheets/common.scss b/app/assets/stylesheets/common.scss
index e31db24e61a..219f49887ef 100644
--- a/app/assets/stylesheets/common.scss
+++ b/app/assets/stylesheets/common.scss
@@ -195,6 +195,7 @@ nav.main_menu {
-moz-border-radius-bottomleft: 4px;
border-top-left-radius: 4px;
border-bottom-left-radius: 4px;
+ border-left: 0;
}
padding: 10px 25px;
display: inline-block;
@@ -203,6 +204,9 @@ nav.main_menu {
margin: 0;
float:left;
text-shadow:0 1px 1px white;
+ border-right: 1px solid #DDD;
+ border-left: 1px solid #EEE;
+
&.home {
background: url(home_icon.PNG) no-repeat center center;
text-indent:-9999px;
@@ -215,6 +219,9 @@ nav.main_menu {
&.current {
background-color:#D5D5D5;
border-bottom: 2px solid #474D57;
+ border-right: 1px solid #BBB;
+ border-left: 1px solid #BBB;
+ border-radius: 0 0 1px 1px;
&:first-child{
border-bottom:none;
}