Commit 15a6211e authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Small css improvements

parent 7758a566
...@@ -188,7 +188,7 @@ header { ...@@ -188,7 +188,7 @@ header {
border: 1px solid #DDD; border: 1px solid #DDD;
box-shadow: none; box-shadow: none;
@include transition(all 0.15s ease-in 0s); @include transition(all 0.15s ease-in 0s);
background-color: #f5f5f5; background-color: #f9f9f9;
} }
} }
} }
...@@ -197,6 +197,7 @@ header { ...@@ -197,6 +197,7 @@ header {
width: 300px; width: 300px;
&:focus { &:focus {
width: 330px; width: 330px;
background-color: #FFF;
} }
} }
......
...@@ -230,6 +230,10 @@ ul.nav.nav-projects-tabs { ...@@ -230,6 +230,10 @@ ul.nav.nav-projects-tabs {
margin: 10px 0; margin: 10px 0;
} }
} }
.ci-status-image {
max-height: 22px;
}
} }
.transfer-project .select2-container { .transfer-project .select2-container {
......
...@@ -57,7 +57,7 @@ ...@@ -57,7 +57,7 @@
.pull-right .pull-right
- if ci_service.respond_to?(:status_img_path) - if ci_service.respond_to?(:status_img_path)
= link_to ci_service.builds_path, :'data-no-turbolink' => 'data-no-turbolink' do = 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 - else
= link_to 'view builds', ci_service.builds_path, :'data-no-turbolink' => 'data-no-turbolink' = link_to 'view builds', ci_service.builds_path, :'data-no-turbolink' => 'data-no-turbolink'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment