svn commit: r677 - trunk/mapbender/http/php/mod_WMSpreferences.php

astrid_emde at osgeo.org astrid_emde at osgeo.org
Fri Jul 21 07:34:20 EDT 2006


Author: astrid_emde
Date: 2006-07-21 11:34:20+0000
New Revision: 677

Modified:
   trunk/mapbender/http/php/mod_WMSpreferences.php

Log:
design changes for this modul

Modified: trunk/mapbender/http/php/mod_WMSpreferences.php
Url: https://mapbender.osgeo.org/source/browse/mapbender/trunk/mapbender/http/php/mod_WMSpreferences.php?view=diff&rev=677&p1=trunk/mapbender/http/php/mod_WMSpreferences.php&p2=trunk/mapbender/http/php/mod_WMSpreferences.php&r1=676&r2=677
==============================================================================
--- trunk/mapbender/http/php/mod_WMSpreferences.php	(original)
+++ trunk/mapbender/http/php/mod_WMSpreferences.php	2006-07-21 11:34:20+0000
@@ -46,12 +46,12 @@
    
    table{
    	font-family:Verdana, Geneva, Arial, Helvetica, sans-serif;
-   	color:#0066cc;
-      font-size:10pt
+   	color:#808080;;
+      font-size:9pt
    } 
    
    th{
-   	background-color:silver;
+   	background-color:#F0F0F0;
    }  
    
    select{
@@ -226,8 +226,13 @@
 		}
 
 		str += "<table border='1' rules='rows'>";  
-		str += "<tr><th>Title: </th><th  width='300'><div id ='id_"+my.wms[z].wms_id+"' style='cursor:pointer' onmouseover = 'title=\""+my.wms[z].wms_abstract+"\"'><b>"+my.wms[z].wms_title+"</b></div></th></tr>";
-		str += "<tr><td>ID:</td><td>"+my.wms[z].wms_id+"</td></tr>";
+		str += "<tr><th>";
+		str += "<img src='../img/button_gray/up.png' style='filter:Chroma(color=#C2CBCF);' onclick='swap("+visibleWmsIndexArray[i-1]+","+z+")' value='up' title='move WMS up'>&nbsp;";
+		str += "<img src='../img/button_gray/down.png' style='filter:Chroma(color=#C2CBCF);' onclick='swap("+z+", "+visibleWmsIndexArray[i+1]+")'value='down'title='move WMS down'>&nbsp;</td>";
+		str += "<img src='../img/button_gray/del.png' onclick='remove_wms("+z+")' value='remove' title='remove WMS from GUI'>&nbsp;";	
+		str += "</th><th  width='300'><div id ='id_"+my.wms[z].wms_id+"' style='cursor:pointer' onmouseover = 'title=\""+"id:"+my.wms[z].wms_id+" "+my.wms[z].wms_abstract+"\"'><b>"+my.wms[z].wms_title+"</b>";
+		str += "</div></th></tr>";
+		//str += "<tr><td>ID:</td><td>"+my.wms[z].wms_id+"</td></tr>";
 		str += "<tr><td>MapImageFormat: </td><td>";
 		str += "<select onchange='setMapformat(this.value)'>"
 		str += mapString;
@@ -241,10 +246,7 @@
 		str += exceptionString;
 		str += "</select></td></tr></table>";	
 		str += "<table><tr>";
-    	str += "<td><input class='up' type='button' onclick='swap("+visibleWmsIndexArray[i-1]+","+z+")' value='up'>&nbsp;&nbsp;</td>";
-    	str += "<td><input class='down' type='button' onclick='swap("+z+", "+visibleWmsIndexArray[i+1]+")' value='down'>&nbsp;&nbsp;</td>";
-		str += "<td><input class='remove' type='button' onclick='remove_wms("+z+")' value='remove'></td>";
-		str += "</tr></table><br><br>";
+		str += "</tr></table><br>";
 	}
 	
 	document.getElementById('data').innerHTML = str;




More information about the Mapbender_commits mailing list