1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-30 09:18:09 +02:00

More next/prev cleanup

This commit is contained in:
Cameron 2012-12-03 14:30:21 -08:00
parent 288558494d
commit 56cec58340
2 changed files with 13 additions and 7 deletions

View File

@ -43,6 +43,7 @@ td.center, th.center { text-align:center }
#cboxTitle { font-weight:bold; color: black }
.chzn-container { border: 1px solid #ddd; }
div.nextprev { text-align: center; display:inline-block; width:100% }
@ -107,7 +108,12 @@ input.delete { }
.buttons-bar { padding: 10px 0px; }
i.icon-chevron-right { float:right; opacity: 0.3 }
i.icon-chevron-right { float:right; opacity: 0.3 }
i.icon-fast-backward,
i.icon-fast-forward,
i.icon-backward,
i.icon-forward { opacity: 0.8 }
a.link-active i { opacity: 1.0; }

View File

@ -38,7 +38,7 @@ $NEXTPREV_TEMPLATE['default_items_end'] = '';
$NEXTPREV_TEMPLATE['default_separator'] = ' ';
// ########################## ADMIN TEMPLATE see admin-ui.
// ADMIN TEMPLATE see admin-ui.
$NEXTPREV_TEMPLATE['admin_start'] = '
@ -54,13 +54,13 @@ $NEXTPREV_TEMPLATE['admin_end'] = '
//$NEXTPREV_TEMPLATE['admin_nav_caption'] = '<span class="nexprev-caption center">{caption}</span>&nbsp;'; XXX - awaiting the new front-end themes & templates
$NEXTPREV_TEMPLATE['admin_nav_caption'] = ''; // NP_3.'&nbsp;';
$NEXTPREV_TEMPLATE['admin_nav_first'] = '<a class="btn nextprev-item first" href="{url}" title="{url_label}">{label}</a>';
$NEXTPREV_TEMPLATE['admin_nav_prev'] = '<a class="btn nextprev-item prev" href="{url}" title="{url_label}">{label}</a>';
$NEXTPREV_TEMPLATE['admin_nav_last'] = '<a class="btn nextprev-item last" href="{url}" title="{url_label}">{label}</a>';
$NEXTPREV_TEMPLATE['admin_nav_next'] = '<a class="btn nextprev-item next" href="{url}" title="{url_label}">{label}</a>';
$NEXTPREV_TEMPLATE['admin_nav_first'] = '<a class="btn nextprev-item first e-tip" href="{url}" title="{url_label}"><i class="icon-fast-backward"></i></a>';
$NEXTPREV_TEMPLATE['admin_nav_prev'] = '<a class="btn nextprev-item prev e-tip" href="{url}" title="{url_label}"><i class="icon-backward"></i></a>';
$NEXTPREV_TEMPLATE['admin_nav_last'] = '<a class="btn nextprev-item last e-tip" href="{url}" title="{url_label}"><i class="icon-fast-forward"></i></a>';
$NEXTPREV_TEMPLATE['admin_nav_next'] = '<a class="btn nextprev-item next e-tip" href="{url}" title="{url_label}"><i class="icon-forward"></i></a>';
$NEXTPREV_TEMPLATE['admin_items_start'] = '';
$NEXTPREV_TEMPLATE['admin_item'] = '<a class="btn nextprev-item" href="{url}" title="{url_label}">{label}</a>';
$NEXTPREV_TEMPLATE['admin_item'] = '<a class="btn nextprev-item e-tip" href="{url}" title="{url_label}">{label}</a>';
$NEXTPREV_TEMPLATE['admin_item_current'] = '<a class="btn nextprev-item current active" href="#" onclick="return false;" title="{url_label}">{label}</a>';
$NEXTPREV_TEMPLATE['admin_items_end'] = '';