make validated e-mails on profile page not links
test plan: * validated e-mails listed under the "Ways to Contact" on the user settings right side should not be non-functional links closes #CNVS-25966 Change-Id: I7fe9811f59ff65bb82feb28c1d7c5b5f07f8f82b Reviewed-on: https://gerrit.instructure.com/73252 Tested-by: Jenkins Reviewed-by: Clay Diffrient <cdiffrient@instructure.com> QA-Review: Jahnavi Yetukuri <jyetukuri@instructure.com> Product-Review: James Williams <jamesw@instructure.com>
This commit is contained in:
parent
859a27dbc9
commit
e5d788bd93
|
@ -50,6 +50,10 @@
|
|||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
#right-side p.email_channel {
|
||||
margin: 0;
|
||||
color: #0081bd;
|
||||
}
|
||||
.intl_rates_may_apply {
|
||||
font-size: 0.8em
|
||||
}
|
||||
|
@ -75,7 +79,11 @@
|
|||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<a href="#" class="path email_channel" title="<%=h c.path %>"><%= c.path %></a>
|
||||
<% if c.state == :unconfirmed %>
|
||||
<a href="#" class="path email_channel" title="<%=h c.path %>"><%= c.path %></a>
|
||||
<% else %>
|
||||
<p class="path email_channel"><%= c.path %></>
|
||||
<% end %>
|
||||
</td>
|
||||
<td class="email_actions">
|
||||
<span class="hidden_for_single">
|
||||
|
|
Loading…
Reference in New Issue