diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2016-12-02 19:49:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-02 19:49:32 +0100 |
commit | 535655e23c29932286e8d60e0b335d619bf5a3e6 (patch) | |
tree | 02589ea67a7c7900abae6bbc18ecef61e1059509 /apps | |
parent | 717f1d380c888e6981ee4f05675cba884ea42bc3 (diff) | |
parent | 14219c108220ed421ad91329116fc4b6dbcdeea8 (diff) | |
download | nextcloud-server-535655e23c29932286e8d60e0b335d619bf5a3e6.tar.gz nextcloud-server-535655e23c29932286e8d60e0b335d619bf5a3e6.zip |
Merge pull request #2483 from nextcloud/fix-unshare-icon-c
Fix share tab view
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/css/sharetabview.css | 17 |
1 files changed, 12 insertions, 5 deletions
diff --git a/apps/files_sharing/css/sharetabview.css b/apps/files_sharing/css/sharetabview.css index 1ef5ac3fe3c..936e1af246a 100644 --- a/apps/files_sharing/css/sharetabview.css +++ b/apps/files_sharing/css/sharetabview.css @@ -71,7 +71,7 @@ } #shareWithList .unshare { - padding: 4px; + padding: 1px 6px; vertical-align: text-bottom; } #shareWithList .unshare .icon { @@ -81,6 +81,11 @@ #shareWithList .unshare .icon-delete { padding-right: 4px; background-position-x: 0; + display: inline-block; +} + +#shareWithList .sharingOptionsGroup .popovermenu:after { + right: 3px; } #shareWithList label input[type=checkbox] { @@ -104,12 +109,14 @@ .shareTabView .icon-loading-small { display: inline-block; z-index: 1; - padding: 2px 0; + margin-right: 4px; + vertical-align: text-top; } -.shareTabView .shareWithList .icon-loading-small, -.shareTabView .linkShareView .icon-loading-small { - position: absolute; +.shareTabView .shareWithList .icon-loading-small:not(.hidden) + span, +.shareTabView .linkShareView .icon-loading-small:not(.hidden) + input + label:before { + /* Hide if loader is visible */ + display: none !important; } .linkShareView { |