diff options
author | Filipa Lacerda <filipa@gitlab.com> | 2016-11-07 14:06:01 +0000 |
---|---|---|
committer | Filipa Lacerda <filipa@gitlab.com> | 2016-11-16 11:58:07 +0000 |
commit | 95490ca379572efc8010019e7b0d7b1a535b7497 (patch) | |
tree | 9c81c065e585b17224e391961130b82de6fcaef8 /app | |
parent | 8d171f0a5fbd920b25b5012526e3cdb2c3aee623 (diff) | |
download | gitlab-ce-95490ca379572efc8010019e7b0d7b1a535b7497.tar.gz |
Remove underline styling when hover the user avatar
Diffstat (limited to 'app')
-rw-r--r-- | app/assets/stylesheets/pages/environments.scss | 4 | ||||
-rw-r--r-- | app/views/projects/environments/components/_commit.html.haml | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/app/assets/stylesheets/pages/environments.scss b/app/assets/stylesheets/pages/environments.scss index 9d47e96bb69..0ab1066e970 100644 --- a/app/assets/stylesheets/pages/environments.scss +++ b/app/assets/stylesheets/pages/environments.scss @@ -20,6 +20,10 @@ margin: 0; } + .avatar-container { + text-decoration: none; + } + .icon-play { height: 13px; width: 12px; diff --git a/app/views/projects/environments/components/_commit.html.haml b/app/views/projects/environments/components/_commit.html.haml index 17bc3dcb379..972a4f241f5 100644 --- a/app/views/projects/environments/components/_commit.html.haml +++ b/app/views/projects/environments/components/_commit.html.haml @@ -15,9 +15,8 @@ {{model.last_deployment.commit.short_id}} %p.commit-title - %span{ "v-if" => "model.last_deployment.commit && model.last_deployment.commit.title"} - %a{"v-if" => "model.last_deployment.commit.author", ":href" => "model.last_deployment.commit.author.web_url"} + %a.avatar-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"} |