mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-27 03:21:01 +00:00
bottom bar to display message
This commit is contained in:
parent
7b2d336893
commit
e62d27ff9b
2 changed files with 15 additions and 0 deletions
|
@ -113,5 +113,6 @@
|
|||
<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>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue