From 9e629a2369e2800af90e98768a59d3aa921940f3 Mon Sep 17 00:00:00 2001 From: plegall Date: Tue, 11 Jun 2019 16:38:49 +0200 Subject: [PATCH] issue #1031 album manager, move breadcrumbs outside page title --- admin/cat_list.php | 1 + admin/themes/default/template/cat_list.tpl | 2 +- admin/themes/default/theme.css | 5 +++++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/admin/cat_list.php b/admin/cat_list.php index aa12a251a..04cf5ebb5 100644 --- a/admin/cat_list.php +++ b/admin/cat_list.php @@ -280,6 +280,7 @@ if (isset($_GET['parent_id'])) $sort_orders_checked = array_keys($sort_orders); $template->assign(array( + 'ADMIN_PAGE_TITLE' => l10n('Album list management'), 'CATEGORIES_NAV'=>$navigation, 'F_ACTION'=>$form_action, 'PWG_TOKEN' => get_pwg_token(), diff --git a/admin/themes/default/template/cat_list.tpl b/admin/themes/default/template/cat_list.tpl index bbe73a807..43c82f7eb 100644 --- a/admin/themes/default/template/cat_list.tpl +++ b/admin/themes/default/template/cat_list.tpl @@ -58,7 +58,7 @@ jQuery(document).ready(function(){ }); {/literal}{/footer_script} -

{$CATEGORIES_NAV} › {'Album list management'|@translate}

+
{$CATEGORIES_NAV}

{'create a new album'|@translate} {if count($categories)}·{'apply automatic sort order'|@translate}{/if} diff --git a/admin/themes/default/theme.css b/admin/themes/default/theme.css index 805a83193..0462635e1 100644 --- a/admin/themes/default/theme.css +++ b/admin/themes/default/theme.css @@ -1663,3 +1663,8 @@ li.plupload_delete a:hover {background: url("images/cancelhover.svg")!important; } #addFiles i::before {margin-left: 13px; font-size: 15px;} .plupload_filelist_footer {display: none;} + +/* album manager */ +.selectedAlbum.cat-list-album-path { + margin: 40px 0 30px 0; +}