summaryrefslogtreecommitdiffstats
path: root/core/js/lostpassword.js
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2014-06-13 15:54:09 +0200
committerMorris Jobke <hey@morrisjobke.de>2014-06-13 15:56:21 +0200
commitcedca03ef524376135e9fa232879bd1df0da0c9d (patch)
tree8a04ea813a2e9e20db33cc556088f9b2641c0f3b /core/js/lostpassword.js
parentd0b71dffca8754f9a2633586b35772b862bbe1d2 (diff)
downloadnextcloud-server-cedca03ef524376135e9fa232879bd1df0da0c9d.tar.gz
nextcloud-server-cedca03ef524376135e9fa232879bd1df0da0c9d.zip
Remove infield label, add password icon, fix layout
Diffstat (limited to 'core/js/lostpassword.js')
-rw-r--r--core/js/lostpassword.js3
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);
},