diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-11-14 16:04:14 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2017-11-14 16:04:14 +0100 |
commit | a3c13a13ba4d8136990d3b4a8408c8547021b5ea (patch) | |
tree | 6a74226a2d0123dd8ffecd49bebcc7535d900486 /core/css/guest.css | |
parent | 346dbfa1ee9ce16479eb6ff5cbf1d108bcb7c09d (diff) | |
download | nextcloud-server-a3c13a13ba4d8136990d3b4a8408c8547021b5ea.tar.gz nextcloud-server-a3c13a13ba4d8136990d3b4a8408c8547021b5ea.zip |
Fix reset password button overflow
Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
Diffstat (limited to 'core/css/guest.css')
-rw-r--r-- | core/css/guest.css | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/core/css/guest.css b/core/css/guest.css index f6dbfee08aa..9c223dfc085 100644 --- a/core/css/guest.css +++ b/core/css/guest.css @@ -136,8 +136,7 @@ form #datadirField legend { absolutely positioned descendant icons */ } -#submit-wrapper .submit-icon, -#reset-password-wrapper .submit-icon { +#submit-wrapper .submit-icon { position: absolute; top: 23px; right: 23px; @@ -147,6 +146,16 @@ form #datadirField legend { applied to the button instead. */ } +#reset-password-submit { + padding: 10px; + overflow: hidden; + text-overflow: ellipsis; +} + +#reset-password-wrapper .submit-icon { + display: none; +} + #submit-wrapper .icon-loading-small { position: absolute; top: 22px; |