diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-11-28 21:36:43 +0100 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-11-28 21:36:43 +0100 |
commit | 587fc1aff35464c2c3fbdde7a752801df62fa41e (patch) | |
tree | 7cec7b12497463597f28cc9a23dd999a0dc24b2a /core | |
parent | f723bf744a2c32e310461fa51f85fd3bb0e9fa44 (diff) | |
download | nextcloud-server-587fc1aff35464c2c3fbdde7a752801df62fa41e.tar.gz nextcloud-server-587fc1aff35464c2c3fbdde7a752801df62fa41e.zip |
Fix resize issue for trash button in chrome and overflowing spinner in .update class
fixes #6108
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 4 | ||||
-rw-r--r-- | core/templates/login.php | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index 859f11ff0a8..13888106f76 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -201,9 +201,9 @@ input[type="submit"].enabled { -webkit-box-sizing: border-box; box-sizing: border-box; position: fixed; + right: 0; + left: 80px; height: 44px; - width: 100%; - padding-right: 75px; margin: 0; background: #eee; border-bottom: 1px solid #e7e7e7; diff --git a/core/templates/login.php b/core/templates/login.php index b81128a3269..e697ebe5326 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -21,6 +21,8 @@ <p id="message" class="hidden"> <img class="float-spinner" src="<?php p(\OCP\Util::imagePath('core', 'loading-dark.gif'));?>"/> <span id="messageText"></span> + <!-- the following div ensures that the spinner is always inside the #message div --> + <div style="clear: both;"></div> </p> <p class="infield grouptop"> <input type="text" name="user" id="user" placeholder="" |