[Rt-commit] r13009 - in rt/branches/3.8-TESTING: . share/html/Widgets/Form

jesse at bestpractical.com jesse at bestpractical.com
Sat Jun 7 00:10:23 EDT 2008


Author: jesse
Date: Sat Jun  7 00:10:22 2008
New Revision: 13009

Modified:
   rt/branches/3.8-TESTING/   (props changed)
   rt/branches/3.8-TESTING/share/html/NoAuth/css/web2/forms.css
   rt/branches/3.8-TESTING/share/html/Widgets/Form/Boolean
   rt/branches/3.8-TESTING/share/html/Widgets/Form/Integer
   rt/branches/3.8-TESTING/share/html/Widgets/Form/Select
   rt/branches/3.8-TESTING/share/html/Widgets/Form/String

Log:
 r32410 at 31b:  jesse | 2008-06-06 22:44:44 -0400
 * CSS styling of new widget-based forms


Modified: rt/branches/3.8-TESTING/share/html/NoAuth/css/web2/forms.css
==============================================================================
--- rt/branches/3.8-TESTING/share/html/NoAuth/css/web2/forms.css	(original)
+++ rt/branches/3.8-TESTING/share/html/NoAuth/css/web2/forms.css	Sat Jun  7 00:10:22 2008
@@ -149,3 +149,25 @@
  text-align: left;
 }
 
+
+div.widget {
+    padding-bottom: 0.5em;
+}
+
+div.widget .label { 
+ text-align: right;
+ display: block;
+ width: 15em;
+ float: left;
+ clear: both;
+ font-size: 0.9em;
+ padding-right: 0.5em;
+}
+
+div.widget .hints {
+
+  display: block;
+  padding-left: 14em;
+  font-style: italic;
+}
+

Modified: rt/branches/3.8-TESTING/share/html/Widgets/Form/Boolean
==============================================================================
--- rt/branches/3.8-TESTING/share/html/Widgets/Form/Boolean	(original)
+++ rt/branches/3.8-TESTING/share/html/Widgets/Form/Boolean	Sat Jun  7 00:10:22 2008
@@ -48,7 +48,7 @@
 <%DOC>
 see docs/using_forms_widgets.pod
 </%DOC>
-<div id="form-box-<% lc $Name %>">
+<div id="form-box-<% lc $Name %>" class="widget">
 <span class="label description"><% $Description %></span>
 <span class="value"><& SELF:InputOnly, %ARGS &></span>
 </div>

Modified: rt/branches/3.8-TESTING/share/html/Widgets/Form/Integer
==============================================================================
--- rt/branches/3.8-TESTING/share/html/Widgets/Form/Integer	(original)
+++ rt/branches/3.8-TESTING/share/html/Widgets/Form/Integer	Sat Jun  7 00:10:22 2008
@@ -48,7 +48,7 @@
 <%DOC>
 see docs/using_forms_widgets.pod
 </%DOC>
-<div id="form-box-<% lc $Name %>">
+<div id="form-box-<% lc $Name %>" class="widget">
 <span class="label description"><% $Description %></span>
 <span class="value"><& SELF:InputOnly, %ARGS &></span>
 % if ( $Default ) {

Modified: rt/branches/3.8-TESTING/share/html/Widgets/Form/Select
==============================================================================
--- rt/branches/3.8-TESTING/share/html/Widgets/Form/Select	(original)
+++ rt/branches/3.8-TESTING/share/html/Widgets/Form/Select	Sat Jun  7 00:10:22 2008
@@ -48,7 +48,7 @@
 <%DOC>
 see docs/using_forms_widgets.pod
 </%DOC>
-<div id="form-box-<% lc $Name %>">
+<div id="form-box-<% lc $Name %>" class="widget">
 % if ( $Description ) {
 <span class="label"><% $Description %></span>
 % }

Modified: rt/branches/3.8-TESTING/share/html/Widgets/Form/String
==============================================================================
--- rt/branches/3.8-TESTING/share/html/Widgets/Form/String	(original)
+++ rt/branches/3.8-TESTING/share/html/Widgets/Form/String	Sat Jun  7 00:10:22 2008
@@ -48,9 +48,9 @@
 <%DOC>
 see docs/using_forms_widgets.pod
 </%DOC>
-<div id="form-box-<% lc $Name %>">
+<div id="form-box-<% lc $Name %>" class="widget">
 <span class="description label"><% $Description %></span>
-<span><& SELF:InputOnly, %ARGS &></span>
+<span class="value"><& SELF:InputOnly, %ARGS &></span>
 % if ( $Default ) {
 <span class="comment"><% $DefaultLabel %></span>
 % }


More information about the Rt-commit mailing list