ソースを参照

Fix filter submit block text alignment

Denis K 9 年 前
コミット
8e6e31201e

+ 5 - 0
CHANGELOG.rst

@@ -1,6 +1,11 @@
 Changelog
 =========
 
+0.0.9
+-----
+* [Fix] Fixed filter submit block text alignment
+
+
 0.0.8
 -----
 * Change license to GPLv2

+ 2 - 0
jet/static/jet/css/_changelist.scss

@@ -11,6 +11,8 @@
 
     &-submit-block {
       white-space: nowrap;
+      line-height: 32px;
+      display: inline-block;
     }
   }
 

+ 2 - 2
jet/templates/admin/search_form.html

@@ -13,13 +13,13 @@
             {% endif %}
         {% endblock %}
 
-        <span class="changelist-filter-submit-block">
+        <div class="changelist-filter-submit-block">
             <input type="submit" value="{% trans 'Search' %}" />
 
             {% if show_result_count %}
                 <span class="small quiet">{% blocktrans count counter=cl.result_count %}{{ counter }} result{% plural %}{{ counter }} results{% endblocktrans %} (<a href="?{% if cl.is_popup %}_popup=1{% endif %}">{% if cl.show_full_result_count %}{% blocktrans with full_result_count=cl.full_result_count %}{{ full_result_count }} total{% endblocktrans %}{% else %}{% trans "Show all" %}{% endif %}</a>)</span>
             {% endif %}
-        </span>
+        </div>
 
         {% for pair in cl.params.items %}
             {% ifnotequal pair.0 search_var %}<input type="hidden" name="{{ pair.0 }}" value="{{ pair.1 }}"/>{% endifnotequal %}