diff options
author | Alexandr Danilov <bitbucket@modos189.ru> | 2016-02-10 22:03:02 +0300 |
---|---|---|
committer | Jeremy Benoist <jeremy.benoist@gmail.com> | 2016-02-11 16:51:12 +0100 |
commit | a7c7de4e9b1ba9c688c9d4f5c442adcd6450c0a4 (patch) | |
tree | f3096df36e6325723cc8e72f13a4f8d53b1715e3 | |
parent | 9b5edf33a00490b033692efca9987a35225835ba (diff) | |
download | wallabag-a7c7de4e9b1ba9c688c9d4f5c442adcd6450c0a4.tar.gz wallabag-a7c7de4e9b1ba9c688c9d4f5c442adcd6450c0a4.tar.zst wallabag-a7c7de4e9b1ba9c688c9d4f5c442adcd6450c0a4.zip |
Better design of the close button
-rwxr-xr-x | src/Wallabag/CoreBundle/Resources/public/themes/material/css/main.css | 4 | ||||
-rw-r--r-- | src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Resources/public/themes/material/css/main.css b/src/Wallabag/CoreBundle/Resources/public/themes/material/css/main.css index 0ce334a3..87bcfe65 100755 --- a/src/Wallabag/CoreBundle/Resources/public/themes/material/css/main.css +++ b/src/Wallabag/CoreBundle/Resources/public/themes/material/css/main.css | |||
@@ -395,6 +395,10 @@ main ul.row { | |||
395 | color: #ffffff; | 395 | color: #ffffff; |
396 | } | 396 | } |
397 | 397 | ||
398 | #article aside .chip i { | ||
399 | color: #ffffff; | ||
400 | } | ||
401 | |||
398 | /* ========================================================================== | 402 | /* ========================================================================== |
399 | 6 = Media queries | 403 | 6 = Media queries |
400 | ========================================================================== */ | 404 | ========================================================================== */ |
diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig index 87af07dd..6f8c3674 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entry.html.twig | |||
@@ -159,7 +159,7 @@ main { | |||
159 | <div id="list"> | 159 | <div id="list"> |
160 | {% for tag in entry.tags %} | 160 | {% for tag in entry.tags %} |
161 | <div class="chip"> | 161 | <div class="chip"> |
162 | {{ tag.label }} <a href="{{ path('remove_tag', { 'entry': entry.id, 'tag': tag.id }) }}"><i class="chip">✘</i></a> | 162 | {{ tag.label }} <a href="{{ path('remove_tag', { 'entry': entry.id, 'tag': tag.id }) }}"><i class="mdi-navigation-close"></i></a> |
163 | </div> | 163 | </div> |
164 | {% endfor %} | 164 | {% endfor %} |
165 | </div> | 165 | </div> |