diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-26 21:13:54 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-08-26 21:13:54 +0300 |
commit | 0787726ae7b1692e019ca9d209f5a99ba6e9f294 (patch) | |
tree | c455d64ff5a98dda028656212bc02a1703e4c70a | |
parent | a7bd18f9f2d684a2b37208e3ebd26d763bbc1ef3 (diff) | |
download | gitlab-ce-0787726ae7b1692e019ca9d209f5a99ba6e9f294.tar.gz |
Set correct header border-bottom color for themes
-rw-r--r-- | app/assets/stylesheets/themes/ui_color.scss | 1 | ||||
-rw-r--r-- | app/assets/stylesheets/themes/ui_gray.scss | 1 | ||||
-rw-r--r-- | app/assets/stylesheets/themes/ui_modern.scss | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/app/assets/stylesheets/themes/ui_color.scss b/app/assets/stylesheets/themes/ui_color.scss index 07e854b73d8..1fd54ff18a6 100644 --- a/app/assets/stylesheets/themes/ui_color.scss +++ b/app/assets/stylesheets/themes/ui_color.scss @@ -17,6 +17,7 @@ &.navbar-gitlab { .navbar-inner { background: #547; + border-bottom: 1px solid #435; .app_logo { &:hover { background-color: #435; diff --git a/app/assets/stylesheets/themes/ui_gray.scss b/app/assets/stylesheets/themes/ui_gray.scss index 4f88c631e4d..41c08c840e2 100644 --- a/app/assets/stylesheets/themes/ui_gray.scss +++ b/app/assets/stylesheets/themes/ui_gray.scss @@ -17,6 +17,7 @@ &.navbar-gitlab { .navbar-inner { background: #373737; + border-bottom: 1px solid #272727; .app_logo { &:hover { background-color: #272727; diff --git a/app/assets/stylesheets/themes/ui_modern.scss b/app/assets/stylesheets/themes/ui_modern.scss index 68318f93016..6173757082e 100644 --- a/app/assets/stylesheets/themes/ui_modern.scss +++ b/app/assets/stylesheets/themes/ui_modern.scss @@ -17,6 +17,7 @@ &.navbar-gitlab { .navbar-inner { background: #345; + border-bottom: 1px solid #234; .app_logo { &:hover { background-color: #234; |