diff options
author | rvelices <rv-github@modusoptimus.com> | 2013-05-08 05:23:07 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2013-05-08 05:23:07 +0000 |
commit | 3234bb5bc9c3f13faa14ae1716f67b7ffca9db99 (patch) | |
tree | 8744a4b507bddc219f4d51410f470edaf73edeaf /admin/themes/default/template | |
parent | cb0aec202dea252586759429218bca8f2b31aa93 (diff) |
admin theme links use text-decoration on hovering instead of border-bottom (css simpler, no box sizing issues on hover ...)
git-svn-id: http://piwigo.org/svn/trunk@22541 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes/default/template')
-rw-r--r-- | admin/themes/default/template/cat_list.tpl | 2 | ||||
-rw-r--r-- | admin/themes/default/template/menubar.tpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/admin/themes/default/template/cat_list.tpl b/admin/themes/default/template/cat_list.tpl index 859034a77..0f2f3eaee 100644 --- a/admin/themes/default/template/cat_list.tpl +++ b/admin/themes/default/template/cat_list.tpl @@ -115,7 +115,7 @@ jQuery(document).ready(function(){ <li class="categoryLi{if $category.IS_VIRTUAL} virtual_cat{/if}" id="cat_{$category.ID}"> <!-- category {$category.ID} --> <p class="albumTitle"> - <img src="{$themeconf.admin_icon_dir}/cat_move.png" class="button drag_button" style="display:none;" alt="{'Drag to re-order'|@translate}" title="{'Drag to re-order'|@translate}"> + <img src="{$themeconf.admin_icon_dir}/cat_move.png" class="drag_button" style="display:none;" alt="{'Drag to re-order'|@translate}" title="{'Drag to re-order'|@translate}"> <strong><a href="{$category.U_CHILDREN}" title="{'manage sub-albums'|@translate}">{$category.NAME}</a></strong> </p> diff --git a/admin/themes/default/template/menubar.tpl b/admin/themes/default/template/menubar.tpl index 4d65c0858..f3bd1f45b 100644 --- a/admin/themes/default/template/menubar.tpl +++ b/admin/themes/default/template/menubar.tpl @@ -38,7 +38,7 @@ jQuery(document).ready(function(){ <strong>{'Hide'|@translate} <input type="checkbox" name="hide_{$block.reg->get_id()}" {if $block.pos<0}checked="checked"{/if}></strong> </span> - <img src="{$themeconf.admin_icon_dir}/cat_move.png" class="button drag_button" style="display:none;" alt="{'Drag to re-order'|@translate}" title="{'Drag to re-order'|@translate}"> + <img src="{$themeconf.admin_icon_dir}/cat_move.png" class="drag_button" style="display:none;" alt="{'Drag to re-order'|@translate}" title="{'Drag to re-order'|@translate}"> <strong>{$block.reg->get_name()|@translate}</strong> ({$block.reg->get_id()}) </p> |