diff options
author | Morris Jobke <hey@morrisjobke.de> | 2017-11-16 22:03:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-16 22:03:15 +0100 |
commit | d8296dcc8ae2af63d02b5eea29cb70f7351b8e8d (patch) | |
tree | f9498747c879b6d692850c0a7dd485546b41de69 /core | |
parent | 20868e17e84e84d445082d4ab0aa29d2d9c90379 (diff) | |
parent | a3c13a13ba4d8136990d3b4a8408c8547021b5ea (diff) | |
download | nextcloud-server-d8296dcc8ae2af63d02b5eea29cb70f7351b8e8d.tar.gz nextcloud-server-d8296dcc8ae2af63d02b5eea29cb70f7351b8e8d.zip |
Merge pull request #7167 from nextcloud/password-button-overflow
Fix reset password button overflow
Diffstat (limited to 'core')
-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; |