diff options
| author | 2014-10-23 13:33:48 +0200 | |
|---|---|---|
| committer | 2014-10-23 13:33:48 +0200 | |
| commit | cb730c373480ba415997696f4c0cbda4cca9d97e (patch) | |
| tree | 3482fae3f79b9406e490fceb09614b7367fa733c /app/layout/aside_feed.phtml | |
| parent | 132235fc4bdb238e7926e4df456b4fab661e76c2 (diff) | |
Last fix for Origine (I hope!)
See https://github.com/marienfressinaud/FreshRSS/issues/634
Diffstat (limited to 'app/layout/aside_feed.phtml')
| -rw-r--r-- | app/layout/aside_feed.phtml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/app/layout/aside_feed.phtml b/app/layout/aside_feed.phtml index d7b12426b..47b63f187 100644 --- a/app/layout/aside_feed.phtml +++ b/app/layout/aside_feed.phtml @@ -54,13 +54,12 @@ $f_active = FreshRSS_Context::isCurrentGet('f_' . $feed->id()); ?> <li id="f_<?php echo $feed->id(); ?>" class="item<?php echo $f_active ? ' active' : ''; ?><?php echo $feed->inError() ? ' error' : ''; ?><?php echo $feed->nbEntries() <= 0 ? ' empty' : ''; ?>" data-unread="<?php echo $feed->nbNotRead(); ?>" data-priority="<?php echo $feed->priority(); ?>"> - <div class="dropdown"> + <div class="dropdown no-mobile"> <div class="dropdown-target"></div> <a class="dropdown-toggle" data-fweb="<?php echo $feed->website(); ?>"><?php echo _i('configure'); ?></a> <?php /* feed_config_template */ ?> </div> - <img class="favicon" src="<?php echo $feed->favicon(); ?>" alt="✇" /> - <a data-unread="<?php echo format_number($feed->nbNotRead()); ?>" href="<?php echo _url('index', 'index', 'get', 'f_' . $feed->id()); ?>"><?php echo $feed->name(); ?></a> + <a data-unread="<?php echo format_number($feed->nbNotRead()); ?>" href="<?php echo _url('index', 'index', 'get', 'f_' . $feed->id()); ?>"><img class="favicon" src="<?php echo $feed->favicon(); ?>" alt="✇" /> <?php echo $feed->name(); ?></a> </li> <?php } ?> </ul> |
