From a1efbcad479b317f87c6152f2b5c063fc11dd894 Mon Sep 17 00:00:00 2001 From: Henrik Levkowetz Date: Fri, 9 Sep 2016 16:52:36 +0000 Subject: [PATCH] Fixed an issue where button badges would be positioned differently on firefox and webkit-based browsers. - Legacy-Id: 11958 --- ietf/templates/nomcom/feedback.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ietf/templates/nomcom/feedback.html b/ietf/templates/nomcom/feedback.html index 9f2aafd87..8b7a0bd35 100644 --- a/ietf/templates/nomcom/feedback.html +++ b/ietf/templates/nomcom/feedback.html @@ -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 %}