Author: rjollos
Date: Tue Jan 15 04:56:25 2013
New Revision: 1433287

URL: http://svn.apache.org/viewvc?rev=1433287&view=rev
Log:
Refs #353: Centered radio buttons in the table. Made selects on the logging 
panel wider. Improved positioning of the help text on the logging panel. Added 
a trailing colon to the fieldset text on the enum panels.

Modified:
    incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css
    
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_enums.html
    
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_logging.html
    
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_milestones.html

Modified: 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css
URL: 
http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css?rev=1433287&r1=1433286&r2=1433287&view=diff
==============================================================================
--- incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css 
(original)
+++ incubator/bloodhound/trunk/bloodhound_theme/bhtheme/htdocs/bloodhound.css 
Tue Jan 15 04:56:25 2013
@@ -375,6 +375,14 @@ h1, h2, h3, h4 {
 
 /* @end */
 
+/* @group Admin */
+
+.table .default  {
+ text-align: center
+}
+
+/* @end */
+
 /* @group Reports */
 
 .report span.foldable {

Modified: 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_enums.html
URL: 
http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_enums.html?rev=1433287&r1=1433286&r2=1433287&view=diff
==============================================================================
--- 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_enums.html
 (original)
+++ 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_enums.html
 Tue Jan 15 04:56:25 2013
@@ -111,7 +111,7 @@
           <div class="span3">
             <form class="well" id="addenum" method="post" action="">
               <fieldset>
-                <legend i18n:msg="label_singular">Add $label_singular</legend>
+                <legend i18n:msg="label_singular">Add $label_singular:</legend>
                 <label class="control-label" for="name">Name:</label>
                 <input class="input-medium" type="text" name="name" id="name"/>
                 <input class="btn" type="submit" name="add"

Modified: 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_logging.html
URL: 
http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_logging.html?rev=1433287&r1=1433286&r2=1433287&view=diff
==============================================================================
--- 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_logging.html
 (original)
+++ 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_logging.html
 Tue Jan 15 04:56:25 2013
@@ -46,7 +46,7 @@
         <div class="control-group">
           <label class="control-label" for="log_type">Type:</label>
           <div class="controls">
-            <select id="log_type" name="log_type" class="input-small">
+            <select id="log_type" name="log_type" class="input-medium">
               <option py:for="type in log.types" value="${type.name}"
                       selected="${type.selected or None}"
                       disabled="${type.disabled or 
None}">${type.label}</option>
@@ -56,7 +56,7 @@
         <div class="control-group">
           <label class="control-label" for="log_level">Log level:</label>
           <div class="controls">
-            <select id="log_level" name="log_level" class="input-small">
+            <select id="log_level" name="log_level" class="input-medium">
               <option py:for="level in log.levels"
                       selected="${level==log.level or None}">$level</option>
             </select>
@@ -67,11 +67,13 @@
           <div class="controls">
             <input type="text" id="log_file" name="log_file" value="$log.file"
                 class="input-xlarge" />
+            <p class="help-block" i18n:msg="dir">
+              <span class="label label-info">Note</span> If you specify a
+              relative path, the log file will be stored inside the
+              <code>log</code> directory of the project environment
+              (<code>$log.dir</code>).
+            </p>
           </div>
-          <p class="help" i18n:msg="dir">
-            If you specify a relative path, the log file will be stored inside 
the
-            <code>log</code> directory of the project environment 
(<code>$log.dir</code>).
-          </p>
         </div>
         <div class="control-group">
           <input type="submit" class="btn"

Modified: 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_milestones.html
URL: 
http://svn.apache.org/viewvc/incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_milestones.html?rev=1433287&r1=1433286&r2=1433287&view=diff
==============================================================================
--- 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_milestones.html
 (original)
+++ 
incubator/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bh_admin_milestones.html
 Tue Jan 15 04:56:25 2013
@@ -48,8 +48,9 @@
           <div class="control-group">
             <label class="control-label" for="duedate">Due:</label>
             <div class="controls">
-              <input type="text" id="duedate" name="duedate" 
size="${len(datetime_hint)}"
-                     value="${milestone.due and 
format_datetime(milestone.due)}" readonly="${readonly}"
+              <input type="text" id="duedate" name="duedate"
+                     size="${len(datetime_hint)}" readonly="${readonly}"
+                     value="${milestone.due and 
format_datetime(milestone.due)}"
                      placeholder="${_('Format: %(datehint)s', 
datehint=datetime_hint)}"/>
             </div>
           </div>


Reply via email to