diff options
-rw-r--r-- | app/assets/stylesheets/generic/header.scss | 3 | ||||
-rw-r--r-- | app/assets/stylesheets/pages/projects.scss | 4 | ||||
-rw-r--r-- | app/views/projects/_aside.html.haml | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/app/assets/stylesheets/generic/header.scss b/app/assets/stylesheets/generic/header.scss index fcd62373bfd..362b217a444 100644 --- a/app/assets/stylesheets/generic/header.scss +++ b/app/assets/stylesheets/generic/header.scss @@ -188,7 +188,7 @@ header { border: 1px solid #DDD; box-shadow: none; @include transition(all 0.15s ease-in 0s); - background-color: #f5f5f5; + background-color: #f9f9f9; } } } @@ -197,6 +197,7 @@ header { width: 300px; &:focus { width: 330px; + background-color: #FFF; } } diff --git a/app/assets/stylesheets/pages/projects.scss b/app/assets/stylesheets/pages/projects.scss index 16b9814a0fc..83771480cbd 100644 --- a/app/assets/stylesheets/pages/projects.scss +++ b/app/assets/stylesheets/pages/projects.scss @@ -230,6 +230,10 @@ ul.nav.nav-projects-tabs { margin: 10px 0; } } + + .ci-status-image { + max-height: 22px; + } } .transfer-project .select2-container { diff --git a/app/views/projects/_aside.html.haml b/app/views/projects/_aside.html.haml index 333a1e6156d..e90c7b26dd2 100644 --- a/app/views/projects/_aside.html.haml +++ b/app/views/projects/_aside.html.haml @@ -57,7 +57,7 @@ .pull-right - if ci_service.respond_to?(:status_img_path) = link_to ci_service.builds_path, :'data-no-turbolink' => 'data-no-turbolink' do - = image_tag ci_service.status_img_path, alt: "build status" + = image_tag ci_service.status_img_path, alt: "build status", class: 'ci-status-image' - else = link_to 'view builds', ci_service.builds_path, :'data-no-turbolink' => 'data-no-turbolink' |