diff options
author | Marvin Thomas Rabe <m.rabe@echtzeitraum.de> | 2012-02-23 22:20:15 +0100 |
---|---|---|
committer | Marvin Thomas Rabe <m.rabe@echtzeitraum.de> | 2012-02-23 22:28:13 +0100 |
commit | 7c738a1384d34c7bf3044b35ed59f990ea5ae44b (patch) | |
tree | efe181ead5f07e13f618e9ed1d570485790f05cb /apps/files_sharing | |
parent | b1fb325d4815b4f4537f6a0dbe4a1eb4f5b3c360 (diff) | |
download | nextcloud-server-7c738a1384d34c7bf3044b35ed59f990ea5ae44b.tar.gz nextcloud-server-7c738a1384d34c7bf3044b35ed59f990ea5ae44b.zip |
Sharing dropdown width fixed.
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/css/sharing.css | 3 | ||||
-rw-r--r-- | apps/files_sharing/js/share.js | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/apps/files_sharing/css/sharing.css b/apps/files_sharing/css/sharing.css index 0759af2c274..db59a3d340b 100644 --- a/apps/files_sharing/css/sharing.css +++ b/apps/files_sharing/css/sharing.css @@ -5,4 +5,5 @@ #shared_list { padding:0.5em; list-style-type: none; } #public { border-top:1px solid #ddd; padding-top:0.5em; } a.unshare { float:right; display:inline; margin:0 .5em; padding:.3em .3em 0 .3em !important; opacity:.5; } -a.unshare:hover { opacity:1; }
\ No newline at end of file +a.unshare:hover { opacity:1; } +#share_with { width: 16em; }
\ No newline at end of file diff --git a/apps/files_sharing/js/share.js b/apps/files_sharing/js/share.js index d01a07447a6..fc9e17c25c7 100644 --- a/apps/files_sharing/js/share.js +++ b/apps/files_sharing/js/share.js @@ -174,7 +174,7 @@ $(document).ready(function() { function createDropdown(filename, files) { var html = '<div id="dropdown" class="drop" data-file="'+files+'">'; html += '<div id="private">'; - html += '<select data-placeholder="User or Group" style="width:220px;" id="share_with" class="chzen-select">'; + html += '<select data-placeholder="User or Group" id="share_with" class="chzen-select">'; html += '<option value=""></option>'; html += '</select>'; html += '<ul id="shared_list"></ul>'; |