Commit 423ffe29d549d72a603e0d3a529ec59c035a0934

Authored by Dmitriy Zaporozhets
1 parent 779355ae

Fix alerts

Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
app/views/projects/merge_requests/_show.html.haml
... ... @@ -12,7 +12,7 @@
12 12 = render "projects/merge_requests/show/commits"
13 13  
14 14 - if @commits.present?
15   - %ul.nav.nav-tabs
  15 + %ul.nav.nav-tabs.append-bottom-10
16 16 %li.notes-tab{data: {action: 'notes'}}
17 17 = link_to project_merge_request_path(@project, @merge_request) do
18 18 %i.icon-comment
... ...
app/views/projects/merge_requests/show/_mr_accept.html.haml
... ... @@ -37,7 +37,7 @@
37 37 %strong This request can't be merged with GitLab. You should do it manually
38 38  
39 39 .automerge_widget.unchecked
40   - .alert
  40 + .alert.alert-warning
41 41 %strong
42 42 %i.icon-refresh
43 43 Checking for ability to automatically merge…
... ...
app/views/projects/merge_requests/show/_mr_ci.html.haml
... ... @@ -16,14 +16,14 @@
16 16  
17 17 - [:running, :pending].each do |status|
18 18 .ci_widget{class: "ci-#{status}", style: "display:none"}
19   - .alert
  19 + .alert.alert-warning
20 20 %i.icon-time
21 21 %strong CI build #{status}
22 22 for #{@merge_request.last_commit_short_sha}.
23 23 = link_to "Build page", ci_build_details_path(@merge_request)
24 24  
25 25 .ci_widget
26   - .alert
  26 + .alert.alert-warning
27 27 %strong
28 28 %i.icon-refresh
29 29 Checking for CI status for #{@merge_request.last_commit_short_sha}
... ...