From: Jeremy Benoist Date: Tue, 25 Aug 2015 21:24:24 +0000 (+0200) Subject: Filters view on side for baggy X-Git-Tag: 2.0.0-alpha.0~1^2~3 X-Git-Url: https://git.immae.eu/?a=commitdiff_plain;h=5def3f5862c4c8cc3faa19cd79a3746570064790;p=github%2Fwallabag%2Fwallabag.git Filters view on side for baggy --- diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig index 28bf0ab9..26cafc42 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/Entry/entries.html.twig @@ -20,15 +20,6 @@ {% endblock %} - - {% if entries is empty %}

{% trans %}No articles found.{% endtrans %}

{% else %} @@ -55,4 +46,70 @@ {% endfor %} {% endif %} + + + {% endblock %} diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/public/css/main.css b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/public/css/main.css index dee307f3..16ff2fe2 100755 --- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/public/css/main.css +++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/public/css/main.css @@ -940,16 +940,31 @@ pre code { } #filter-form { - margin-top: 30px !important; - width: 500px; - height: 370px; - right: 5em; - left: inherit; + position: fixed; + width: 15%; + height: 100%; + top: 0; + right: 0; + background-color: #FFF; + padding: 15px; + padding-right: 30px; + padding-top: 30px; + + z-index: 12; + + /*transition-property: transform; + transition-duration: 0.3s; + transition-delay: 0.3s; + + transform: translate3d(100%, 0, 0);*/ } #filter-form form { - width: 500px; - height: 370px; + +} + +#filter-form form .filter-group { + margin: 5px; }