From ad55cba16096fa2a2d57bedefd8442c5639006a0 Mon Sep 17 00:00:00 2001
From: John-Paul Robinson <jpr@uab.edu>
Date: Wed, 30 Nov 2011 17:01:19 -0600
Subject: [PATCH] Add menu wrappers from UAB style

Added the moduletable class as a div wrapper around the toolbox (p-tb) portal.
Also changed the portal tilte from an h5 heading to a ul element with the
menu class style to match the UAB menu style.
---
 skins/UabVector.php | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/skins/UabVector.php b/skins/UabVector.php
index 3ded101..09d85f3 100644
--- a/skins/UabVector.php
+++ b/skins/UabVector.php
@@ -622,7 +622,9 @@ class UabVectorTemplate extends QuickTemplate {
 				case 'TOOLBOX':
 ?>
 <div class="portal" id="p-tb">
-	<h5<?php $this->html('userlangattributes') ?>><?php $this->msg( 'toolbox' ) ?></h5>
+    <!-- moduletable -->
+    <div class="moduletable">
+	<ul class ="menu" <?php $this->html('userlangattributes') ?>><?php $this->msg( 'toolbox' ) ?>
 	<div class="body">
 		<ul>
 		<?php if( $this->data['notspecialpage'] ): ?>
@@ -657,6 +659,9 @@ class UabVectorTemplate extends QuickTemplate {
 		<?php wfRunHooks( 'SkinTemplateToolboxEnd', array( &$this ) ); ?>
 		</ul>
 	</div>
+    </ul>
+   </div>
+   <!-- /moduletable -->
 </div>
 <?php
 					break;
-- 
GitLab