Merge "Fix inconsistent sidebar toggle icon"

This commit is contained in:
Jenkins 2015-03-10 22:04:11 +00:00 committed by Gerrit Code Review
commit f8d3804b85
2 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@
{% if user|has_permissions:dashboard %}
<dt {% if current.slug == dashboard.slug %}class="active"{% endif %}>
{{ dashboard.name }}
<span class="glyphicon pull-right"></span>
<span class="fa pull-right"></span>
</dt>
{% if current.slug == dashboard.slug %}
<dd>
@ -20,7 +20,7 @@
<div>
<h4>
{{ heading }}
<span class="glyphicon pull-right"></span>
<span class="fa pull-right"></span>
</h4>
{% endif %}
<ul>

View File

@ -1,9 +1,9 @@
@mixin sidebar_toggle_icon {
& > span {
transition: all .3s ease 0s;
@extend .glyphicon-chevron-down;
@extend .fa-angle-down;
&:before {
font-size: .6em;
font-size: 1em;
line-height: 18px;
vertical-align: middle;
}