bottom bar to display message

This commit is contained in:
Nicolas Lœuillet 2015-08-18 20:54:47 +02:00
parent 7b2d336893
commit e62d27ff9b
2 changed files with 15 additions and 0 deletions

View file

@ -113,5 +113,6 @@
<p>{% trans %}powered by{% endtrans %} <a href="http://wallabag.org">wallabag</a></p> <p>{% trans %}powered by{% endtrans %} <a href="http://wallabag.org">wallabag</a></p>
</footer> </footer>
{% endblock %} {% 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> </body>
</html> </html>

View file

@ -26,6 +26,20 @@ body {
background: #f0f0f0; 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 {
border-bottom: 1px solid #DDD; border-bottom: 1px solid #DDD;
} }