1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-22 17:18:37 +00:00

possibilité de mettre en fav ou en archive un article depuis la page article

This commit is contained in:
nicosomb 2013-04-12 13:13:21 +02:00
parent 67e7910439
commit c8bbe19b3f
8 changed files with 107 additions and 100 deletions

View file

@ -100,7 +100,15 @@ footer {
margin-left: -20px;
}
#main .entrie .tools a.tool span {
#article .tools {
display: inline;
}
#article .tools a.tool {
cursor: pointer;
}
#main .entrie .tools a.tool span, #article .tools a.tool span {
display: inline-block;
width: 16px;
height: 16px;
@ -110,18 +118,34 @@ a.fav span {
background: url('../img/fav-on.png') no-repeat;
}
a.fav span:hover {
background: url('../img/fav-off.png') no-repeat;
}
a.fav-off span {
background: url('../img/fav-off.png') no-repeat;
}
a.fav-off span:hover {
background: url('../img/fav-on.png') no-repeat;
}
a.archive span {
background: url('../img/archive-on.png') no-repeat;
}
a.archive span:hover {
background: url('../img/archive-off.png') no-repeat;
}
a.archive-off span {
background: url('../img/archive-off.png') no-repeat;
}
a.archive-off span:hover {
background: url('../img/archive-on.png') no-repeat;
}
a.delete span {
background: url('../img/delete.png') no-repeat;
}
@ -153,6 +177,10 @@ body.article {
text-decoration: none;
}
.backhome {
display: inline;
}
/*** ***/
#main
{