diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-08-27 10:28:31 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-09-11 15:45:42 +0100 |
commit | 99d41bec5d04fbdf5d457584cd4d22fef65ece25 (patch) | |
tree | 079ee19291f919a90ad7b1ca2595555050d25b7a /core | |
parent | 712addac683110c44527cbb9dfe9133821712241 (diff) | |
download | nextcloud-server-99d41bec5d04fbdf5d457584cd4d22fef65ece25.tar.gz nextcloud-server-99d41bec5d04fbdf5d457584cd4d22fef65ece25.zip |
Show original path information in trashbin and sharing views
Path will only be shown if in subdirectory, not in root.
Diffstat (limited to 'core')
-rw-r--r-- | core/css/styles.css | 5 | ||||
-rw-r--r-- | core/js/js.js | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/core/css/styles.css b/core/css/styles.css index d4d16db743c..4022936a5a6 100644 --- a/core/css/styles.css +++ b/core/css/styles.css @@ -811,6 +811,11 @@ span.ui-icon {float: left; margin: 3px 7px 30px 0;} height: 16px; } +/* ---- TOOLTIPS ---- */ +.extra-data { + padding-right: 5px !important; +} + /* ---- 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) { |