[Commits] (bcm) use css to style html form inputs

commits at osafoundation.org commits at osafoundation.org
Fri Mar 25 09:53:49 PST 2005


Commit by: bcm
Modified files:
server/webapps/console/web/WEB-INF/jsp/login.jsp 1.1 1.2
server/webapps/console/web/WEB-INF/jsp/user/list.jsp 1.8 1.9
server/webapps/console/web/WEB-INF/jsp/user/view.jsp 1.6 1.7

Log message:
use css to style html form inputs


ViewCVS links:
http://cvs.osafoundation.org/index.cgi/server/webapps/console/web/WEB-INF/jsp/login.jsp.diff?r1=text&tr1=1.1&r2=text&tr2=1.2
http://cvs.osafoundation.org/index.cgi/server/webapps/console/web/WEB-INF/jsp/user/list.jsp.diff?r1=text&tr1=1.8&r2=text&tr2=1.9
http://cvs.osafoundation.org/index.cgi/server/webapps/console/web/WEB-INF/jsp/user/view.jsp.diff?r1=text&tr1=1.6&r2=text&tr2=1.7

Index: server/webapps/console/web/WEB-INF/jsp/user/view.jsp
diff -u server/webapps/console/web/WEB-INF/jsp/user/view.jsp:1.6 server/webapps/console/web/WEB-INF/jsp/user/view.jsp:1.7
--- server/webapps/console/web/WEB-INF/jsp/user/view.jsp:1.6	Wed Mar 23 14:03:37 2005
+++ server/webapps/console/web/WEB-INF/jsp/user/view.jsp	Fri Mar 25 09:53:48 2005
@@ -28,7 +28,8 @@
         <b><fmt:message key="User.Form.Email"/></b>
       </td>
       <td class="md" align="left">
-        <html:text property="user.email" size="32" maxlength="32"/>
+        <html:text property="user.email" size="32" maxlength="32"
+                   styleClass="md"/>
         <ch:errmsg property="user.email"/>
       </td>
     </tr>
@@ -37,7 +38,8 @@
         <b><fmt:message key="User.Form.Password"/></b>
       </td>
       <td class="md" align="left">
-        <html:password property="password" size="16" maxlength="16"/>
+        <html:password property="password" size="16" maxlength="16"
+                       styleClass="md"/>
         <ch:errmsg property="password"/>
       </td>
     </tr>
@@ -46,7 +48,8 @@
         <b><fmt:message key="User.Form.Confirm"/></b>
       </td>
       <td class="md" align="left">
-        <html:password property="confirm" size="16" maxlength="16"/>
+        <html:password property="confirm" size="16" maxlength="16"
+                       styleClass="md"/>
         <ch:errmsg property="confirm"/>
       </td>
     </tr>
@@ -56,7 +59,8 @@
       </td>
       <td class="md" align="left">
         <c:forEach var="rolename" items="${Roles}">
-          <html:multibox property="role" value="${rolename}"/>
+          <html:multibox property="role" value="${rolename}"
+                         styleClass="md"/>
           ${rolename}<br/>
         </c:forEach>
         <ch:errmsg property="role"/>
@@ -67,10 +71,10 @@
         &nbsp;
       </td>
       <td class="md" align="left">
-        <html:submit property="create">
+        <html:submit property="create" styleClass="md">
           <fmt:message key="User.Form.Button.Update"/>
         </html:submit>
-        <html:cancel>
+        <html:cancel styleClass="md">
           <fmt:message key="User.Form.Button.Cancel"/>
         </html:cancel>
         &nbsp;&nbsp;&nbsp;

Index: server/webapps/console/web/WEB-INF/jsp/login.jsp
diff -u server/webapps/console/web/WEB-INF/jsp/login.jsp:1.1 server/webapps/console/web/WEB-INF/jsp/login.jsp:1.2
--- server/webapps/console/web/WEB-INF/jsp/login.jsp:1.1	Thu Mar 24 12:32:04 2005
+++ server/webapps/console/web/WEB-INF/jsp/login.jsp	Fri Mar 25 09:53:47 2005
@@ -18,7 +18,7 @@
       <td align="left" valign="middle">
         <span class="md">
           <input type="text" name="j_username" size="16"
-                 maxlength="32"/>
+                 maxlength="32" class="md"/>
         </span>
       </td>
     </tr>
@@ -29,7 +29,7 @@
       <td align="left" valign="middle">
         <span class="md">
           <input type="password" name="j_password" size="16"
-                 maxlength="16"/>
+                 maxlength="16" class="md"/>
         </span>
       </td>
     </tr>
@@ -39,7 +39,8 @@
       </td>
       <td align="left" valign="middle">
         <span class="md">
-          <input type="submit" name="ok" value="${okButton}"/>
+          <input type="submit" name="ok" value="${okButton}"
+                 class="md"/>
         </span>
       </td>
     </tr>

Index: server/webapps/console/web/WEB-INF/jsp/user/list.jsp
diff -u server/webapps/console/web/WEB-INF/jsp/user/list.jsp:1.8 server/webapps/console/web/WEB-INF/jsp/user/list.jsp:1.9
--- server/webapps/console/web/WEB-INF/jsp/user/list.jsp:1.8	Wed Mar 23 14:03:37 2005
+++ server/webapps/console/web/WEB-INF/jsp/user/list.jsp	Fri Mar 25 09:53:48 2005
@@ -58,7 +58,8 @@
         <b><fmt:message key="User.Form.Username"/></b>
       </td>
       <td class="md" align="left">
-        <html:text property="user.username" size="32" maxlength="32"/>
+        <html:text property="user.username" size="32" maxlength="32"
+                   styleClass="md"/>
         <ch:errmsg property="user.username"/>
       </td>
     </tr>
@@ -67,7 +68,8 @@
         <b><fmt:message key="User.Form.Email"/></b>
       </td>
       <td class="md" align="left">
-        <html:text property="user.email" size="32" maxlength="32"/>
+        <html:text property="user.email" size="32" maxlength="32"
+                   styleClass="md"/>
         <ch:errmsg property="user.email"/>
       </td>
     </tr>
@@ -76,7 +78,8 @@
         <b><fmt:message key="User.Form.Password"/></b>
       </td>
       <td class="md" align="left">
-        <html:password property="password" size="16" maxlength="16"/>
+        <html:password property="password" size="16" maxlength="16"
+                       styleClass="md"/>
         <ch:errmsg property="password"/>
       </td>
     </tr>
@@ -85,7 +88,8 @@
         <b><fmt:message key="User.Form.Confirm"/></b>
       </td>
       <td class="md" align="left">
-        <html:password property="confirm" size="16" maxlength="16"/>
+        <html:password property="confirm" size="16" maxlength="16"
+                       styleClass="md"/>
         <ch:errmsg property="confirm"/>
       </td>
     </tr>
@@ -95,7 +99,8 @@
       </td>
       <td class="md" align="left">
         <c:forEach var="rolename" items="${Roles}">
-          <html:multibox property="role" value="${rolename}"/>
+          <html:multibox property="role" value="${rolename}"
+                         styleClass="md"/>
           ${rolename}<br/>
         </c:forEach>
         <ch:errmsg property="role"/>
@@ -106,7 +111,7 @@
         &nbsp;
       </td>
       <td class="md" align="left">
-        <html:submit property="create">
+        <html:submit property="create" styleClass="md">
           <fmt:message key="User.Form.Button.Create"/>
         </html:submit>
       </td>



More information about the Commits mailing list