diff options
Diffstat (limited to 'themes')
-rw-r--r-- | themes/garland/page.tpl.php | 1 | ||||
-rw-r--r-- | themes/seven/page.tpl.php | 1 | ||||
-rw-r--r-- | themes/seven/style.css | 10 |
3 files changed, 12 insertions, 0 deletions
diff --git a/themes/garland/page.tpl.php b/themes/garland/page.tpl.php index 0bf43da70..acca29d9b 100644 --- a/themes/garland/page.tpl.php +++ b/themes/garland/page.tpl.php @@ -54,6 +54,7 @@ <?php if ($tabs2): ?><ul class="tabs secondary"><?php print $tabs2 ?></ul><?php endif; ?> <?php if ($show_messages && $messages): print $messages; endif; ?> <?php print $help; ?> + <?php if ($action_links): ?><ul class="action-links"><?php print $action_links; ?></ul><?php endif; ?> <div class="clearfix"> <?php print $content ?> </div> diff --git a/themes/seven/page.tpl.php b/themes/seven/page.tpl.php index cdef22120..e47ccc334 100644 --- a/themes/seven/page.tpl.php +++ b/themes/seven/page.tpl.php @@ -33,6 +33,7 @@ <?php print $help; ?> </div> <?php endif; ?> + <?php if ($action_links): ?><ul class="action-links"><?php print $action_links; ?></ul><?php endif; ?> <?php print $content; ?> </div> diff --git a/themes/seven/style.css b/themes/seven/style.css index 36005a7d0..314064231 100644 --- a/themes/seven/style.css +++ b/themes/seven/style.css @@ -608,6 +608,16 @@ html.js input.throbbing { background-position: 100% -16px; } +ul.action-links { + margin: 1em 0; + overflow: hidden; +} + +ul.action-links li { + float: left; + margin: 0 1em 0 0; +} + /* Exceptions */ #diff-inline-form select, #block-system-main div.filter-options select { |