Skip to content
Snippets Groups Projects
Commit af6f20a3 authored by Eric Rasmussen's avatar Eric Rasmussen
Browse files

Move the "View/Edit" tabs on a unl templated page from under the page title to...

Move the "View/Edit" tabs on a unl templated page from under the page title to the upper right to mimic the drupal seven theme and to prevent pushing down the content area

git-svn-id: file:///tmp/wdn_thm_drupal/branches/drupal-7.x@171 20a16fea-79d4-4915-8869-1ea9d5ebf173
parent 4ca6e370
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,14 @@
#toolbar {
font-size:11.5167px;
}
#maincontent {
overflow:visible !important;
}
#maincontent ul.wdn_tabs.cms_tabs {
position:absolute;
right:0;
top:-60px;
}
/* Older CSS from when we were going to use this theme for the admin interface
ul.primary li a {
......
......@@ -111,12 +111,12 @@ function unl_wdn_menu_local_tasks()
$output = array();
if ($primary = menu_primary_local_tasks()) {
$primary['#prefix'] = '<ul class="wdn_tabs disableSwitching">';
$primary['#prefix'] = '<ul class="wdn_tabs cms_tabs disableSwitching">';
$primary['#suffix'] = '</ul>';
$output[] = $primary;
}
if ($secondary = menu_secondary_local_tasks()) {
$secondary['#prefix'] = '<ul class="wdn_tabs disableSwitching">';
$secondary['#prefix'] = '<ul class="wdn_tabs cms_tabs disableSwitching">';
$secondary['#suffix'] = '</ul>';
$output[] = $secondary;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment