Work on form element lists
authorRobert Sesek <rsesek@bluestatic.org>
Wed, 31 Dec 2008 20:04:31 +0000 (12:04 -0800)
committerRobert Sesek <rsesek@bluestatic.org>
Wed, 31 Dec 2008 20:04:31 +0000 (12:04 -0800)
* Decorator.css.php
* docs/decoratortest.html

Decorator.css.php
docs/decoratortest.html

index 32f119e102dcfa657b3dfcd67da1bd525eddea48..c69dd4a67a5094b271c51ead1f5d93c833b0c392 100644 (file)
@@ -85,6 +85,48 @@ legend
        color: rgb(62, 76, 49);
 }
 
+/* Naming form elements */
+fieldset dt label
+{
+       font-weight: bold;
+       font-size: 12px;
+}
+
+/* Description for form elements/names */
+fieldset label dfn
+{
+       font-weight: normal;
+       font-style: italic;
+       font-size: 10px;
+       color: rgb(100, 100, 100);
+       
+       display: block;
+}
+
+/* A field name */
+fieldset dl dt
+{
+       border-width: 0px 1px 0px 0px;
+       border-color: #7BAA5A;
+       border-style: solid;
+       
+       padding: 0px 4px 0px 2px;
+       margin: 5px 0px 5px 0px;
+       
+       width: 50%;
+       float: left;
+}
+
+/* Field value editor */
+fieldset dl dd
+{
+       padding: 4px 0px 2px 4px;
+       margin: 5px 0px 5px 0px;
+       
+       width: 49%;
+       float: right;
+}
+
 /*******************************************************************/
 /* Tables */
 /*******************************************************************/
index 098a6cf92f21f9047f41d03eaca9a3eeabb56f7d..1feab084951a01763a063db16b7fd54d5ecbd0ce 100644 (file)
 
 <fieldset>
 <legend>General Options</legend>
-       this is a test
+<dl>
+       <dt>
+               <label for="authentication_method">
+                       Authentication Method
+                       <dfn>The authentication class to use to validate cookie data and longins. You may need to edit the actual file for certain authentication systems.</dfn>
+               </label>
+       </dt>
+       <dd>
+               <select class="button" id="authentication_method" name="setting[authmethod]">
+                       <option value="drupal">Drupal</option>
+                       <option value="phpbb2">Phpbb2</option>
+                       <option value="default" selected="selected">Default</option>
+                       <option value="vbulletin">Vbulletin</option>
+               </select>
+       </dd>
+       
+       <dt>
+               <label>
+                       Require Activation Email
+                       <dfn>Setting this to yes will force all new users to verify their account with an email activation link.</dfn>
+               </label>
+       </dt>
+       <dd>
+               <input type="radio" id="verifyemail_yes" name="setting[verifyemail]" value="1" checked="checked" /> <label for="verifyemail_yes">Yes</label>
+               <input type="radio" id="verifyemail_no" name="setting[verifyemail]" value="0"  /> <label for="verifyemail_no">No</label>
+       </dd>
+</dl>
 </fieldset>
 
 <table>