From e62d27ff9b3f07f09a77e075653c6a650860f5ec Mon Sep 17 00:00:00 2001 From: =?utf8?q?Nicolas=20L=C5=93uillet?= Date: Tue, 18 Aug 2015 20:54:47 +0200 Subject: [PATCH] bottom bar to display message --- .../CoreBundle/Resources/views/base.html.twig | 1 + .../views/themes/material/public/css/main.css | 14 ++++++++++++++ 2 files changed, 15 insertions(+) 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; } -- 2.41.0