diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-11-14 15:32:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-14 15:32:27 +0100 |
commit | 381967f35e11bfd04baa5c085f733793fee30858 (patch) | |
tree | ffb82fc88dab364f285cb802d87e4e5c3db47a41 /core/css/guest.css | |
parent | 16549ae5fbc2165ab6cf0a1004f80cd142993d48 (diff) | |
parent | 15762c103bcff13de45e9bdff62ab7b2b390c218 (diff) | |
download | nextcloud-server-381967f35e11bfd04baa5c085f733793fee30858.tar.gz nextcloud-server-381967f35e11bfd04baa5c085f733793fee30858.zip |
Merge pull request #7013 from nextcloud/forgot-password
Directly show "Forgot password?" link, fix #6808
Diffstat (limited to 'core/css/guest.css')
-rw-r--r-- | core/css/guest.css | 30 |
1 files changed, 20 insertions, 10 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index 9bacf5a6bb5..f6dbfee08aa 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -130,28 +130,29 @@ form #datadirField legend { } /* Buttons and input */ -#submit-wrapper { +#submit-wrapper, +#reset-password-wrapper { position: relative; /* Make the wrapper the containing block of its absolutely positioned descendant icons */ } -#submit-wrapper .icon-confirm-white { + +#submit-wrapper .submit-icon, +#reset-password-wrapper .submit-icon { position: absolute; top: 23px; right: 23px; + pointer-events: none; /* The submit icon is positioned on the submit button. + From the user point of view the icon is part of the + button, so the clicks on the icon have to be + applied to the button instead. */ } + #submit-wrapper .icon-loading-small { position: absolute; top: 22px; right: 24px; } -#submit-wrapper #submit-icon { - pointer-events: none; /* The submit icon is positioned on the submit button. - From the user point of view the icon is part of the - button, so the clicks on the icon have to be - applied to the button instead. */ -} - input, textarea, select, button, div[contenteditable=true] { font-family: 'Open Sans', Frutiger, Calibri, 'Myriad Pro', Myriad, sans-serif; } @@ -385,13 +386,22 @@ form .warning input[type='checkbox']+label { #remember_login { margin: 18px 5px 0 16px !important; } -.remember-login-container { +.remember-login-container, +.lost-password-container { display: inline-block; margin: 10px 0; text-align: center; width: 100%; text-shadow: 0 0 2px rgba(0, 0, 0, .4); // better readability on bright background } +.lost-password-container #lost-password, +.lost-password-container #lost-password-back { + display: inline-block; + padding: 12px; + margin-top: -6px; + color: #fff; + opacity: .7; +} #forgot-password { padding: 11px; float: right; |