Browse Source

Little tweak to empty notifications dropdown

Rafał Pitoń 10 years ago
parent
commit
2cb5e01719

+ 7 - 0
misago/static/misago/css/misago/notifications.less

@@ -70,8 +70,15 @@
         &.empty {
           border-bottom: none;
           padding: @padding-large-vertical @padding-base-horizontal;
+          padding-bottom: @line-height-computed;
 
           text-align: center;
+
+          .fa {
+            display: block;
+
+            font-size: @font-size-large * 3;
+          }
         }
       }
     }

+ 2 - 1
misago/templates/misago/notifications/dropdown.html

@@ -48,7 +48,8 @@
   </li>
   {% empty %}
   <li class="empty">
-    {% trans "You don't have any notifications." %}
+    <span class="text-success fa fa-check fa-2x"></span>
+    {% trans "You don't have any new notifications." %}
   </li>
   {% endfor %}
 </ul>