summaryrefslogtreecommitdiffstats
path: root/zarb-ml/mageia-sysadm/2011-January/001640.html
diff options
context:
space:
mode:
Diffstat (limited to 'zarb-ml/mageia-sysadm/2011-January/001640.html')
-rw-r--r--zarb-ml/mageia-sysadm/2011-January/001640.html158
1 files changed, 158 insertions, 0 deletions
diff --git a/zarb-ml/mageia-sysadm/2011-January/001640.html b/zarb-ml/mageia-sysadm/2011-January/001640.html
new file mode 100644
index 000000000..63a705a68
--- /dev/null
+++ b/zarb-ml/mageia-sysadm/2011-January/001640.html
@@ -0,0 +1,158 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
+<HTML>
+ <HEAD>
+ <TITLE> [Mageia-sysadm] [240] rework a little bit the password change dialog
+ </TITLE>
+ <LINK REL="Index" HREF="index.html" >
+ <LINK REL="made" HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B240%5D%20rework%20a%20little%20bit%20the%20password%20change%20dialog&In-Reply-To=%3C20110107005734.12ECC41ADA%40valstar.mageia.org%3E">
+ <META NAME="robots" CONTENT="index,nofollow">
+ <META http-equiv="Content-Type" content="text/html; charset=us-ascii">
+ <LINK REL="Previous" HREF="001639.html">
+ <LINK REL="Next" HREF="001641.html">
+ </HEAD>
+ <BODY BGCOLOR="#ffffff">
+ <H1>[Mageia-sysadm] [240] rework a little bit the password change dialog</H1>
+ <B>root at mageia.org</B>
+ <A HREF="mailto:mageia-sysadm%40mageia.org?Subject=Re%3A%20%5BMageia-sysadm%5D%20%5B240%5D%20rework%20a%20little%20bit%20the%20password%20change%20dialog&In-Reply-To=%3C20110107005734.12ECC41ADA%40valstar.mageia.org%3E"
+ TITLE="[Mageia-sysadm] [240] rework a little bit the password change dialog">root at mageia.org
+ </A><BR>
+ <I>Fri Jan 7 01:57:34 CET 2011</I>
+ <P><UL>
+ <LI>Previous message: <A HREF="001639.html">[Mageia-sysadm] [239] align menu of subpages to the left ( not perfect yet, but better IMHO )
+</A></li>
+ <LI>Next message: <A HREF="001641.html">[Mageia-sysadm] [241] move the sub-form out of the main form, as this contraint it horizontally, thus leading to a suboptimal layout ( input not aligned with the rest )
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1640">[ date ]</a>
+ <a href="thread.html#1640">[ thread ]</a>
+ <a href="subject.html#1640">[ subject ]</a>
+ <a href="author.html#1640">[ author ]</a>
+ </LI>
+ </UL>
+ <HR>
+<!--beginarticle-->
+<PRE>Revision: 240
+Author: misc
+Date: 2011-01-07 01:57:33 +0100 (Fri, 07 Jan 2011)
+Log Message:
+-----------
+rework a little bit the password change dialog
+
+Modified Paths:
+--------------
+ identity/CatDap/trunk/root/static/style/ttsite.css
+ identity/CatDap/trunk/root/user/password.tt
+
+Modified: identity/CatDap/trunk/root/static/style/ttsite.css
+===================================================================
+--- identity/CatDap/trunk/root/static/style/ttsite.css 2011-01-07 00:57:29 UTC (rev 239)
++++ identity/CatDap/trunk/root/static/style/ttsite.css 2011-01-07 00:57:33 UTC (rev 240)
+@@ -100,6 +100,29 @@
+ float: right;
+ }
+
++#password_change_form {
++ display: block;
++ float: left;
++}
++
++#password_change_form input:focus {
++ background: #ddf;
++}
++
++#password_change_form button {
++ margin-bottom: 1.5em;
++ margin-top: 0.5em;
++ float: right;
++}
++
++#password_change_form label {
++ text-align: left;
++ float: left;
++ width: 150px;
++}
++
++
++
+ /* End changes obgr_seneca */
+
+ .message {
+
+Modified: identity/CatDap/trunk/root/user/password.tt
+===================================================================
+--- identity/CatDap/trunk/root/user/password.tt 2011-01-07 00:57:29 UTC (rev 239)
++++ identity/CatDap/trunk/root/user/password.tt 2011-01-07 00:57:33 UTC (rev 240)
+@@ -1,21 +1,18 @@
+-
++&lt;div id=&quot;password_change_form&quot;&gt;
++&lt;h2&gt;Change password&lt;/h2&gt;
+ &lt;form method=&quot;post&quot; action=&quot;&quot;&gt;
+
+- &lt;p&gt;
+ &lt;label for=&quot;password_&quot;&gt;[% l('Current password') %]&lt;/label&gt;
+ &lt;input id=&quot;password_&quot; name=&quot;password&quot; type=&quot;password&quot; value=&quot;&quot; /&gt;
+- &lt;/p&gt;
+-
+- &lt;p&gt;
++ &lt;br/&gt;
++ &lt;br/&gt;
+ &lt;label for=&quot;newpassword1_&quot;&gt;[% l('New Password') %]&lt;/label&gt;
+ &lt;input id=&quot;newpassword1_&quot; name=&quot;newpassword1&quot; type=&quot;password&quot; value=&quot;&quot; /&gt;
+- &lt;/p&gt;
+-
+- &lt;p&gt;
++ &lt;br/&gt;
+ &lt;label for=&quot;newpassword2_&quot;&gt;[% l('Repeat New Password') %]&lt;/label&gt;
+ &lt;input id=&quot;newpassword2_&quot; name=&quot;newpassword2&quot; type=&quot;password&quot; value=&quot;&quot; /&gt;
+- &lt;/p&gt;
++ &lt;br/&gt;
++ &lt;button type=&quot;submit&quot; value=&quot;[% l('Change') %]&quot; /&gt;[% l('Change') %]&lt;/button&gt;
+
+- &lt;p&gt;&lt;input type=&quot;submit&quot; value=&quot;[% l('Change') %]&quot; /&gt;&lt;/p&gt;
+-
+ &lt;/form&gt;
++&lt;/div&gt;
+-------------- next part --------------
+An HTML attachment was scrubbed...
+URL: &lt;/pipermail/mageia-sysadm/attachments/20110107/980754c1/attachment.html&gt;
+</PRE>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<!--endarticle-->
+ <HR>
+ <P><UL>
+ <!--threads-->
+ <LI>Previous message: <A HREF="001639.html">[Mageia-sysadm] [239] align menu of subpages to the left ( not perfect yet, but better IMHO )
+</A></li>
+ <LI>Next message: <A HREF="001641.html">[Mageia-sysadm] [241] move the sub-form out of the main form, as this contraint it horizontally, thus leading to a suboptimal layout ( input not aligned with the rest )
+</A></li>
+ <LI> <B>Messages sorted by:</B>
+ <a href="date.html#1640">[ date ]</a>
+ <a href="thread.html#1640">[ thread ]</a>
+ <a href="subject.html#1640">[ subject ]</a>
+ <a href="author.html#1640">[ author ]</a>
+ </LI>
+ </UL>
+
+<hr>
+<a href="https://www.mageia.org/mailman/listinfo/mageia-sysadm">More information about the Mageia-sysadm
+mailing list</a><br>
+</body></html>