Top left and right edges of tooltip are not rounded, while bottom ones are. Bottom padding seems way to much:

All edges rounded, or none. Text centered.
The first CSS rule in my single-page app is the following
/* Gets rid of any extra scrollbars added by the browser */
* {
overflow: hidden;
}
If I comment that out, tooltips look as they should, i.e. as in the docs.
The first CSS rule in my single-page app is the following
... that is an overly general global rule. It doesn't seem worth it to write Blueprint component CSS in a way that is defensive against such global styling. Surely there are more specific selectors for your overflow: hidden rule which would solve your scrollbar issues?
A non-inline tooltip may solve your problem, but generally agree that * { overflow: hidden; } is gonna cause you some weird behavior eventually
yeah that's a terrifying way to start your stylesheet and is guaranteed to cause problems with anything that relies on non-static positioning.
Thanks guys for the hints!
Yepp, it's easy to see that I am a CSS beginner (and I'm not sure whether I will ever like it).
Most helpful comment
... that is an overly general global rule. It doesn't seem worth it to write Blueprint component CSS in a way that is defensive against such global styling. Surely there are more specific selectors for your
overflow: hiddenrule which would solve your scrollbar issues?