| Issue 301: | wrong definition background position for firefox | |
| 1 person starred this issue and may be notified of changes. | Back to list |
What steps will reproduce the problem?
1.Define some tree element, with one or more levels
2.See the icon of folder, file or checkbox
In chrome, IE, safari and opera I see the icons correctly, but in Firefox appears a line at the bottom from the other image.
I fixed the issue redefining background-position with one less pixel. For example:
Convert this:
.dynatree-selected span.dynatree-checkbox:hover
{
background-position: -48px -32px;
}
Into this:
.dynatree-selected span.dynatree-checkbox:hover
{
background-position: -48px -31px;
}
Jul 13, 2012
(No comment was entered for this change.)
Labels:
Milestone-Release1.2.2
Oct 6, 2012
(No comment was entered for this change.)
Status:
Accepted
Labels: -Milestone-Release1.2.2 Milestone-Release1.2.x
Oct 6, 2012
see also issue 311
Oct 7, 2012
(No comment was entered for this change.)
Status:
Duplicate
Mergedinto: 311
May 3, 2014
(No comment was entered for this change.)
Labels:
-Milestone-Release1.2.x Milestone-Release2.0
|
Note: In my case this was caused by the following rogue css piece: li { line-height: 18px; } After setting ul.dynatree-container li { line-height: 16px; ... } in the dynatree css, all seems fine.