Browse Source

Fix icon size for topic status

sh4nks 9 years ago
parent
commit
e8412958dc

+ 1 - 1
flaskbb/themes/aurora/src/flaskbb.scss

@@ -170,7 +170,7 @@ body {
             position: relative;
             .topic-status {
                 float: left;
-                font-size: 1em;
+                font-size: 2em;
                 padding-right: 0.75em;
             }
             .topic-name {

+ 1 - 1
flaskbb/themes/aurora/static/css/flaskbb.css

@@ -113,7 +113,7 @@ body {
   position: relative; }
   .forum-body .forum-row .topic-info .topic-status {
     float: left;
-    font-size: 1em;
+    font-size: 2em;
     padding-right: 0.75em; }
   .forum-body .forum-row .topic-info .topic-name {
     font-weight: bold; }

+ 6 - 3
flaskbb/themes/aurora/templates/forum/forum.html

@@ -68,9 +68,9 @@
                         {% endif %}
                     {% else %}
                         {% if topic|topic_is_unread(topicread, current_user, forumsread) %}
-                            <span class="fa fa-comment topic-unread" style="font-size: 2em"></span>
+                            <span class="fa fa-comment topic-unread"></span>
                         {% else %}
-                            <span class="fa fa-comment-o topic-read" style="font-size: 2em"></span>
+                            <span class="fa fa-comment-o topic-read"></span>
                         {% endif %}
                     {% endif %}
                     </div>
@@ -114,7 +114,10 @@
 
             </div>  <!-- end forum-row -->
             {% else %}
-                {% trans %}No Topics.{% endtrans %}
+            <div class="row forum-row clearfix">
+                <div class="col-md-12 col-sm-12 co-xs-12">
+                    {% trans %}No Topics.{% endtrans %}
+                </div>
             </div> <!-- end forum-row -->
             {% endfor %}
         </div>