summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFilipa Lacerda <filipa@gitlab.com>2016-11-07 16:15:30 +0000
committerFilipa Lacerda <filipa@gitlab.com>2016-11-16 11:58:07 +0000
commit8dd19c4279eae0266dce2d2dc9057b0ba0f7650f (patch)
tree48a4e7f22de26b70f4bfc34bbabd8c993dc6f14e
parent95490ca379572efc8010019e7b0d7b1a535b7497 (diff)
downloadgitlab-ce-8dd19c4279eae0266dce2d2dc9057b0ba0f7650f.tar.gz
Fixes avatar style
-rw-r--r--app/assets/stylesheets/pages/environments.scss2
-rw-r--r--app/views/projects/environments/components/_commit.html.haml2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/assets/stylesheets/pages/environments.scss b/app/assets/stylesheets/pages/environments.scss
index 0ab1066e970..6ce10f1e7ef 100644
--- a/app/assets/stylesheets/pages/environments.scss
+++ b/app/assets/stylesheets/pages/environments.scss
@@ -20,7 +20,7 @@
margin: 0;
}
- .avatar-container {
+ .avatar-image-container {
text-decoration: none;
}
diff --git a/app/views/projects/environments/components/_commit.html.haml b/app/views/projects/environments/components/_commit.html.haml
index 972a4f241f5..c0c54325f7f 100644
--- a/app/views/projects/environments/components/_commit.html.haml
+++ b/app/views/projects/environments/components/_commit.html.haml
@@ -16,7 +16,7 @@
%p.commit-title
%span{ "v-if" => "model.last_deployment.commit && model.last_deployment.commit.title"}
- %a.avatar-container{"v-if" => "model.last_deployment.commit.author", ":href" => "model.last_deployment.commit.author.web_url"}
+ %a.avatar-image-container{"v-if" => "model.last_deployment.commit.author", ":href" => "model.last_deployment.commit.author.web_url"}
%img.avatar.has-tooltip.s20{":title" => "model.last_deployment.commit.author.username",
":src" => "model.last_deployment.commit.author.avatar_url"}
%a.commit-row-message{":href" => "model.last_deployment.commit.commit_url"}