diff options
| author | 2013-11-10 20:40:48 +0100 | |
|---|---|---|
| committer | 2013-11-12 22:46:30 +0100 | |
| commit | cf3373f1d73b33966cbf4f0057cc577edcb9e93f (patch) | |
| tree | 65a233f2c5f08e07fbf248b76025490175505339 | |
| parent | 4214bffb16a5c0c2c4814f4809f380fefdb1a4d7 (diff) | |
Améliorations vue
* Lien vers flux RSS généré déplacé en bas du menu déroulant
* Le champs de recherche a été un peu agrandi de façon à voir le
placeholder en entier
| -rw-r--r-- | app/layout/nav_menu.phtml | 15 | ||||
| -rw-r--r-- | public/themes/default/freshrss.css | 4 | ||||
| -rw-r--r-- | public/themes/flat-design/freshrss.css | 4 |
3 files changed, 12 insertions, 11 deletions
diff --git a/app/layout/nav_menu.phtml b/app/layout/nav_menu.phtml index 6af9ebc11..55da1c204 100644 --- a/app/layout/nav_menu.phtml +++ b/app/layout/nav_menu.phtml @@ -121,11 +121,6 @@ </a> </li> <?php } ?> - <li class="item"> - <a class="view_rss" target="_blank" href="<?php echo Url::display ($this->rss_url); ?>"> - <?php echo Translate::t ('rss_view'); ?> - </a> - </li> <li class="separator"></li> @@ -148,8 +143,6 @@ <?php } ?> </li> - <li class="separator"></li> - <li class="item"> <?php $url_order = $url; @@ -168,6 +161,14 @@ </a> <?php } ?> </li> + + <li class="separator"></li> + + <li class="item"> + <a class="view_rss" target="_blank" href="<?php echo Url::display ($this->rss_url); ?>"> + <?php echo Translate::t ('rss_view'); ?> + </a> + </li> </ul> </div> </div> diff --git a/public/themes/default/freshrss.css b/public/themes/default/freshrss.css index bc6399260..a323bf5b4 100644 --- a/public/themes/default/freshrss.css +++ b/public/themes/default/freshrss.css @@ -29,11 +29,11 @@ text-decoration: none; } .header > .item.search input { - width: 200px; + width: 230px; transition: width 200ms linear; } .header .item.search input:focus { - width: 300px; + width: 330px; } .header > .item.configure { width: 100px; diff --git a/public/themes/flat-design/freshrss.css b/public/themes/flat-design/freshrss.css index f837f7fe0..df9a0ed82 100644 --- a/public/themes/flat-design/freshrss.css +++ b/public/themes/flat-design/freshrss.css @@ -32,11 +32,11 @@ body { text-decoration: none; } .header > .item.search input { - width: 200px; + width: 230px; transition: width 200ms linear; } .header .item.search input:focus { - width: 300px; + width: 330px; } .header > .item.configure { width: 100px; |
