diff options
author | Vincent Petry <pvince81@owncloud.com> | 2013-10-10 11:10:32 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2013-10-10 11:12:21 +0200 |
commit | e88b493136f2378ff403d920217e9a5af1231ee3 (patch) | |
tree | ae7d53db0c8fc09f05ada50ec647d0c74c6f3e6b /apps/files_external/css | |
parent | 3a3819b30392547d6d4250830275cec64f7a08d4 (diff) | |
download | nextcloud-server-e88b493136f2378ff403d920217e9a5af1231ee3.tar.gz nextcloud-server-e88b493136f2378ff403d920217e9a5af1231ee3.zip |
Fixed external storage status indicator in admin page
- Fixes #5241
- Fixed indicator to appear, its selector was wrong
- Added spinner while saving an entry's settings
- Removed ajax "async: false" that blocked the browser while saving
Diffstat (limited to 'apps/files_external/css')
-rw-r--r-- | apps/files_external/css/settings.css | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/files_external/css/settings.css b/apps/files_external/css/settings.css index f2f40247b28..74b14028468 100644 --- a/apps/files_external/css/settings.css +++ b/apps/files_external/css/settings.css @@ -4,7 +4,9 @@ td.status > span { width: 16px; vertical-align: text-bottom; } - +span.loading{ + background-size: 16px 16px; +} span.success { background: #37ce02; border-radius: 8px; @@ -12,9 +14,6 @@ span.success { span.error { background: #ce3702; } -span.waiting { - background: none; -} td.mountPoint, td.backend { width:10em; } td.remove>img { visibility:hidden; padding-top:0.8em; } |