Add font styling to form input elements and create a .button class for styling links... 3.2.3
authorRobert Sesek <rsesek@bluestatic.org>
Fri, 20 Mar 2009 04:16:22 +0000 (00:16 -0400)
committerRobert Sesek <rsesek@bluestatic.org>
Fri, 20 Mar 2009 04:16:22 +0000 (00:16 -0400)
* Decorator.css.php

CHANGES
Decorator.css.php
version.php

diff --git a/CHANGES b/CHANGES
index b413b8d9c27fcd6a0146bc89e3ce9b911772945a..f5afae8fd1f8a79259e66ad2856ff55c4c9b0d9e 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,7 @@
+3.2.3
+===================
+- Change: More BSDecorator styling updates, creating a .button class to style button links
+
 3.2.2
 ===================
 - New: Added BSTemplate::__toString() to evaluate the template
index fae10964ed4ff9031e1dc19b8c1d18f13760618f..523a574d44febe90773f42b97e02aa85aeb8b15d 100644 (file)
@@ -161,6 +161,7 @@ fieldset dl dd
        border-style: solid;
 
        float: left;
+       width: 40%;
 }
 
 /* Submit row items */
@@ -179,8 +180,11 @@ fieldset dl dd
 /*******************************************************************/
 
 /* Give the input elements some styling */
-input, select, textarea
+input, select, textarea, .button
 {
+       font-family: Verdana, Helvetica, Arial, sans-serif;
+       font-size: 12px;
+       
        border-width: 1px;
        border-style: solid;
        border-color: rgb(123, 170, 90);
@@ -190,6 +194,25 @@ input, select, textarea
        background-color: rgb(237, 245, 230);
 }
 
+input[type="button"], input[type="submit"], input[type="reset"], .button
+{
+       font-family: Verdana, Helvetica, Arial, sans-serif;
+       font-size: 14px;
+       font-weight: bold;
+}
+
+textarea, input[type="text"], input[type="password"]
+{
+       width: 100%;
+}
+
+textarea
+{
+       min-height: 50px;
+       max-height: 400px;
+       height: auto;
+}
+
 /*******************************************************************/
 /* Tables */
 /*******************************************************************/
@@ -236,17 +259,17 @@ thead
        color: rgb(62, 76, 49);
 }
 
-       .headings td
+       .headings td, tbody td
        {
                text-align: center;
        }
 
-       .headings td:last-child
+       .headings td:last-child, tbody td:last-child
        {
                text-align: right;
        }
 
-       .headings td:first-child
+       .headings td:first-child, tbody td:first-child
        {
                text-align: left;
        }
index 83043fef536f5592dfd822c4c9f2e2c2ef8d6740..fb1b9d82472b2d27e8471ca49074c85362e966ab 100644 (file)
@@ -22,6 +22,6 @@
 /**
  * ISSO version
  */
-define('ISSO_VERSION', '3.2.2');
+define('ISSO_VERSION', '3.2.3');
 
 ?>
\ No newline at end of file