Commit e0f47c34 authored by Phil Hughes's avatar Phil Hughes

Fixed issue when user doesnt exist

Fixed button hover color
parent 704cf9df
...@@ -242,7 +242,7 @@ ...@@ -242,7 +242,7 @@
} }
} }
a { a:not(.btn) {
&:hover { &:hover {
color: $md-link-color; color: $md-link-color;
text-decoration: none; text-decoration: none;
...@@ -291,14 +291,5 @@ ...@@ -291,14 +291,5 @@
a { a {
color: #8c8c8c; color: #8c8c8c;
&:hover {
color: $gl-text-color;
text-decoration: none;
}
&:focus {
text-decoration: none;
}
} }
} }
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
= form_for [@project.namespace.becomes(Namespace), @project, issuable], remote: true, html: {class: 'issuable-context-form inline-update js-issuable-update'} do |f| = form_for [@project.namespace.becomes(Namespace), @project, issuable], remote: true, html: {class: 'issuable-context-form inline-update js-issuable-update'} do |f|
.block.assignee .block.assignee
.sidebar-collapsed-icon.sidebar-collapsed-user{data: {toggle: "tooltip", placement: "left", container: "body"}, title: issuable.assignee.to_reference} .sidebar-collapsed-icon.sidebar-collapsed-user{data: {toggle: "tooltip", placement: "left", container: "body"}, title: (issuable.assignee.to_reference if issuable.assignee)}
- if issuable.assignee - if issuable.assignee
= link_to_member_avatar(issuable.assignee, size: 24) = link_to_member_avatar(issuable.assignee, size: 24)
- else - else
......
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