[Weberp-svn] SF.net SVN: weberp:[9383] trunk
Brought to you by:
sotandeka,
tim_schofield
From: <tim...@us...> - 2012-07-06 14:26:17
|
Revision: 9383 http://weberp.svn.sourceforge.net/weberp/?rev=9383&view=rev Author: tim_schofield Date: 2012-07-06 14:26:08 +0000 (Fri, 06 Jul 2012) Log Message: ----------- Improvements to layout Modified Paths: -------------- trunk/css/silverwolf/sub.css trunk/includes/main_header.inc trunk/index.php Modified: trunk/css/silverwolf/sub.css =================================================================== --- trunk/css/silverwolf/sub.css 2012-07-06 14:25:55 UTC (rev 9382) +++ trunk/css/silverwolf/sub.css 2012-07-06 14:26:08 UTC (rev 9383) @@ -113,7 +113,7 @@ ul.menu { list-style:none; margin:0; - padding:0; + padding-top:10px; opacity:0.9; } @@ -148,7 +148,7 @@ position:relative; border:1px solid #aaa; border-top:none; - width:148px; + width:248px; margin:0; } @@ -163,7 +163,7 @@ } ul.menu ul ul { - left:148px; + left:248px; top:-1px; } @@ -172,7 +172,7 @@ padding:5px 7px 7px; font-weight:bold; background:#d1d1d1; - width:134px; + width:234px; } ul.menu .menulink:hover, ul.menu .menuhover { @@ -180,7 +180,7 @@ } ul.menu .sub { - background:#d1d1d1 136px 8px no-repeat; + background:#d1d1d1 236px 8px no-repeat; } ul.menu .topline { Modified: trunk/includes/main_header.inc =================================================================== --- trunk/includes/main_header.inc 2012-07-06 14:25:55 UTC (rev 9382) +++ trunk/includes/main_header.inc 2012-07-06 14:26:08 UTC (rev 9383) @@ -40,7 +40,7 @@ echo '<body onload="startTime()">'; echo '<div class="main_title_bar">' . $ProjectName . ' - <div class="exit"><a href="Logout.php" class="exit">' . _('Exit') . '</a></div> + <div class="exit"><a href="Logout.php" class="exit" title="' . _('Exit From') . ' ' . $ProjectName . '">' . _('Exit') . '</a></div> <span id="clock" style="float: center; margin-right: 5px;"></span> </div>'; @@ -48,7 +48,7 @@ include('includes/MainMenuLinksArray.php'); echo '<ul class="menu" id="menu"> - <li><a href="#" class="menulink">Menu</a> + <li><a href="#" class="menulink">' . $ProjectName . ' - ' . _('Menu') . '</a> <ul>'; for ($i=0; $i<sizeOf($ModuleList); $i++) { echo '<li><a href="#" class="sub">' . $ModuleList[$i] . '</a>'; Modified: trunk/index.php =================================================================== --- trunk/index.php 2012-07-06 14:25:55 UTC (rev 9382) +++ trunk/index.php 2012-07-06 14:26:08 UTC (rev 9383) @@ -8,9 +8,14 @@ echo '<div id="Mask"></div>'; echo '<div id="SubWindow"></div>'; +echo '<table width="100%"><tr><td>'; include('dashboard/CompanyInfo.php'); +echo '</td><td>'; include('dashboard/UserInfo.php'); +echo '</td><td>'; include('dashboard/SalesGraph.php'); +echo '</td><td>'; include('dashboard/StockBelowReorderLevel.php'); +echo '</td></tr></table>'; ?> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |