[richfaces-svn-commits] JBoss Rich Faces SVN: r6227 - management/design/standardComponent.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Wed Feb 20 20:11:00 EST 2008


Author: nbelaevski
Date: 2008-02-20 20:11:00 -0500 (Wed, 20 Feb 2008)
New Revision: 6227

Modified:
   management/design/standardComponent/default_example.html
Log:
default example revisited

Modified: management/design/standardComponent/default_example.html
===================================================================
--- management/design/standardComponent/default_example.html	2008-02-20 19:06:09 UTC (rev 6226)
+++ management/design/standardComponent/default_example.html	2008-02-21 01:11:00 UTC (rev 6227)
@@ -1,4 +1,4 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 
 <html>
 <head>
@@ -8,38 +8,57 @@
 <body>
 
 <style>
-	input, select, textarea{
+	button, input[type="reset"], input[type="submit"], input[type="button"] {
+		/*background-color: initial;*/ /* Webkit */
+	}
+	
+	input, select, textarea, button, keygen, isindex {
 		border-width: 1px; 
 		border-color : #BED6F8 /*panelBorderColor*/; 
 		font-size: 11px /*generalSizeFont*/;
 		font-family: verdana /*generalFamilyFont*/; 
 		color : #000000 /*controlTextColor*/;
 	}
-	fieldset{
+	fieldset {
 		border-width: 1px; 
 		border-color : #BED6F8 /*panelBorderColor*/; 
 		border-style : solid;
 		padding:10px;
 	}
-	legend{
+	legend {
 		font-size: 11px /*generalSizeFont*/;
 		font-family: verdana /*generalFamilyFont*/; 
 		color : #000000 /*controlTextColor*/;
 	}
+
 </style>
 <fieldset>
 <legend>Legend</legend>
+<button>Test</button>
 <input type="Button" value="Test">
 <input type="Checkbox">
 <input type="File">
 <input type="Radio">
 <input type="Text" value="Test">
-<select>
+<select size="1">
 	<option>Test</option>
 </select>
+
+<select multiple>
+	<option>Test</option>
+	<option>Test1</option>
+	<option>Test2</option>
+	<option>Test3</option>
+</select>
+
+
 <br><br>
 <textarea>text</textarea>
 
+<keygen />
+<br><br>
+<isindex />
+
 </fieldset>
 </body>
 </html>




More information about the richfaces-svn-commits mailing list