浏览代码

Align dropdown arrows (#4219)

This fixes a bug where the dropdown arrows would appear below a menu item.
Closes #4218
mba242 8 年之前
父节点
当前提交
d5d3600b80
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Resources/views/Menu/sonata_menu.html.twig

+ 1 - 1
Resources/views/Menu/sonata_menu.html.twig

@@ -43,7 +43,7 @@
             {% set icon = item.extra('icon')|default('') %}
             {{ icon|raw }}
             {{ parent() }}
-            <i class="fa pull-right fa-angle-left"></i>
+            <span class="pull-right-container"><i class="fa pull-right fa-angle-left"></i></span>
         </a>
     {% endspaceless %}
 {% endblock %}