diff --git a/app/Resources/static/themes/material/css/main.css b/app/Resources/static/themes/material/css/main.css index e70bb2b12..cfc77d06d 100755 --- a/app/Resources/static/themes/material/css/main.css +++ b/app/Resources/static/themes/material/css/main.css @@ -439,6 +439,10 @@ main ul.row { height: auto; } +#article > header > h1 { + font-size: 2em; +} + .reader-mode { width: 95px !important; transition: width 0.2s ease; diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig index d245c8fdf..d1cadea95 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/material/Entry/entries.html.twig @@ -40,7 +40,7 @@ more_vert {% endif %} - {{ entry.title|striptags|slice(0, 42)|raw }} + {{ entry.title|striptags|raw }}
@@ -78,13 +78,10 @@

{{ entry.content|striptags|slice(0, 300)|raw }}…

- {% if entry.tags | length > 2 %} - {{ 'entry.list.number_of_tags'|transchoice(entry.tags | length - 2) }} - {% endif %}
{% endif %}