Skip to content
Snippets Groups Projects
Commit 397a3750 authored by LucasC's avatar LucasC Committed by Simon Urli
Browse files

XWIKI-22425: "edit this page" link is still not underlined even if the...

XWIKI-22425: "edit this page" link is still not underlined even if the 'Underline links' setting is set to 'Only Inline Links'
* Extended the definition of the helper classes to fit the use here, and added a comment to avoid doing the same mistake later on.
parent fa9b9eb4
No related branches found
No related tags found
No related merge requests found
......@@ -213,11 +213,14 @@ body {
}
// Helper classes for easier content customization. Note that those only work for this preference.
#xwikicontent .force-no-underline a {
// This class can either be used on a common parent or the links themselves.
#xwikicontent .force-no-underline a,
#xwikicontent a.force-no-underline {
text-decoration: none;
}
.force-underline a {
.force-underline a,
a.force-underline {
text-decoration: underline;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment