mirror of
https://github.com/wallabag/wallabag.git
synced 2025-08-01 17:38:38 +00:00
Merge pull request #1815 from wallabag/v1-prepare-v2
Add message on unread page about v2
This commit is contained in:
commit
0dd043c19b
2 changed files with 29 additions and 1 deletions
|
@ -1,3 +1,20 @@
|
||||||
|
.messages {
|
||||||
|
display: block;
|
||||||
|
clear: both;
|
||||||
|
width: 400px;
|
||||||
|
margin: 10px auto 10px;
|
||||||
|
padding: 10px 0;
|
||||||
|
-moz-border-radius: 4px;
|
||||||
|
border-radius: 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.messages p {
|
||||||
|
margin: 3px 0 3px 10px !important;
|
||||||
|
padding: 0 10px 0 23px !important;
|
||||||
|
font-size: 14px;
|
||||||
|
line-height: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
.messages.error.install {
|
.messages.error.install {
|
||||||
border: 1px solid #c42608;
|
border: 1px solid #c42608;
|
||||||
color: #c00 !important;
|
color: #c00 !important;
|
||||||
|
@ -17,3 +34,9 @@
|
||||||
background: #e0fbcc !important;
|
background: #e0fbcc !important;
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.messages.information,
|
||||||
|
.messages.info {
|
||||||
|
border: 1px solid #82aee7;
|
||||||
|
background: #dfebfb;
|
||||||
|
}
|
|
@ -1 +1,6 @@
|
||||||
{{ messages | raw }}
|
{{ messages | raw }}
|
||||||
|
{% if view == 'home' %}
|
||||||
|
<div class="messages information">
|
||||||
|
<p><a href="http://doc.wallabag.org">wallabag v2 is out, please read the documentation to upgrade.</a></p>
|
||||||
|
</div>
|
||||||
|
{% endif %}
|
Loading…
Add table
Add a link
Reference in a new issue