Make colorpicker.skin XHTML complient

This commit is contained in:
Hannes Wallnöfer 2003-09-09 17:30:43 +00:00
parent b962e7f9a9
commit f381b7fa46

View file

@ -3,6 +3,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" > <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head>
<title>Antville Colorpicker</title> <title>Antville Colorpicker</title>
<link rel="stylesheet" type="text/css" title="CSS Stylesheet" href="<% site.url %>stylesheet" /> <link rel="stylesheet" type="text/css" title="CSS Stylesheet" href="<% site.url %>stylesheet" />
@ -203,7 +204,7 @@ function cancel() {
</script> </script>
</head> </head>
<body onLoad="setDropdownColor();"> <body onload="setDropdownColor();">
<table border="0" cellspacing="4" cellpadding="8"> <table border="0" cellspacing="4" cellpadding="8">
<tr> <tr>
@ -213,7 +214,7 @@ function cancel() {
<table border="0" cellspacing="5" cellpadding="0" bgcolor="#ffffff"> <table border="0" cellspacing="5" cellpadding="0" bgcolor="#ffffff">
<tr> <tr>
<td class="widget" colspan="2" align="center">Select <td class="widget" colspan="2" align="center">Select
<select size="1" id="dropdown" name="color" onChange="setCurrentColor(this);"> <select size="1" id="dropdown" name="color" onchange="setCurrentColor(this);">
<option value="bgcolor">background</option> <option value="bgcolor">background</option>
<option value="titlecolor">title</option> <option value="titlecolor">title</option>
<option value="textcolor">text</option> <option value="textcolor">text</option>
@ -280,12 +281,12 @@ for (var i=0; i<brightness.length; i++)
</tr> </tr>
<tr> <tr>
<td class="widget"> <td class="widget">
<input class="widget" style="border: none;" id="display" value="" size="10" maxsize="10" /> <input class="widget" style="border: none;" id="display" value="" size="10" />
</td> </td>
<td align="right" class="widget"> <td align="right" class="widget">
<button onClick="javascript: submit();" title="accept color selection">Accept</button> <button name="accept" type="button" onclick="javascript: submit();" title="accept color selection">Accept</button>
&nbsp;&nbsp; &nbsp;&nbsp;
<button onClick="javascript: cancel();" title="cancel color selection">Cancel</button> <button name="cancel" type="button" onclick="javascript: cancel();" title="cancel color selection">Cancel</button>
</td> </td>
</tr> </tr>
</table> </table>