From: <dai...@us...> - 2010-01-15 21:59:30
|
Revision: 3300 http://web-erp.svn.sourceforge.net/web-erp/?rev=3300&view=rev Author: daintree Date: 2010-01-15 21:59:19 +0000 (Fri, 15 Jan 2010) Log Message: ----------- various fixes to css to show links that were the same color as background for user settings - highlight selected module etc Modified Paths: -------------- trunk/css/fresh/default.css trunk/css/gel/default.css trunk/css/jelly/default.css trunk/css/professional/default.css trunk/includes/header.inc Modified: trunk/css/fresh/default.css =================================================================== --- trunk/css/fresh/default.css 2010-01-15 16:36:23 UTC (rev 3299) +++ trunk/css/fresh/default.css 2010-01-15 21:59:19 UTC (rev 3300) @@ -163,6 +163,8 @@ } font.header_title { + font-weight: bold; + color:black; } #topMenu { @@ -332,12 +334,12 @@ } .quick_menu_tab a{ - color:#fff; - font-weight:bold; + color:white; } .quick_menu_left a{ - color:#fff; + color:black; + font-weight:normal; } .quick_menu_tab a:hover{ @@ -347,7 +349,7 @@ } .quick_menu_left a:hover{ - color:#ffc; + color:blue; text-decoration:none; } @@ -561,6 +563,7 @@ } .menu_group_item a { + font-weight: normal; } .menu_group_items a:hover { Modified: trunk/css/gel/default.css =================================================================== --- trunk/css/gel/default.css 2010-01-15 16:36:23 UTC (rev 3299) +++ trunk/css/gel/default.css 2010-01-15 21:59:19 UTC (rev 3300) @@ -189,6 +189,8 @@ } font.header_title { + font-weight: bold; + color:white; } #topMenu { @@ -415,7 +417,7 @@ } .main_menu { -background:none; + background:none; border: 0px; height:28px; } @@ -439,6 +441,7 @@ } .main_menu_selected:hover{ background: #00f url(images/gelblueh.png) 0px -1px repeat-x; + border: 3px solid #888; } .main_menu_unselected a{ @@ -458,6 +461,7 @@ /* position: relative; */ text-align: center; white-space: nowrap; + border: 3px solid #dee; } .main_menu_selected a{ @@ -542,8 +546,8 @@ .page_title_text { font-family: Verdana, Arial, Helvetica; - padding-top: 2px; - padding-bottom: 2px; + padding-top: 2px; + padding-bottom: 2px; font-weight: bold; font-size: 12px; color: black; @@ -563,9 +567,9 @@ MARGIN: 0 auto; POSITION: static; font-family: Verdana, Arial, Helvetica; - font-weight: normal; - font-size: 10px; - color: black; + font-weight: normal; + font-size: 10px; + color: black; TEXT-ALIGN:center; } @@ -704,7 +708,7 @@ } .table_index { - background-color: #F1FFDD; + background-color: #eee; } li { Modified: trunk/css/jelly/default.css =================================================================== --- trunk/css/jelly/default.css 2010-01-15 16:36:23 UTC (rev 3299) +++ trunk/css/jelly/default.css 2010-01-15 21:59:19 UTC (rev 3300) @@ -499,9 +499,8 @@ .main_menu_selected { background: #00f url(images/gelblue.png) 0px -1px repeat-x; /*border: 0px solid #888;*/ -/* position: relative; */ text-align: center; - white-space: nowrap; + white-space: nowrap; } .main_menu_selected a{ @@ -587,8 +586,8 @@ .page_title_text { font-family: Verdana, Arial, Helvetica; - padding-top: 2px; - padding-bottom: 2px; + padding-top: 2px; + padding-bottom: 2px; font-weight: bold; font-size: 12px; color: black; @@ -599,7 +598,7 @@ background: lightgrey url(images/help.png) top left no-repeat; BORDER: #a52a2a 1px solid; padding-top:2px; - padding-bottom: 2px; + padding-bottom: 2px; PADDING-LEFT: 10px; Z-INDEX: 1; width: 80%; @@ -608,9 +607,9 @@ MARGIN: 0 auto; POSITION: static; font-family: Verdana, Arial, Helvetica; - font-weight: normal; - font-size: 10px; - color: black; + font-weight: normal; + font-size: 10px; + color: black; TEXT-ALIGN:center; } Modified: trunk/css/professional/default.css =================================================================== --- trunk/css/professional/default.css 2010-01-15 16:36:23 UTC (rev 3299) +++ trunk/css/professional/default.css 2010-01-15 21:59:19 UTC (rev 3300) @@ -286,7 +286,7 @@ border: none; margin: 0px; padding: 0px; - color: black; + color: #eee; border-top: 2px #AAAAAA solid; border-left: 2px #AAAAAA solid; border-right: 2px white solid; @@ -332,13 +332,13 @@ text-align: right; } -.quick_menu_tab a{ - color:#fff; +.quick_menu_tab a{ /*The quick menu links */ + color:blue; font-weight:bold; } -.quick_menu_left a{ - color:#fff; +.quick_menu_left a{ /*The links to the user settings */ + color:black; } .quick_menu_tab a:hover{ @@ -348,7 +348,7 @@ } .quick_menu_left a:hover{ - color:#ffc; + color:blue; text-decoration:none; } Modified: trunk/includes/header.inc =================================================================== --- trunk/includes/header.inc 2010-01-15 16:36:23 UTC (rev 3299) +++ trunk/includes/header.inc 2010-01-15 21:59:19 UTC (rev 3300) @@ -33,7 +33,7 @@ echo '<tr>'; echo '<td>'; - if ($title AND substr($title,0,4) != 'Help') { + if (isset($title)) { echo '<table cellpadding="0" cellspacing="0" border="0" id="quick_menu" class="quick_menu">'; echo '<tr>'; echo '<td align="left" style="width:100%;" class="quick_menu_left">'; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |