Commit 0787726ae7b1692e019ca9d209f5a99ba6e9f294

Authored by Dmitriy Zaporozhets
1 parent a7bd18f9

Set correct header border-bottom color for themes

app/assets/stylesheets/themes/ui_color.scss
... ... @@ -17,6 +17,7 @@
17 17 &.navbar-gitlab {
18 18 .navbar-inner {
19 19 background: #547;
  20 + border-bottom: 1px solid #435;
20 21 .app_logo {
21 22 &:hover {
22 23 background-color: #435;
... ...
app/assets/stylesheets/themes/ui_gray.scss
... ... @@ -17,6 +17,7 @@
17 17 &.navbar-gitlab {
18 18 .navbar-inner {
19 19 background: #373737;
  20 + border-bottom: 1px solid #272727;
20 21 .app_logo {
21 22 &:hover {
22 23 background-color: #272727;
... ...
app/assets/stylesheets/themes/ui_modern.scss
... ... @@ -17,6 +17,7 @@
17 17 &.navbar-gitlab {
18 18 .navbar-inner {
19 19 background: #345;
  20 + border-bottom: 1px solid #234;
20 21 .app_logo {
21 22 &:hover {
22 23 background-color: #234;
... ...