* Use <span> for the highlights

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33859 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Alexandre Deckner 2009-11-01 18:13:29 +00:00
parent b7ae7914b8
commit ef2927b12c
1 changed files with 7 additions and 7 deletions

View File

@ -42,13 +42,13 @@ def renderHtml(text, highlights, sourceFileName, outputFileName):
count = 0
for slice in splittedText:
if count % 2 == 0:
temp += escape(slice) + '<highlight class="tooltip">'
temp += escape(slice) + '<span class="highlight tooltip">'
else:
temp += escape(slice) + "<em>" + highlights[(count - 1) / 2][2] \
+ "</em></highlight>"
+ "</em></span>"
count += 1
temp += "</highlight>" # close the superfluous last highlight
temp += "</span>" # close the superfluous last highlight
count = 1
for line in temp.split('\n'):
@ -131,7 +131,7 @@ def checkHighlights(highlights):
def cssStyle():
return """
highlight {
.highlight {
background: #ffff00;
color: #000000;
}
@ -140,18 +140,18 @@ def cssStyle():
font-family: monospace;
}
highlight.tooltip em {
.tooltip em {
display:none;
}
highlight.tooltip:hover {
.tooltip:hover {
border: 0;
position: relative;
z-index: 500;
text-decoration:none;
}
highlight.tooltip:hover em {
.tooltip:hover em {
font-style: normal;
display: block;
position: absolute;