]> code.citadel.org Git - citadel.git/commitdiff
* round corners for the grey box in login screen
authorThierry Pasqualier <thierry@uncensored.citadel.org>
Tue, 20 Feb 2007 20:34:27 +0000 (20:34 +0000)
committerThierry Pasqualier <thierry@uncensored.citadel.org>
Tue, 20 Feb 2007 20:34:27 +0000 (20:34 +0000)
* round corners work in summary screen

webcit/static/login.html
webcit/static/trailing.html
webcit/static/webcit.css

index 8a3fc004678ce56a27a554a8a64202f5809036b7..65a764795d8fe6a0cd96ea1c09c2e92a675164f3 100644 (file)
@@ -1,7 +1,7 @@
 <?=beginbox>
 <div class="login_hello"><?HELLO></div>
 <div class="login_message"><?MESG></div>
-<form action="login" method="POST"  class="login_form">
+<form action="login" method="POST"  class="box" id=login_form">
         <label for="uname"><?USERNAME_BOX></label>
         <input type="text" name="name" id="uname" > <br>
         <label for="pname"><?PASSWORD_BOX></label>
index 0d0da4eae4c60c3d4a9503af5c366e09f836b242..38acbdf19f663ebec7c56b9fbd34a13796eaa118 100644 (file)
@@ -1,6 +1,7 @@
 <! start trailing.html>
 <script type="text/javascript">
  Rounded("div.box", "small transparent top bottom");
+ Rounded("form.box", "small transparent top bottom");
 </script>
 </body>
 </html>
index d8387c8f0ddba64f03fd547b5a61cef676af7adb..582f95fdda20a6bb3a5f7d4a89889cd766097bbb 100644 (file)
@@ -762,7 +762,7 @@ div.auto_complete ul strong.highlight {
 }
 
 
-.login_form {
+#login_form {
         display: block;
         margin-top: 20px;
         margin-left: auto;
@@ -773,13 +773,13 @@ div.auto_complete ul strong.highlight {
         background-color: #DDDDDD;
 }
 
-.login_form input, .login_form label, .login_form select {
+#login_form input, #login_form label, #login_form select {
         display: block;
         float: left;
         margin: 6px;
 }
 
-.login_form label {
+#login_form label {
         width: 130px;
         text-align: left;
 }
@@ -789,16 +789,16 @@ div.auto_complete ul strong.highlight {
         text-align: left;
 }
 
-.login_form br {
+#login_form br {
         clear: left;
 }
 
-.login_form .logbuttons {
+#login_form .logbuttons {
         margin-left: auto;
         margin-right: auto;
 }
 
-.login_form .logbutton {
+#login_form .logbutton {
        width: auto;
         text-align: center;
 }