Index: trunk/CHANGELOG
===================================================================
--- trunk/CHANGELOG	(revision 685)
+++ trunk/CHANGELOG	(revision 686)
@@ -12,6 +12,7 @@
 
 ------------------------------------- 2.7.0 -------------------------------------
 09-Feb-2008 Christian Sommer
+!	modified some colors and CSS definitions of pages, media and section interface
 #	output_filter: fixed bug in regular expression (eats up characters in mailto links)
 #	output_filter: removed word boundary from mailto regex part
 #	fixed bug in menu_link module (IE 7 did not show the select boxes at all)
Index: trunk/wb/admin/media/browse.html
===================================================================
--- trunk/wb/admin/media/browse.html	(revision 685)
+++ trunk/wb/admin/media/browse.html	(revision 686)
@@ -42,7 +42,7 @@
 <body>
 
 <table cellpadding="4" cellspacing="0" border="0" width="100%" style="border-bottom: 2px solid #35373a; width: 100%;">
-<tr style="background-color: #e6f0fc;">
+<tr style="background-color: #ECF1F3;">
 	<td width="16" align="center" style="padding-left: 10px;">
 		<a href="{PARENT_DIR_LINK}">
 			<img src="../images/up_folder_16.png" border="0" class="{DISPLAY_UP_ARROW}" alt="^" />
@@ -71,7 +71,7 @@
 
 <table cellpadding="4" cellspacing="0" border="0" width="100%" class="{DISPLAY_LIST_TABLE}">
 <!-- BEGIN list_block -->
-<tr style="background-color: #{ROW_BG_COLOR};">
+<tr style="background-color: #{ROW_BG_COLOR};" onmouseover="this.style.backgroundColor = '#FFFFE0'" onmouseout="this.style.backgroundColor = '#{ROW_BG_COLOR}'">
 	<td width="18" style="padding-left: 10px;">
 		<a href="{LINK}" target="{LINK_TARGET}">
 			<img src="{FILETYPE_ICON}" class="{DISPLAY_ICON}" border="0" alt="" />
Index: trunk/wb/admin/media/browse.php
===================================================================
--- trunk/wb/admin/media/browse.php	(revision 685)
+++ trunk/wb/admin/media/browse.php	(revision 686)
@@ -97,7 +97,7 @@
 	}
 	// Now parse these values to the template
 	$temp_id = 0;
-	$row_bg_color = 'BDD3EC';
+	$row_bg_color = 'FFF';
 	if(isset($DIR)) {
 		sort($DIR);
 		foreach($DIR AS $name) {
@@ -115,10 +115,10 @@
 									);
 			$template->parse('list', 'list_block', true);
 			// Code to alternate row colors
-			if($row_bg_color == 'D2E1F2') {
-				$row_bg_color = 'BDD3EC';
+			if($row_bg_color == 'FFF') {
+				$row_bg_color = 'ECF1F3';
 			} else {
-				$row_bg_color = 'D2E1F2';
+				$row_bg_color = 'FFF';
 			}
 		}
 	}
@@ -138,10 +138,10 @@
 									);
 			$template->parse('list', 'list_block', true);
 			// Code to alternate row colors
-			if($row_bg_color == 'D2E1F2') {
-				$row_bg_color = 'BDD3EC';
+			if($row_bg_color == 'FFF') {
+				$row_bg_color = 'ECF1F3';
 			} else {
-				$row_bg_color = 'D2E1F2';
+				$row_bg_color = 'FFF';
 			}
 		}
 	}
Index: trunk/wb/admin/pages/index.php
===================================================================
--- trunk/wb/admin/pages/index.php	(revision 685)
+++ trunk/wb/admin/pages/index.php	(revision 686)
@@ -163,8 +163,8 @@
 			?>
 			
 			<li id="p<?php echo $page['parent']; ?>" style="padding: 2px 0px 2px 0px;">
-			<table width="720" cellpadding="1" cellspacing="0" border="0" style="background-color: #edf5fc;">
-			<tr>
+			<table width="720" cellpadding="1" cellspacing="0" border="0" style="background-color: #ECF3F7;">
+			<tr onmouseover="this.style.backgroundColor = '#FFFFE0'" onmouseout="this.style.backgroundColor = '#ECF3F7'">
 				<td width="20" style="padding-left: <?php echo $page['level']*20; ?>px;">
 					<?php
 					if($display_plus == true) {
Index: trunk/wb/admin/pages/sections.php
===================================================================
--- trunk/wb/admin/pages/sections.php	(revision 685)
+++ trunk/wb/admin/pages/sections.php	(revision 686)
@@ -180,7 +180,7 @@
 		$module_name=$database->get_one("SELECT name FROM ".TABLE_PREFIX."addons WHERE directory='".$section['module']."'");
 		if(!is_numeric(array_search($section['module'], $module_permissions))) {
 			?>
-			<tr>
+			<tr onmouseover="this.style.backgroundColor = '#FFFFE0'" onmouseout="this.style.backgroundColor = '#FFF'">
 				<td style="width: <?php if(SECTION_BLOCKS) print "120"; else print "200"; ?>px;"><a href="<?php echo ADMIN_URL; ?>/pages/modify.php?page_id=<?php echo $page_id; ?>#<?php echo $section['section_id']; ?>"><?php echo $module_name; ?></a></td>
 				<?php if(SECTION_BLOCKS) { ?>
 				<td>
Index: trunk/wb/admin/interface/stylesheet.css
===================================================================
--- trunk/wb/admin/interface/stylesheet.css	(revision 685)
+++ trunk/wb/admin/interface/stylesheet.css	(revision 686)
@@ -74,7 +74,6 @@
 	color: #fff;
 }
 .content {
-	background: #fff;
     background: #fff url(bgtitle.png) ;
     background-repeat:repeat-x;
 	padding: 20px;
@@ -84,7 +83,7 @@
 	vertical-align: top;
 }
 .row_a {
-	background-color: #BDE4F4;
+	background-color: #ECF3F7;
 }
 .row_b {
 	background-color: #EBF7FC;
