Skip to content
Snippets Groups Projects
Commit a62ac257 authored by Robin McCorkell's avatar Robin McCorkell
Browse files

Better tooltip handling of very long strings

 * Maximum tooltip length now 400px instead of 200px
 * Overflowing strings create ellipsis (...)
parent 99d41bec
No related branches found
No related tags found
No related merge requests found
.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; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment