]> git.immae.eu Git - github/wallabag/wallabag.git/commitdiff
Better design of the close button
authorAlexandr Danilov <bitbucket@modos189.ru>
Wed, 10 Feb 2016 19:03:02 +0000 (22:03 +0300)
committerJeremy Benoist <jeremy.benoist@gmail.com>
Thu, 11 Feb 2016 15:51:12 +0000 (16:51 +0100)
src/Wallabag/CoreBundle/Resources/public/themes/material/css/main.css
src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig

index 0ce334a319212ac0a1a8e12b6547cd36c161d5ed..87bcfe65bbb723ab9d5b1f47b013563717bdd79a 100755 (executable)
@@ -395,6 +395,10 @@ main ul.row {
     color: #ffffff;
 }
 
+#article aside .chip i {
+    color: #ffffff;
+}
+
 /* ==========================================================================
    6 = Media queries
    ========================================================================== */
index 87af07dd6c936468f598838e040dbca72386e573..6f8c36741ddaabdb59152f3b63b58ee442c5e8d9 100644 (file)
@@ -159,7 +159,7 @@ main {
             <div id="list">
                 {% for tag in entry.tags %}
                     <div class="chip">
-                    {{ tag.label }} <a href="{{ path('remove_tag', { 'entry': entry.id, 'tag': tag.id }) }}"><i class="chip">✘</i></a>
+                    {{ tag.label }} <a href="{{ path('remove_tag', { 'entry': entry.id, 'tag': tag.id }) }}"><i class="mdi-navigation-close"></i></a>
                     </div>
                 {% endfor %}
             </div>