diff options
| author | 2013-06-23 15:05:39 +0200 | |
|---|---|---|
| committer | 2013-06-23 15:05:39 +0200 | |
| commit | dff85f9a304a6ff2ede764a8f62024e7b4ff074e (patch) | |
| tree | f2afa65037fc8f32b879b716a88c116e3fad7ea8 /public/theme/freshrss.css | |
| parent | 32499c0b3e519ef2fc255f5990448195256476ac (diff) | |
Ajout d'une barre de navigation en version mobile
Fix issue #57 : pas d'effet de slide (effet trop bling-bling) mais
ajout d'une barre de navigation permettant d'aller à l'article
suivant / précédent ou de remonter en haut de la page
Diffstat (limited to 'public/theme/freshrss.css')
| -rw-r--r-- | public/theme/freshrss.css | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/public/theme/freshrss.css b/public/theme/freshrss.css index 613a6f037..178472ac9 100644 --- a/public/theme/freshrss.css +++ b/public/theme/freshrss.css @@ -426,6 +426,11 @@ .pagination:last-child .item { border-top: 1px solid #aaa; } + +.nav_entries { + display: none; +} + .loading { background: url("loader.gif") center center no-repeat; font-size: 0; @@ -538,6 +543,9 @@ font-size: 120%; } + .pagination { + margin: 0 0 40px; + } .pagination .pager-previous, .pagination .pager-next { width: 100px; } @@ -574,4 +582,29 @@ .aside .categories { margin: 30px 0; } + + .nav_entries { + display: table; + width: 100%; + height: 40px; + position: fixed; + bottom: 0; + margin: 0; + background: #fff; + border-top: 1px solid #ddd; + text-align: center; + line-height: 40px; + table-layout: fixed; + } + .nav_entries .item { + display: table-cell; + width: 30%; + } + .nav_entries .item a { + display: block; + } + .nav_entries .item .icon.i_up { + margin: 5px 0 0; + vertical-align: top; + } } |
