# HG changeset patch # User Dan # Date 1208009545 14400 # Node ID 03429d7b153753d6f219aa85cfed05c319fdcab5 # Parent 510160f15a693acf1b5aa6d5a68564b6ee0cc554 Finally fixed link coloring settings in Oxygen Bleu; added compatibility wrapper for people that "ajaxLogonInit" over "ajaxLoginInit" diff -r 510160f15a69 -r 03429d7b1537 includes/clientside/static/login.js --- a/includes/clientside/static/login.js Sat Apr 12 09:51:35 2008 -0400 +++ b/includes/clientside/static/login.js Sat Apr 12 10:12:25 2008 -0400 @@ -140,6 +140,15 @@ } /** + * For compatibility only. + */ + +function ajaxLogonInit(call_on_finish, user_level) +{ + return ajaxLoginInit(call_on_finish, user_level); +} + +/** * Sets the contents of the AJAX login window to the appropriate status message. * @param int One of AJAX_STATUS_* */ diff -r 510160f15a69 -r 03429d7b1537 themes/oxygen/css/bleu.css --- a/themes/oxygen/css/bleu.css Sat Apr 12 09:51:35 2008 -0400 +++ b/themes/oxygen/css/bleu.css Sat Apr 12 10:12:25 2008 -0400 @@ -222,11 +222,11 @@ font-size: 9pt; } -div.contentDiv a, div#messageBox a { +a { color: #7090B0; } -div.contentDiv a:hover, div#messageBox a:hover { +a:hover { color: #90B0D0; }