diff options
Diffstat (limited to 'core/js/lostpassword.js')
-rw-r--r-- | core/js/lostpassword.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/js/lostpassword.js b/core/js/lostpassword.js index 19e2cf5a4b6..b0bd0e01b75 100644 --- a/core/js/lostpassword.js +++ b/core/js/lostpassword.js @@ -57,7 +57,8 @@ OC.Lostpassword = { sendLinkSuccess : function(msg){ var node = OC.Lostpassword.getSendStatusNode(); - node.addClass('success').css({width:'auto'}); + // update is the better success message styling + node.addClass('update').css({width:'auto'}); node.html(OC.Lostpassword.sendSuccessMsg); }, |