Error in CSS for "editsection"
------------------------------
Key: JSPWIKI-576
URL: https://issues.apache.org/jira/browse/JSPWIKI-576
Project: JSPWiki
Issue Type: Bug
Components: Default template
Affects Versions: 2.8.2
Environment: All
Reporter: Stefan Bohn
Priority: Trivial
Edit Section-Link is rendered in blue, not in grey as with version 2.8.1
css changed form
h2 .editsection,h2 .hashlink{font-size:67%;padding-left:1em;}
h3{font-size:132%;}
h3 .editsection,h3 .hashlink{font-size:76%;padding-left:1em;}
h4{font-size:116%;}
h4 .editsection,h4 .hashlink{font-size:86%;padding-left:1em;}
.editsection{font-weight:normal;line-height:1.2;}
.editsection a{padding:.25em;text-decoration:none;color:grey;}
.editsection a:hover{background-color:#eee;color:blue;}
to
h2 .editsection,h2 .hashlink{font-size:67%;}
h3{font-size:132%;}
h3 .editsection,h3 .hashlink{font-size:76%;}
h4{font-size:116%;}
h4 .editsection,h4 .hashlink{font-size:86%;}
a.editsection,a.hashlink{font-weight:normal;line-height:1.2;padding:.25em;text-decoration:none;color:grey;}
a.editsection:hover,a.hashlink:hover{background-color:#eee;color:blue!important;}
a-tag is not created with param class by parser.
The a-Tag is inside a span-Tag with parameter class="editsection"
<span class="editsection">
<a href="/Edit.jsp?page=Main§ion=0">[Abschnitt bearbeiten]</a>
</span>
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.