Fixed an issue where button badges would be positioned differently on firefox and webkit-based browsers.

- Legacy-Id: 11958
This commit is contained in:
Henrik Levkowetz 2016-09-09 16:52:36 +00:00
parent 350d5315a5
commit a1efbcad47

View file

@ -10,8 +10,15 @@
text-align: left;
}
.btn-group-vertical .btn .badge {
float:right; margin-top: -1.3em;
float:right;
margin-top: 0.15em;
}
@-moz-document url-prefix() {
.btn-group-vertical .btn .badge {
margin-top: -1.3em;
}
}
{% endblock %}
{% block subtitle %} - Feedback{% endblock %}