aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/baggy
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2014-02-19 13:47:11 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2014-02-19 13:47:11 +0100
commit60ca369cd328f4eae31005c547b9419a5ab33324 (patch)
treef9ab84e607cb54bdb0dc1d0027435af213a722f3 /themes/baggy
parent5e98c2183ae824ab6a1dd2dc22f8619a0d718977 (diff)
parentb89d5a2bf48c2c1eb796963b3401aca498618ec4 (diff)
downloadwallabag-60ca369cd328f4eae31005c547b9419a5ab33324.tar.gz
wallabag-60ca369cd328f4eae31005c547b9419a5ab33324.tar.zst
wallabag-60ca369cd328f4eae31005c547b9419a5ab33324.zip
Merge pull request #468 from wallabag/dev1.5.1
1.5.1
Diffstat (limited to 'themes/baggy')
-rw-r--r--themes/baggy/config.twig4
-rwxr-xr-xthemes/baggy/css/messages.css19
-rw-r--r--themes/baggy/home.twig2
3 files changed, 24 insertions, 1 deletions
diff --git a/themes/baggy/config.twig b/themes/baggy/config.twig
index d0ec0ca7..598409b9 100644
--- a/themes/baggy/config.twig
+++ b/themes/baggy/config.twig
@@ -116,4 +116,8 @@
116 {% if constant('STORAGE') == 'sqlite' %} 116 {% if constant('STORAGE') == 'sqlite' %}
117 <p><a href="?download" target="_blank">{% trans "Click here" %}</a> {% trans "to download your database." %}</p>{% endif %} 117 <p><a href="?download" target="_blank">{% trans "Click here" %}</a> {% trans "to download your database." %}</p>{% endif %}
118 <p><a href="?export" target="_blank">{% trans "Click here" %}</a> {% trans "to export your wallabag data." %}</p> 118 <p><a href="?export" target="_blank">{% trans "Click here" %}</a> {% trans "to export your wallabag data." %}</p>
119
120 <h2>{% trans "Cache" %}</h2>
121 <p><a href="?empty-cache">{% trans "Click here" %}</a> {% trans "to delete cache." %}</p>
122
119{% endblock %} 123{% endblock %}
diff --git a/themes/baggy/css/messages.css b/themes/baggy/css/messages.css
index e69de29b..0cd89a9e 100755
--- a/themes/baggy/css/messages.css
+++ b/themes/baggy/css/messages.css
@@ -0,0 +1,19 @@
1.messages.error {
2 border: 1px solid #c42608;
3 color: #c00 !important;
4 background: #fff0ef;
5 text-align: left;
6}
7
8.messages.notice {
9 border: 1px solid #ebcd41;
10 color: #000;
11 background: #fffcd3;
12 text-align: left;
13}
14
15.messages.success {
16 border: 1px solid #6dc70c;
17 background: #e0fbcc;
18 text-align: left;
19} \ No newline at end of file
diff --git a/themes/baggy/home.twig b/themes/baggy/home.twig
index d58e53ce..33afdbbd 100644
--- a/themes/baggy/home.twig
+++ b/themes/baggy/home.twig
@@ -43,7 +43,7 @@
43 43
44 {% endfor %} 44 {% endfor %}
45 </div> 45 </div>
46 {% if view == 'home' %}{% if nb_results > 1 %}<a title="{% trans "Mark all the entries as read" %}" href="./?action=archive_all">{{ "Mark all the entries as read" }} {% trans "" %}</a>{% endif %}{% endif %} 46 {% if view == 'home' %}{% if nb_results > 1 %}<a title="{% trans "Mark all the entries as read" %}" href="./?action=archive_all">{{ "Mark all the entries as read" }}</a>{% endif %}{% endif %}
47 {% endif %} 47 {% endif %}
48 {{ block('pager') }} 48 {{ block('pager') }}
49{% endblock %} 49{% endblock %}