aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-07-31 19:21:49 +0200
committerNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-07-31 19:21:49 +0200
commit70b5d24f72d2c3d410b55665162c0ebc78bc0339 (patch)
treec8944657242f55b2ecbd5f0dd0fb5973cff89c62
parent3db95a85de1297908e780742cd0b7d779c5f522e (diff)
downloadwallabag-70b5d24f72d2c3d410b55665162c0ebc78bc0339.tar.gz
wallabag-70b5d24f72d2c3d410b55665162c0ebc78bc0339.tar.zst
wallabag-70b5d24f72d2c3d410b55665162c0ebc78bc0339.zip
fix #80: add a link in the footer to report a wrong display
-rw-r--r--css/style-dark.css2
-rw-r--r--css/style-light.css2
-rw-r--r--css/style.css8
-rw-r--r--tpl/view.html3
4 files changed, 11 insertions, 4 deletions
diff --git a/css/style-dark.css b/css/style-dark.css
index 813c291d..0fcced24 100644
--- a/css/style-dark.css
+++ b/css/style-dark.css
@@ -13,7 +13,7 @@ a, a:hover, a:visited {
13 color: #fff; 13 color: #fff;
14} 14}
15 15
16#links a:hover, .backhome a:hover{ 16#links a:hover, .backhome a:hover, .support a:hover{
17 background-color: #fff; 17 background-color: #fff;
18 color: #000; 18 color: #000;
19} 19}
diff --git a/css/style-light.css b/css/style-light.css
index cd2384c3..c1d98326 100644
--- a/css/style-light.css
+++ b/css/style-light.css
@@ -23,7 +23,7 @@ a, a:hover, a:visited {
23 color: #fff; 23 color: #fff;
24} 24}
25 25
26#links a:hover, .backhome a:hover{ 26#links a:hover, .backhome a:hover, .support a:hover{
27 background-color: #040707; 27 background-color: #040707;
28 color: #F1F1F1; 28 color: #F1F1F1;
29} 29}
diff --git a/css/style.css b/css/style.css
index 9fadfa96..dda8b0fa 100644
--- a/css/style.css
+++ b/css/style.css
@@ -46,15 +46,19 @@ header {
46 margin: 0 auto; 46 margin: 0 auto;
47} 47}
48 48
49#links a, .backhome a{ 49#links a, .backhome a, .support a{
50 text-decoration: none; 50 text-decoration: none;
51 padding: 5px 10px; 51 padding: 5px 10px;
52} 52}
53#links a:hover, .backhome a:hover{ 53#links a:hover, .backhome a:hover, .support a:hover{
54 -webkit-border-radius: 2px; 54 -webkit-border-radius: 2px;
55 border-radius: 2px; 55 border-radius: 2px;
56} 56}
57 57
58.support {
59 font-size: 14px;
60}
61
58footer { 62footer {
59 text-align: right; 63 text-align: right;
60} 64}
diff --git a/tpl/view.html b/tpl/view.html
index 007d5d4e..e68cd1a1 100644
--- a/tpl/view.html
+++ b/tpl/view.html
@@ -49,6 +49,9 @@
49 <a href="index.php" title="back to home">&larr;</a> 49 <a href="index.php" title="back to home">&larr;</a>
50 <a href="#" title="back to top">&uarr;</a> 50 <a href="#" title="back to top">&uarr;</a>
51 </div> 51 </div>
52 <div class="support">
53 this article appears wrong? <a href="https://github.com/inthepoche/poche/issues/new">create an issue</a> or <a href="mailto:support@inthepoche.com">contact us by mail</a>
54 </div>
52 55
53 56
54 {include="js"} 57 {include="js"}