]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
bottom bar to display message
authorNicolas Lœuillet <nicolas@loeuillet.org>
Tue, 18 Aug 2015 18:54:47 +0000 (20:54 +0200)
committerNicolas Lœuillet <nicolas@loeuillet.org>
Wed, 19 Aug 2015 13:14:08 +0000 (15:14 +0200)
src/Wallabag/CoreBundle/Resources/views/base.html.twig
src/Wallabag/CoreBundle/Resources/views/themes/material/public/css/main.css

index c381a08c6d91fd3c9c05ab9a872756e99ba6fae2..a6cba6cebec848f6a402a9985fcdbb2aebf81d4f 100644 (file)
                 <p>{% trans %}powered by{% endtrans %} <a href="http://wallabag.org">wallabag</a></p>
             </footer>
         {% endblock %}
+        <div id="alphabar">You're trying wallabag v2, which is in alpha version. If you find a bug, please have a look to <a href="https://github.com/wallabag/wallabag/issues">our issues list</a> and <a href="https://github.com/wallabag/wallabag/issues/new">open a new if necessary</a>.</div>
     </body>
 </html>
index 81ea598c443f922954bc672ef4365befaefad3dc..c812ed6f6f037c42fe18dc723128e2eda2141d01 100755 (executable)
@@ -26,6 +26,20 @@ body {
     background: #f0f0f0;
 }
 
+#alphabar {
+    position: fixed;
+    background-color: #ff6347;
+    z-index: 1000;
+    bottom: 0;
+    left: 0;
+    width: 100%;
+    color: #000;
+}
+
+#alphabar a {
+    color: #555;
+}
+
 .border-bottom {
     border-bottom: 1px solid #DDD;
 }