summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorAnnabel Dunstone <annabel.dunstone@gmail.com>2016-07-21 06:51:12 -0700
committerAnnabel Dunstone <annabel.dunstone@gmail.com>2016-07-21 06:57:06 -0700
commit76a27d7c5803f031a8fe541238ee25f6776aeeab (patch)
treeb68da72082dafa54524f3e3ccfc398f8b04d4df8 /app
parent23a437f10454125219d5510191d058af7f8afe76 (diff)
downloadgitlab-ce-76a27d7c5803f031a8fe541238ee25f6776aeeab.tar.gz
Fix icons on commits page and builds page
Diffstat (limited to 'app')
-rw-r--r--app/assets/stylesheets/pages/builds.scss8
-rw-r--r--app/views/projects/commits/_commit.html.haml2
2 files changed, 9 insertions, 1 deletions
diff --git a/app/assets/stylesheets/pages/builds.scss b/app/assets/stylesheets/pages/builds.scss
index 99a2cd306cf..e26f8f7080d 100644
--- a/app/assets/stylesheets/pages/builds.scss
+++ b/app/assets/stylesheets/pages/builds.scss
@@ -53,6 +53,14 @@
left: 70px;
}
}
+
+ .nav-links {
+ svg {
+ position: relative;
+ top: 2px;
+ margin-right: 3px;
+ }
+ }
}
.build-header {
diff --git a/app/views/projects/commits/_commit.html.haml b/app/views/projects/commits/_commit.html.haml
index ab9afb06afb..04cf2965454 100644
--- a/app/views/projects/commits/_commit.html.haml
+++ b/app/views/projects/commits/_commit.html.haml
@@ -25,7 +25,7 @@
.commit-actions.hidden-xs
- if commit.status
- = render_commit_status(commit, cssclass: 'btn btn-transparent')
+ = render_commit_status(commit)
= clipboard_button(clipboard_text: commit.id)
= link_to commit.short_id, namespace_project_commit_path(project.namespace, project, commit), class: "commit-short-id btn btn-transparent"
= link_to_browse_code(project, commit)