[Repoze-checkins] r1654 - in repoze.shootout/trunk/repoze/shootout: resources/thewildwest templates

Carlos de la Guardia cguardia at yahoo.com
Fri Aug 22 23:19:35 EDT 2008


Author: Carlos de la Guardia <cguardia at yahoo.com>
Date: Fri Aug 22 23:19:35 2008
New Revision: 1654

Log:
style improvements for the idea add form

Modified:
   repoze.shootout/trunk/repoze/shootout/resources/thewildwest/default.css
   repoze.shootout/trunk/repoze/shootout/templates/idea_add.pt

Modified: repoze.shootout/trunk/repoze/shootout/resources/thewildwest/default.css
==============================================================================
--- repoze.shootout/trunk/repoze/shootout/resources/thewildwest/default.css	(original)
+++ repoze.shootout/trunk/repoze/shootout/resources/thewildwest/default.css	Fri Aug 22 23:19:35 2008
@@ -446,7 +446,7 @@
 fieldset {
         border: none;
         padding: 20px;
-	color: #975700;
+    color: #975700;
 }
 
 label {
@@ -455,14 +455,12 @@
         font-weight: bold;
 }
 
-input, textarea {
-        width: 180px;
+input {
         margin-bottom: 5px;
 }
 
 textarea {
-        width: 250px;
-        height: 150px;
+        margin-bottom: 5px;
 }
 
 .submit {
@@ -471,7 +469,7 @@
         width: 90px;
         border: #f0f0f0 1px solid;
         color: #ffffff;
-	background-color: #975700;
+    background-color: #975700;
 }
 
 form br {
@@ -503,10 +501,10 @@
 #login_form fieldset {
         border: none;
         padding: 20px 20px 0px 40px;
-	color: #975700;
+    color: #975700;
 }
 
-#login_form input, textarea {
+#login_form input{
         margin-bottom: 5px;
         width: 120px;
 }
@@ -515,7 +513,22 @@
         margin-top: 5px;
         border: #f0f0f0 1px solid;
         color: #ffffff;
-	background-color: #975700;
+    background-color: #975700;
         font-size: 90%;
 }
 
+#idea_add_form {
+}
+
+#idea_add_form input {
+        width: 250px;
+}
+
+#idea_add_form textarea {
+        width: 450px;
+}
+
+#idea_add_form .submit {
+        width: 90px;
+}
+

Modified: repoze.shootout/trunk/repoze/shootout/templates/idea_add.pt
==============================================================================
--- repoze.shootout/trunk/repoze/shootout/templates/idea_add.pt	(original)
+++ repoze.shootout/trunk/repoze/shootout/templates/idea_add.pt	Fri Aug 22 23:19:35 2008
@@ -30,12 +30,12 @@
         <label for="title">Title:</label>
         <input type="text" name="title" size="60" />
         <br />
-        <label for="text">Text:</label>
-        <textarea name="text" rows="10" cols="60"> </textarea>
-        <br />
         <label for="tags">Tags:</label>
         <input type="text" name="tags" size="60" />
         <br />
+        <label for="text">Text:</label>
+        <textarea name="text" rows="10" cols="60"> </textarea>
+        <br />
         <input tal:condition="target" type="hidden" name="target" value="${target.idea_id}" />
         <input type="submit" class="submit" name="form.submitted" value="Shoot" />
     </fieldset>


More information about the Repoze-checkins mailing list