aboutsummaryrefslogtreecommitdiffhomepage
path: root/css
diff options
context:
space:
mode:
authornicosomb <nicolas@loeuillet.org>2013-04-12 13:13:21 +0200
committernicosomb <nicolas@loeuillet.org>2013-04-12 13:13:21 +0200
commitc8bbe19b3fd2ba268c98561690de37fe599ff055 (patch)
treecb6d9c7c6c1bc973f3569b85a6694cb4d5059d10 /css
parent67e7910439d364f1f7a4dac1d233a7c1055fb933 (diff)
downloadwallabag-c8bbe19b3fd2ba268c98561690de37fe599ff055.tar.gz
wallabag-c8bbe19b3fd2ba268c98561690de37fe599ff055.tar.zst
wallabag-c8bbe19b3fd2ba268c98561690de37fe599ff055.zip
possibilité de mettre en fav ou en archive un article depuis la page article
Diffstat (limited to 'css')
-rw-r--r--css/style.css30
1 files changed, 29 insertions, 1 deletions
diff --git a/css/style.css b/css/style.css
index d53060ec..959a411a 100644
--- a/css/style.css
+++ b/css/style.css
@@ -100,7 +100,15 @@ footer {
100 margin-left: -20px; 100 margin-left: -20px;
101} 101}
102 102
103#main .entrie .tools a.tool span { 103#article .tools {
104 display: inline;
105}
106
107#article .tools a.tool {
108 cursor: pointer;
109}
110
111#main .entrie .tools a.tool span, #article .tools a.tool span {
104 display: inline-block; 112 display: inline-block;
105 width: 16px; 113 width: 16px;
106 height: 16px; 114 height: 16px;
@@ -110,18 +118,34 @@ a.fav span {
110 background: url('../img/fav-on.png') no-repeat; 118 background: url('../img/fav-on.png') no-repeat;
111} 119}
112 120
121a.fav span:hover {
122 background: url('../img/fav-off.png') no-repeat;
123}
124
113a.fav-off span { 125a.fav-off span {
114 background: url('../img/fav-off.png') no-repeat; 126 background: url('../img/fav-off.png') no-repeat;
115} 127}
116 128
129a.fav-off span:hover {
130 background: url('../img/fav-on.png') no-repeat;
131}
132
117a.archive span { 133a.archive span {
118 background: url('../img/archive-on.png') no-repeat; 134 background: url('../img/archive-on.png') no-repeat;
119} 135}
120 136
137a.archive span:hover {
138 background: url('../img/archive-off.png') no-repeat;
139}
140
121a.archive-off span { 141a.archive-off span {
122 background: url('../img/archive-off.png') no-repeat; 142 background: url('../img/archive-off.png') no-repeat;
123} 143}
124 144
145a.archive-off span:hover {
146 background: url('../img/archive-on.png') no-repeat;
147}
148
125a.delete span { 149a.delete span {
126 background: url('../img/delete.png') no-repeat; 150 background: url('../img/delete.png') no-repeat;
127} 151}
@@ -153,6 +177,10 @@ body.article {
153 text-decoration: none; 177 text-decoration: none;
154} 178}
155 179
180.backhome {
181 display: inline;
182}
183
156/*** ***/ 184/*** ***/
157#main 185#main
158{ 186{