[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SF.net SVN: ledger-smb: [1546] trunk
- Subject: SF.net SVN: ledger-smb: [1546] trunk
- From: ..hidden..
- Date: Sat, 08 Sep 2007 16:44:35 -0700
Revision: 1546
http://ledger-smb.svn.sourceforge.net/ledger-smb/?rev=1546&view=rev
Author: einhverfr
Date: 2007-09-08 16:44:34 -0700 (Sat, 08 Sep 2007)
Log Message:
-----------
Adding labels to login page inputs, cleaning up css slightly
Modified Paths:
--------------
trunk/UI/login.html
Added Paths:
-----------
trunk/UI/login.css
Removed Paths:
-------------
trunk/css/scripts/login.css
Copied: trunk/UI/login.css (from rev 1524, trunk/css/scripts/login.css)
===================================================================
--- trunk/UI/login.css (rev 0)
+++ trunk/UI/login.css 2007-09-08 23:44:34 UTC (rev 1546)
@@ -0,0 +1,48 @@
+div.login {
+ background-color: white;
+ margin-right: auto;
+ margin-left: auto;
+ width: 25em;
+ padding: 2em;
+ padding-bottom: 2em;
+ border-style: outset;
+}
+
+div.login div.login {
+ width: 21em;
+ height: 20em;
+ border-width: 1px;
+ border-style: solid;
+ padding-bottom: 2em;
+}
+div.labelledinput {
+ width: 100%;
+ clear: both;
+}
+div.label {
+ width: 5em;
+ text-align: right;
+ float: left;
+ border-width: 1px;
+ margin: 0em;
+ padding-right: 0.5em;
+ margin-top: 0.5em;
+}
+div.input {
+ width: 14em;
+ margin: 0px;
+ text-align: left;
+ float: left;
+ border-width: 3px;
+ margin: 0em;
+ margin-top: 0.5em;
+}
+img.logo {
+ border-style: none;
+ width: 16em;
+ height: 8em;
+}
+
+button {
+ margin-top: 10px;
+}
Modified: trunk/UI/login.html
===================================================================
--- trunk/UI/login.html 2007-09-08 05:25:46 UTC (rev 1545)
+++ trunk/UI/login.html 2007-09-08 23:44:34 UTC (rev 1546)
@@ -8,7 +8,7 @@
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="css/ledgersmb.css" type="text/css" title="LedgerSMB stylesheet" />
- <link rel="stylesheet" href="css/scripts/login.css" type="text/css" title="LedgerSMB stylesheet" />
+ <link rel="stylesheet" href="UI/login.css" type="text/css" title="LedgerSMB stylesheet" />
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="robots" content="noindex,nofollow" />
@@ -50,12 +50,32 @@
<h1 class="login" align="center">Version SVN Trunk</h1>
<div align="center">
<div class="labelledinput">
- <div class="label"><?lsmb text('Name') ?></div>
- <div class="input"><input class="login" name="login" size="30" value="" /></div>
+ <div class="label">
+ <label for="login">
+ <?lsmb text('Name') ?>
+ </label>
+ </div>
+ <div class="input">
+ <input class="login"
+ name="login" size="30"
+ value=""
+ id="login" />
+ </div>
</div>
<div class="labelledinput">
- <div class="label"><?lsmb text('Password') ?></div>
- <div class="input"><input class="login" type="password" name="password" size="30" /></div>
+ <div class="label">
+ <label for="password">
+ <?lsmb text('Password')
+ ?>
+ </label>
+ </div>
+ <div class="input">
+ <input class="login"
+ type="password"
+ name="password"
+ size="30"
+ id="password" />
+ </div>
</div>
</div>
<input type="hidden" name="path" value="bin/mozilla" />
Deleted: trunk/css/scripts/login.css
===================================================================
--- trunk/css/scripts/login.css 2007-09-08 05:25:46 UTC (rev 1545)
+++ trunk/css/scripts/login.css 2007-09-08 23:44:34 UTC (rev 1546)
@@ -1,48 +0,0 @@
-div.login {
- background-color: white;
- margin-right: auto;
- margin-left: auto;
- width: 25em;
- padding: 2em;
- padding-bottom: 1em;
- border-style: outset;
-}
-
-div.login div.login {
- width: 21em;
- height: 18em;
- border-width: 1px;
- border-style: solid;
- padding-bottom: 2em;
-}
-div.labelledinput {
- width: 100%;
- clear: both;
-}
-div.label {
- width: 5em;
- text-align: right;
- float: left;
- border-width: 1px;
- margin: 0em;
- padding-right: 0.5em;
- margin-top: 0.5em;
-}
-div.input {
- width: 14em;
- margin: 0px;
- text-align: left;
- float: left;
- border-width: 3px;
- margin: 0em;
- margin-top: 0.5em;
-}
-img.logo {
- border-style: none;
- width: 16em;
- height: 8em;
-}
-
-button {
- margin-top: 10px;
-}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.