diff options
| author | 2013-11-21 22:23:23 +0100 | |
|---|---|---|
| committer | 2013-11-21 22:23:23 +0100 | |
| commit | 305f1436e3ca2907e5234ed77f62348cf4303b79 (patch) | |
| tree | 9bdc331f401b343e9a9a27949924588ce838365b /app/layout | |
| parent | 50f3b27eb9d15369c6e64ac5140db1b0a90e681d (diff) | |
Accessibilité : Quelques alternative Unicode aux icônes
FreshRSS est maintenant utilisable en bonne partie sans CSS.
Ce patch inclut un caractère Unicode approprié en plus de certaines
icônes définies en tant qu'image en CSS.
Contribue à https://github.com/marienfressinaud/FreshRSS/issues/284
Il manque encore certaines icônes, et les alternatives Unicode ne sont
pour l'instant pas montrées si la CSS est chargée mais que les images ne
le sont pas.
Diffstat (limited to 'app/layout')
| -rw-r--r-- | app/layout/aside_flux.phtml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/layout/aside_flux.phtml b/app/layout/aside_flux.phtml index 51cb3dcf7..9fa08d647 100644 --- a/app/layout/aside_flux.phtml +++ b/app/layout/aside_flux.phtml @@ -6,7 +6,7 @@ <li> <div class="stick"> <a class="btn btn-important" href="<?php echo _url ('configure', 'feed'); ?>"><?php echo Translate::t ('subscription_management'); ?></a> - <a class="btn btn-important" href="<?php echo _url ('configure', 'categorize'); ?>"><i class="icon i_category"></i></a> + <a class="btn btn-important" href="<?php echo _url ('configure', 'categorize'); ?>" title="<?php echo Translate::t ('categories_management'); ?>"><i class="icon i_category">☷</i></a> </div> </li> <?php } elseif (login_is_conf ($this->conf)) { ?> @@ -16,7 +16,7 @@ <li> <div class="category all"> <a data-unread="<?php echo $this->nb_not_read; ?>" class="btn<?php echo $this->get_c == 'all' ? ' active' : ''; ?>" href="<?php echo _url ('index', 'index'); ?>"> - <i class="icon i_all"></i> + <i class="icon i_all">☰</i> <?php echo Translate::t ('all_feeds'); ?> </a> </div> @@ -25,7 +25,7 @@ <li> <div class="category favorites"> <a data-unread="<?php echo $this->nb_favorites['unread']; ?>" class="btn<?php echo $this->get_c == 'favoris' ? ' active' : ''; ?>" href="<?php echo _url ('index', 'index', 'get', 'favoris'); ?>"> - <i class="icon i_bookmark"></i> + <i class="icon i_bookmark">★</i> <?php echo Translate::t ('favorite_feeds', $this->nb_favorites['all']); ?> </a> </div> |
