diff options
author | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-08-27 20:45:43 +0100 |
---|---|---|
committer | Robin McCorkell <rmccorkell@karoshi.org.uk> | 2014-09-11 15:45:42 +0100 |
commit | a62ac2574e7f17e4740e480b471d3e223624de59 (patch) | |
tree | 7d3d148f597395847f094b046561e21ded93008f | |
parent | 99d41bec5d04fbdf5d457584cd4d22fef65ece25 (diff) | |
download | nextcloud-server-a62ac2574e7f17e4740e480b471d3e223624de59.tar.gz nextcloud-server-a62ac2574e7f17e4740e480b471d3e223624de59.zip |
Better tooltip handling of very long strings
* Maximum tooltip length now 400px instead of 200px
* Overflowing strings create ellipsis (...)
-rw-r--r-- | core/css/jquery-tipsy.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/css/jquery-tipsy.css b/core/css/jquery-tipsy.css index 957385a269f..63b187fd051 100644 --- a/core/css/jquery-tipsy.css +++ b/core/css/jquery-tipsy.css @@ -1,5 +1,5 @@ .tipsy { font-size:10px; position:absolute; padding:5px; z-index:100000; } -.tipsy-inner { background-color:#000; color:#FFF; max-width:200px; padding:5px 8px 4px 8px; text-align:center; } +.tipsy-inner { background-color:#000; color:#FFF; max-width:400px; padding:5px 8px 4px 8px; text-align:center; overflow: hidden; text-overflow: ellipsis; } /* Rounded corners */ .tipsy-inner { border-radius:3px; -moz-border-radius:3px; -webkit-border-radius:3px; } |