acidrain / bubbletip

Automatically exported from code.google.com/p/bubbletip
0 stars 0 forks source link

reset.css causes problems for deltaDirections: left, right #1

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Include the YUI reset.css stylesheet
2. Create a bubbletip with deltaDirection 'left' or 'right'
3. Create a tip with just text (e.g. <p>this is the test tip text</p>)

What is the expected output? What do you see instead?
reset.css sets the "vertical-align: baseline;" property, so there are some 
rendering/positioning issues of the bubbletip content.

Original issue reported on code.google.com by uhle...@gmail.com on 4 Dec 2009 at 3:27

GoogleCodeExporter commented 8 years ago
modified the bubbletip.css file with the following:

.bubbletip td.bt-content
{
    background-color: #fff;
    vertical-align: middle;
}

Original comment by uhle...@gmail.com on 4 Dec 2009 at 3:29