Bug 10315 - Use easier readable font for generated passwords
authorOwen Leonard <oleonard@myacpl.org>
Thu, 23 May 2013 16:44:58 +0000 (12:44 -0400)
committerGalen Charlton <gmc@esilibrary.com>
Fri, 14 Jun 2013 15:15:44 +0000 (08:15 -0700)
The text inputs on the change password form are not very big, and the
default sans-serif font isn't always good for showing unambiguous
characters. This patch sets a larger, monospace font for those fields.

To test, apply the patch, clear your browser cache, and open the patron
change password form (members/member-password.pl). The inputs should be
more readable, especially the password fields when you click to fill
with a randomly generated password.

Signed-off-by: Mirko Tietgen <mirko@abunchofthings.net>
Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com>
Signed-off-by: Galen Charlton <gmc@esilibrary.com>
koha-tmpl/intranet-tmpl/prog/en/css/staff-global.css

index cda7494..3439e23 100644 (file)
@@ -2562,3 +2562,9 @@ fieldset.rows table.mceListBox {
 #selections span { margin:3px;padding:3px;background-color:#EBF3FF;-moz-border-radius:5px;border-radius:5px;white-space:nowrap;line-height:240%;font-size:75%; }
 #selections span.selected { background-color : #CCE0FC; }
 #selections input { vertical-align:middle;margin:0 2px; }
+#changepasswordf input[type="text"],
+#changepasswordf input[type="password"] {
+    font-size: 140%;
+    font-family : monospace;
+    padding : .3em;
+}
\ No newline at end of file