diff options
author | Morris Jobke <hey@morrisjobke.de> | 2014-09-16 12:49:17 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2014-09-16 12:49:17 +0200 |
commit | 61b040cbe89d010a586fcd95ff8a65e40e4f0f44 (patch) | |
tree | 38397bab74f85d65d2f641ea95f2aa50794884ac /core | |
parent | e2b504e61d3c6b1c6684b0c06a37d45215d5f571 (diff) | |
parent | ea2022661d85092b30f49056c3523501b6cb7e54 (diff) | |
download | nextcloud-server-61b040cbe89d010a586fcd95ff8a65e40e4f0f44.tar.gz nextcloud-server-61b040cbe89d010a586fcd95ff8a65e40e4f0f44.zip |
Merge pull request #10663 from owncloud/files_trashbin_original_path
Show original path information in trashbin and for shares
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 10 | ||||
-rw-r--r-- | core/js/js.js | 1 |
2 files changed, 11 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index ac381da4807..7058a2bf7c2 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -813,6 +813,16 @@ span.ui-icon {float: left; margin: 3px 7px 30px 0;} height: 16px; } +/* ---- TOOLTIPS ---- */ +.extra-data { + padding-right: 5px !important; +} +.tipsy-inner { + max-width: 400px !important; + overflow: hidden; + text-overflow: ellipsis; +} + /* ---- TAGS ---- */ #tagsdialog .content { width: 100%; height: 280px; diff --git a/core/js/js.js b/core/js/js.js index 89682e3013f..f35a3a1e2be 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -1097,6 +1097,7 @@ function initCore() { $('td .modified').tipsy({gravity:'s', fade:true, live:true}); $('td.lastLogin').tipsy({gravity:'s', fade:true, html:true}); $('input').tipsy({gravity:'w', fade:true}); + $('.extra-data').tipsy({gravity:'w', fade:true, live:true}); // toggle for menus $(document).on('mouseup.closemenus', function(event) { |