diff options
author | Chad Kieffer <chad@2tbsp.com> | 2009-02-05 01:10:34 +0000 |
---|---|---|
committer | Chad Kieffer <chad@2tbsp.com> | 2009-02-05 01:10:34 +0000 |
commit | 02207f439519e9e15db82b784286238dbf511e02 (patch) | |
tree | de069d3754d927c6994e5ce31cbd93a8232cd643 | |
parent | cd9bdaa07abc69b86be58e2543522f9e28c83dc9 (diff) |
Apply default link styles to links in dialogs, including the Forgot Password link.
-rw-r--r-- | themes/default/css/screen.css | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/themes/default/css/screen.css b/themes/default/css/screen.css index 76ec290d..28806e10 100644 --- a/themes/default/css/screen.css +++ b/themes/default/css/screen.css @@ -65,17 +65,25 @@ h3 { /* Links ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ -a { +a, +#gDialog a { color: #6b8cb7; text-decoration: none; -moz-outline-style: none; } -a:hover { +a:hover, +#gDialog a:hover { color: #f30; text-decoration: underline; } +#gForgotPasswordLink { + float: right; + font-size: .9em; +} + + /* Tables ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */ table { |