mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-22 17:11:07 +00:00
Fix reviews
Signed-off-by: Aline <chetta.aline@gmail.com>
This commit is contained in:
parent
14f58edd80
commit
34806fab1b
10 changed files with 33 additions and 9 deletions
|
@ -27,6 +27,10 @@ main {
|
|||
color: #313131;
|
||||
}
|
||||
|
||||
.card-content .card-title {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.card-content .activator,
|
||||
.card-reveal .activator {
|
||||
cursor: pointer;
|
||||
|
@ -111,6 +115,10 @@ main {
|
|||
.reading-time {
|
||||
display: inline-flex;
|
||||
vertical-align: middle;
|
||||
|
||||
span {
|
||||
margin-right: 5px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -138,6 +138,10 @@ a.icon-image {
|
|||
&.shaarli::before {
|
||||
background: url("../../_global/img/icons/shaarli.png") no-repeat center/80%;
|
||||
}
|
||||
|
||||
&.scuttle::before {
|
||||
background: url("../../_global/img/icons/scuttle.png") no-repeat center/80%;
|
||||
}
|
||||
}
|
||||
|
||||
.icon-google-plus2::before {
|
||||
|
|
|
@ -7,6 +7,10 @@
|
|||
|
||||
li {
|
||||
padding: 0;
|
||||
|
||||
&.logo > a:hover {
|
||||
background: initial;
|
||||
}
|
||||
}
|
||||
|
||||
a {
|
||||
|
|
|
@ -22,3 +22,11 @@ div.settings div.file-field {
|
|||
nav .input-field input {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.tabs {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.tab {
|
||||
flex: 1;
|
||||
}
|
||||
|
|
|
@ -132,8 +132,8 @@
|
|||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="input-field col s12">
|
||||
<label>{{ 'config.form_rss.token_label'|trans }}</label>
|
||||
<div class="col s12">
|
||||
<h6 class="grey-text">{{ 'config.form_rss.token_label'|trans }}</h6>
|
||||
<div>
|
||||
{% if rss.token %}
|
||||
{{ rss.token }}
|
||||
|
@ -151,8 +151,8 @@
|
|||
</div>
|
||||
{% if rss.token %}
|
||||
<div class="row">
|
||||
<div class="input-field col s12">
|
||||
<label>{{ 'config.form_rss.rss_links'|trans }}</label>
|
||||
<div class="col s12">
|
||||
<h6 class="grey-text">{{ 'config.form_rss.rss_links'|trans }}</h6>
|
||||
<ul>
|
||||
<li><a href="{{ path('unread_rss', {'username': rss.username, 'token': rss.token}) }}">{{ 'config.form_rss.rss_link.unread'|trans }}</a></li>
|
||||
<li><a href="{{ path('starred_rss', {'username': rss.username, 'token': rss.token}) }}">{{ 'config.form_rss.rss_link.starred'|trans }}</a></li>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{% set readingTime = entry.readingTime / app.user.config.readingSpeed %}
|
||||
<i class="material-icons">timer</i>
|
||||
{% if readingTime > 0 %}
|
||||
{{ 'entry.list.reading_time_minutes_short'|trans({'%readingTime%': readingTime|round}) }}
|
||||
<span>{{ 'entry.list.reading_time_minutes_short'|trans({'%readingTime%': readingTime|round}) }}</span>
|
||||
{% else %}
|
||||
{{ 'entry.list.reading_time_less_one_minute_short'|trans|raw }}
|
||||
<span>{{ 'entry.list.reading_time_less_one_minute_short'|trans|raw }}</span>
|
||||
{% endif %}
|
||||
|
|
|
@ -132,8 +132,7 @@
|
|||
{% endif %}
|
||||
{% if craue_setting('share_scuttle') %}
|
||||
<li>
|
||||
<a href="{{ craue_setting('scuttle_url') }}/bookmarks.php?action=add&address={{ entry.url|url_encode }}&title={{ entry.title|striptags|url_encode }}&tags={{ entry.tags|join(',')|striptags|url_encode }}" target="_blank">
|
||||
<i class="tool icon-image icon-image--scuttle" title="scuttle"></i>
|
||||
<a href="{{ craue_setting('scuttle_url') }}/bookmarks.php?action=add&address={{ entry.url|url_encode }}&title={{ entry.title|striptags|url_encode }}&tags={{ entry.tags|join(',')|striptags|url_encode }}" target="_blank" title="scuttle" class="tool icon-image scuttle">
|
||||
<span>scuttle</span>
|
||||
</a>
|
||||
</li>
|
||||
|
|
BIN
web/bundles/wallabagcore/img/scuttle.png
Normal file
BIN
web/bundles/wallabagcore/img/scuttle.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1 KiB |
|
@ -61,6 +61,7 @@
|
|||
"img/carrot-icon--white.png": "img/carrot-icon--white.png",
|
||||
"img/diaspora-icon--black.png": "img/diaspora-icon--black.png",
|
||||
"img/list.png": "img/list.png",
|
||||
"img/scuttle.png": "img/scuttle.png",
|
||||
"img/shaarli.png": "img/shaarli.png",
|
||||
"img/table.png": "img/table.png",
|
||||
"img/unmark-icon--black.png": "img/unmark-icon--black.png",
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue