From: Nicolas LÅ“uillet Date: Tue, 18 Aug 2015 18:54:47 +0000 (+0200) Subject: bottom bar to display message X-Git-Tag: 2.0.0-alpha.0~19^2~1 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=e62d27ff9b3f07f09a77e075653c6a650860f5ec;p=github%2Fwallabag%2Fwallabag.git bottom bar to display message --- diff --git a/src/Wallabag/CoreBundle/Resources/views/base.html.twig b/src/Wallabag/CoreBundle/Resources/views/base.html.twig index c381a08c..a6cba6ce 100644 --- a/src/Wallabag/CoreBundle/Resources/views/base.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/base.html.twig @@ -113,5 +113,6 @@

{% trans %}powered by{% endtrans %} wallabag

{% endblock %} +
You're trying wallabag v2, which is in alpha version. If you find a bug, please have a look to our issues list and open a new if necessary.
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/public/css/main.css b/src/Wallabag/CoreBundle/Resources/views/themes/material/public/css/main.css index 81ea598c..c812ed6f 100755 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/public/css/main.css +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/public/css/main.css @@ -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; }