diff options
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/base.html.twig | 1 | ||||
-rwxr-xr-x | src/Wallabag/CoreBundle/Resources/views/themes/material/public/css/main.css | 14 |
2 files changed, 15 insertions, 0 deletions
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 @@ | |||
113 | <p>{% trans %}powered by{% endtrans %} <a href="http://wallabag.org">wallabag</a></p> | 113 | <p>{% trans %}powered by{% endtrans %} <a href="http://wallabag.org">wallabag</a></p> |
114 | </footer> | 114 | </footer> |
115 | {% endblock %} | 115 | {% endblock %} |
116 | <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> | ||
116 | </body> | 117 | </body> |
117 | </html> | 118 | </html> |
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 { | |||
26 | background: #f0f0f0; | 26 | background: #f0f0f0; |
27 | } | 27 | } |
28 | 28 | ||
29 | #alphabar { | ||
30 | position: fixed; | ||
31 | background-color: #ff6347; | ||
32 | z-index: 1000; | ||
33 | bottom: 0; | ||
34 | left: 0; | ||
35 | width: 100%; | ||
36 | color: #000; | ||
37 | } | ||
38 | |||
39 | #alphabar a { | ||
40 | color: #555; | ||
41 | } | ||
42 | |||
29 | .border-bottom { | 43 | .border-bottom { |
30 | border-bottom: 1px solid #DDD; | 44 | border-bottom: 1px solid #DDD; |
31 | } | 45 | } |