summaryrefslogtreecommitdiff
path: root/public/theme
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-06-23 17:40:05 +0200
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2013-06-23 17:40:05 +0200
commit7396b3d89724a6280684f0d2099fe17834a0f923 (patch)
tree01ffc794f43f2ee3ced72559db04065895b2301d /public/theme
parentdff85f9a304a6ff2ede764a8f62024e7b4ff074e (diff)
Fix #77 : articles marqués comme lus au défilement
Possibilité de marquer les articles automatiquement comme lus lors du défilement de la page. Le marquage survient aux 3/4 de l'article visible. Ajout d'une option pour activer / désactiver (défaut) la fonctionnalité et disparition de l'option de marquage au chargement de la page. Ajout de 2 boutons pour marquer comme lu et en favori en bas des articles
Diffstat (limited to 'public/theme')
-rw-r--r--public/theme/freshrss.css14
1 files changed, 7 insertions, 7 deletions
diff --git a/public/theme/freshrss.css b/public/theme/freshrss.css
index 178472ac9..e7298d3fa 100644
--- a/public/theme/freshrss.css
+++ b/public/theme/freshrss.css
@@ -201,13 +201,13 @@
line-height: 25px;
border-top: 1px solid #ddd;
}
- .flux_header .item.manage {
+ .item.manage {
width: 80px;
white-space: nowrap;
font-size: 0px;
text-align: center;
}
- .flux_header .item.manage .read {
+ .item.manage .read {
display: inline-block;
width: 40px;
height: 40px;
@@ -215,14 +215,14 @@
background: url("icons/read.svg") center center no-repeat;
vertical-align: middle;
}
- .flux_header .item.manage .read:hover {
+ .item.manage .read:hover {
text-decoration: none;
}
- .flux.not_read .flux_header .item.manage .read {
+ .flux.not_read .item.manage .read {
background: url("icons/unread.png") center center no-repeat;
background: url("icons/unread.svg") center center no-repeat;
}
- .flux_header .item.manage .bookmark {
+ .item.manage .bookmark {
display: inline-block;
width: 40px;
height: 40px;
@@ -230,10 +230,10 @@
background: url("icons/non-starred.svg") center center no-repeat;
vertical-align: middle;
}
- .flux_header .item.manage .bookmark:hover {
+ .item.manage .bookmark:hover {
text-decoration: none;
}
- .flux.favorite .flux_header .item.manage .bookmark {
+ .flux.favorite .item.manage .bookmark {
background: url("icons/starred.png") center center no-repeat;
background: url("icons/starred.svg") center center no-repeat;
}