changeset 582:ff15232ce9d2

fixed search button
author Marcin Kuzminski <marcin@python-works.com>
date Mon, 11 Oct 2010 01:58:19 +0200
parents 136ad719d9e2
children 95b746f2f0ed
files rhodecode/public/css/style.css rhodecode/templates/admin/users/user_add.html rhodecode/templates/admin/users/user_edit.html rhodecode/templates/search/search.html
diffstat 4 files changed, 14 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
--- a/rhodecode/public/css/style.css	Mon Oct 11 01:47:43 2010 +0200
+++ b/rhodecode/public/css/style.css	Mon Oct 11 01:58:19 2010 +0200
@@ -1622,7 +1622,6 @@
 div.form div.fields div.field div.button {
 	margin: 0;
 	padding: 0 0 0 8px;
-	float: left;
 }
 
 div.form div.fields div.field div.button input {
--- a/rhodecode/templates/admin/users/user_add.html	Mon Oct 11 01:47:43 2010 +0200
+++ b/rhodecode/templates/admin/users/user_add.html	Mon Oct 11 01:58:19 2010 +0200
@@ -32,7 +32,7 @@
                     <label for="username">${_('Username')}:</label>
                 </div>
                 <div class="input">
-                    ${h.text('username')}
+                    ${h.text('username',class_='small')}
                 </div>
              </div>
             
@@ -41,7 +41,7 @@
                     <label for="password">${_('Password')}:</label>
                 </div>
                 <div class="input">
-                    ${h.password('password')}
+                    ${h.password('password',class_='small')}
                 </div>
              </div>
             
@@ -50,7 +50,7 @@
                     <label for="name">${_('Name')}:</label>
                 </div>
                 <div class="input">
-                    ${h.text('name')}
+                    ${h.text('name',class_='small')}
                 </div>
              </div>
             
@@ -59,7 +59,7 @@
                     <label for="lastname">${_('Lastname')}:</label>
                 </div>
                 <div class="input">
-                    ${h.text('lastname')}
+                    ${h.text('lastname',class_='small')}
                 </div>
              </div>
             
@@ -68,7 +68,7 @@
                     <label for="email">${_('Email')}:</label>
                 </div>
                 <div class="input">
-                    ${h.text('email')}
+                    ${h.text('email',class_='small')}
                 </div>
              </div>
             
--- a/rhodecode/templates/admin/users/user_edit.html	Mon Oct 11 01:47:43 2010 +0200
+++ b/rhodecode/templates/admin/users/user_edit.html	Mon Oct 11 01:58:19 2010 +0200
@@ -43,7 +43,7 @@
                     <label for="username">${_('Username')}:</label>
                 </div>
                 <div class="input">
-                    ${h.text('username')}
+                    ${h.text('username',class_='small')}
                 </div>
              </div>
             
@@ -52,7 +52,7 @@
                     <label for="new_password">${_('New password')}:</label>
                 </div>
                 <div class="input">
-                    ${h.password('new_password')}
+                    ${h.password('new_password',class_='small')}
                 </div>
              </div>
             
@@ -61,7 +61,7 @@
                     <label for="name">${_('Name')}:</label>
                 </div>
                 <div class="input">
-                    ${h.text('name')}
+                    ${h.text('name',class_='small')}
                 </div>
              </div>
             
@@ -70,7 +70,7 @@
                     <label for="lastname">${_('Lastname')}:</label>
                 </div>
                 <div class="input">
-                    ${h.text('lastname')}
+                    ${h.text('lastname',class_='small')}
                 </div>
              </div>
             
@@ -79,7 +79,7 @@
                     <label for="email">${_('Email')}:</label>
                 </div>
                 <div class="input">
-                    ${h.text('email')}
+                    ${h.text('email',class_='small')}
                 </div>
              </div>
             
--- a/rhodecode/templates/search/search.html	Mon Oct 11 01:47:43 2010 +0200
+++ b/rhodecode/templates/search/search.html	Mon Oct 11 01:58:19 2010 +0200
@@ -40,9 +40,10 @@
              <div class="label">
                  <label for="q">${_('Search term')}</label>
              </div> 			
-				<div class="input">${h.text('q',c.cur_query,class_="small")}</div>
-				<div class="button highlight">
-					<input type="submit" value="${_('Search')}" class="ui-button ui-widget ui-state-default ui-corner-all"/>
+				<div class="input">${h.text('q',c.cur_query,class_="small")}
+					<div class="button highlight">
+						<input type="submit" value="${_('Search')}" class="ui-button ui-widget ui-state-default ui-corner-all"/>
+					</div>
 				</div>
 				<div style="font-weight: bold;clear:Both;margin-left:200px">${c.runtime}</div>		
 			</div>