mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-23 16:10:28 +00:00
Merge pull request #2242 from wallabag/fix-minor-css
Fix print / article views
This commit is contained in:
commit
33adf8dc91
4 changed files with 46 additions and 27 deletions
|
@ -26,7 +26,9 @@
|
||||||
div.tools,
|
div.tools,
|
||||||
header div,
|
header div,
|
||||||
.messages,
|
.messages,
|
||||||
.entrie + .results {
|
.entrie + .results,
|
||||||
|
#article .mbm a,
|
||||||
|
#article-informations {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -26,10 +26,23 @@
|
||||||
div.tools,
|
div.tools,
|
||||||
header div,
|
header div,
|
||||||
.messages,
|
.messages,
|
||||||
.entry + .results {
|
.entry + .results,
|
||||||
|
#slide-out,
|
||||||
|
.progress, .hide-on-large-only,
|
||||||
|
#article > aside,
|
||||||
|
#article .mbm a
|
||||||
|
{
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
main {
|
||||||
|
padding-left: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
#article {
|
||||||
|
margin: inherit !important;
|
||||||
|
}
|
||||||
|
|
||||||
article {
|
article {
|
||||||
border: none !important;
|
border: none !important;
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,29 +30,32 @@
|
||||||
<li><a href="mailto:hello@wallabag.org?subject=Wrong%20display%20in%20wallabag&body={{ entry.url|url_encode }}" title="{{ 'entry.view.left_menu.problem.label'|trans }}" class="tool bad-display icon icon-delete"><span>{{ 'entry.view.left_menu.problem.label'|trans }}</span></a></li>
|
<li><a href="mailto:hello@wallabag.org?subject=Wrong%20display%20in%20wallabag&body={{ entry.url|url_encode }}" title="{{ 'entry.view.left_menu.problem.label'|trans }}" class="tool bad-display icon icon-delete"><span>{{ 'entry.view.left_menu.problem.label'|trans }}</span></a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="link mdi-action-today">
|
|
||||||
{{ 'entry.view.created_at'|trans }}: {{ entry.createdAt|date('Y-m-d') }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="link mdi-action-query-builder">
|
<div id="article-informations">
|
||||||
{% set readingTime = entry.readingTime / app.user.config.readingSpeed %}
|
<div class="link mdi-action-today">
|
||||||
{% if readingTime > 0 %}
|
{{ 'entry.view.created_at'|trans }}: {{ entry.createdAt|date('Y-m-d') }}
|
||||||
{{ 'entry.list.reading_time_minutes'|trans({'%readingTime%': readingTime|round})|capitalize }}
|
|
||||||
{% else %}
|
|
||||||
{{ 'entry.list.reading_time_less_one_minute'|trans|raw }}
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{% set nbAnnotations = entry.annotations | length %}
|
|
||||||
<span class="tool link"><i class="material-icons link">comment</i> {{ 'entry.view.annotations_on_the_entry'|transchoice(entry.annotations | length) }}</span>
|
|
||||||
<aside class="tags">
|
|
||||||
{% for tag in entry.tags %}
|
|
||||||
<span class="label-outline"><i class="material-icons">label_outline</i> {{ tag.label }}</span> <a href="{{ path('remove_tag', { 'entry': entry.id, 'tag': tag.id }) }}"class="nostyle"><i>✘</i></a>
|
|
||||||
{% endfor %}
|
|
||||||
<div class="input-field nav-panel-add-tag" style="display: none">
|
|
||||||
{{ render(controller( "WallabagCoreBundle:Tag:addTagForm", { 'id': entry.id } )) }}
|
|
||||||
</div>
|
</div>
|
||||||
</aside>
|
|
||||||
|
<div class="link mdi-action-query-builder">
|
||||||
|
{% set readingTime = entry.readingTime / app.user.config.readingSpeed %}
|
||||||
|
{% if readingTime > 0 %}
|
||||||
|
{{ 'entry.list.reading_time_minutes'|trans({'%readingTime%': readingTime|round})|capitalize }}
|
||||||
|
{% else %}
|
||||||
|
{{ 'entry.list.reading_time_less_one_minute'|trans|raw }}
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% set nbAnnotations = entry.annotations | length %}
|
||||||
|
<span class="tool link"><i class="material-icons link">comment</i> {{ 'entry.view.annotations_on_the_entry'|transchoice(entry.annotations | length) }}</span>
|
||||||
|
<aside class="tags">
|
||||||
|
{% for tag in entry.tags %}
|
||||||
|
<span class="label-outline"><i class="material-icons">label_outline</i> {{ tag.label }}</span> <a href="{{ path('remove_tag', { 'entry': entry.id, 'tag': tag.id }) }}"class="nostyle"><i>✘</i></a>
|
||||||
|
{% endfor %}
|
||||||
|
<div class="input-field nav-panel-add-tag" style="display: none">
|
||||||
|
{{ render(controller( "WallabagCoreBundle:Tag:addTagForm", { 'id': entry.id } )) }}
|
||||||
|
</div>
|
||||||
|
</aside>
|
||||||
|
</div>
|
||||||
{% if entry.previewPicture is not null %}
|
{% if entry.previewPicture is not null %}
|
||||||
<div><img class="preview" src="{{ entry.previewPicture }}" alt="{{ entry.title|raw }}" /></div>
|
<div><img class="preview" src="{{ entry.previewPicture }}" alt="{{ entry.title|raw }}" /></div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -206,17 +206,18 @@
|
||||||
</header>
|
</header>
|
||||||
<aside>
|
<aside>
|
||||||
{% set readingTime = entry.readingTime / app.user.config.readingSpeed %}
|
{% set readingTime = entry.readingTime / app.user.config.readingSpeed %}
|
||||||
<span class="link mdi-action-query-builder">
|
<span class="mdi-action-query-builder"></span>
|
||||||
|
<span class="link">
|
||||||
{% if readingTime > 0 %}
|
{% if readingTime > 0 %}
|
||||||
{{ 'entry.list.reading_time_minutes_short'|trans({'%readingTime%': readingTime|round}) }}
|
{{ 'entry.list.reading_time_minutes_short'|trans({'%readingTime%': readingTime|round}) }}
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ 'entry.list.reading_time_less_one_minute_short'|trans|raw }}
|
{{ 'entry.list.reading_time_less_one_minute_short'|trans|raw }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</span>
|
</span>
|
||||||
<span class="link mdi-action-today" title="{{ 'entry.view.created_at'|trans }}"> {{ entry.createdAt|date('Y-m-d') }}</span>
|
<span class="mdi-action-today" title="{{ 'entry.view.created_at'|trans }}"> </span> <span class="link">{{ entry.createdAt|date('Y-m-d') }}</span>
|
||||||
<a href="{{ entry.url|e }}" target="_blank" title="{{ 'entry.view.original_article'|trans }} : {{ entry.title|e }}" class="tool">
|
<a href="{{ entry.url|e }}" target="_blank" title="{{ 'entry.view.original_article'|trans }} : {{ entry.title|e }}" class="tool">
|
||||||
<span class="link"><i class="material-icons link">link</i> {{ entry.domainName|removeWww }}</span></a>
|
<i class="material-icons link">link</i> <span class="link">{{ entry.domainName|removeWww }}</span></a>
|
||||||
<span class="tool link"><i class="material-icons link">comment</i> {{ 'entry.view.annotations_on_the_entry'|transchoice(entry.annotations | length) }}</span>
|
<span class="tool"><i class="material-icons link">comment</i> <span class="link">{{ 'entry.view.annotations_on_the_entry'|transchoice(entry.annotations | length) }}</span>
|
||||||
<div id="list">
|
<div id="list">
|
||||||
{% for tag in entry.tags %}
|
{% for tag in entry.tags %}
|
||||||
<div class="chip">
|
<div class="chip">
|
||||||
|
|
Loading…
Reference in a new issue