witten
/
luminotes
Archived
1
0
Fork 0

Bug: In IE 6 and 7, the icon next to a link in the tree area looks

broken when the link title spans multiple lines. Fixed by changing
background image to be aligned to top instead of center.
This commit is contained in:
Dan Helfman 2008-04-16 04:46:24 +00:00
parent a607106b32
commit 43dea71039
1 changed files with 5 additions and 5 deletions

View File

@ -290,27 +290,27 @@ img {
}
.note_tree_link {
background: url(/static/images/note_icon.png) left center no-repeat;
background: url(/static/images/note_icon.png) left top no-repeat;
padding-left: 19px;
}
.note_tree_external_link {
background: url(/static/images/web_icon.png) left center no-repeat;
background: url(/static/images/web_icon.png) left top no-repeat;
padding-left: 19px;
}
.note_tree_file_link {
background: url(/static/images/file_icon.png) left center no-repeat;
background: url(/static/images/file_icon.png) left top no-repeat;
padding-left: 19px;
}
.recent_note_link {
background: url(/static/images/note_icon.png) left center no-repeat;
background: url(/static/images/note_icon.png) left top no-repeat;
padding-left: 19px;
}
.note_tree_loading {
background: url(/static/images/loading.gif) left center no-repeat;
background: url(/static/images/loading.gif) left top no-repeat;
padding-left: 20px;
}