diff options
| author | 2014-09-10 09:14:36 +0200 | |
|---|---|---|
| committer | 2014-09-10 09:14:36 +0200 | |
| commit | 40d176cc247f03a3b95fcf0389de8858e577b7cb (patch) | |
| tree | ed710e408d89530b3c59f24c593da6ecf952bdfe | |
| parent | a126d99b3c87c12d6da86a32f0615ad36ec99d60 (diff) | |
add css class or id to elements without
| -rw-r--r-- | app/layout/aside_flux.phtml | 2 | ||||
| -rw-r--r-- | app/layout/nav_menu.phtml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/app/layout/aside_flux.phtml b/app/layout/aside_flux.phtml index 357aa1cd3..9688a3273 100644 --- a/app/layout/aside_flux.phtml +++ b/app/layout/aside_flux.phtml @@ -4,7 +4,7 @@ <ul class="categories"> <?php if ($this->loginOk) { ?> <li> - <div class="stick"> + <div class="stick configure-feeds"> <a class="btn btn-important" href="<?php echo _url ('configure', 'feed'); ?>"><?php echo Minz_Translate::t ('subscription_management'); ?></a> <a class="btn btn-important" href="<?php echo _url ('configure', 'categorize'); ?>" title="<?php echo Minz_Translate::t ('categories_management'); ?>"><?php echo FreshRSS_Themes::icon('category-white'); ?></a> </div> diff --git a/app/layout/nav_menu.phtml b/app/layout/nav_menu.phtml index 25833c16d..b177cf7c8 100644 --- a/app/layout/nav_menu.phtml +++ b/app/layout/nav_menu.phtml @@ -7,7 +7,7 @@ <?php } ?> <?php if ($this->loginOk) { ?> - <div class="stick"> + <div id="nav_menu_actions" class="stick"> <?php $url_state = $this->url; @@ -269,7 +269,7 @@ $url_order = $this->url; $url_order['params']['order'] = $order; ?> - <a class="btn" href="<?php echo Minz_Url::display ($url_order); ?>" title="<?php echo Minz_Translate::t ($title); ?>"> + <a id="toggle-order" class="btn" href="<?php echo Minz_Url::display ($url_order); ?>" title="<?php echo Minz_Translate::t ($title); ?>"> <?php echo FreshRSS_Themes::icon($icon); ?> </a> |
