Interface fix: put anchors from bookmarks description into monotype font-family
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@277 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
bdcb737de2
commit
edddedaa94
@ -238,6 +238,10 @@ li.xfolkentry.shared {
|
||||
border-left: 3px solid #FA0;
|
||||
}
|
||||
|
||||
li.xfolkentry div div.description span.anchorBookmark {
|
||||
font-family:monospace;
|
||||
}
|
||||
|
||||
/* SIDEBAR */
|
||||
|
||||
div#sidebar {
|
||||
|
@ -225,7 +225,7 @@ if($currenttag!= '') {
|
||||
} else {
|
||||
// Improve description display (anchors, links, ...)
|
||||
$bkDescription = preg_replace('|\[\/.*?\]|', '', filter($row['bDescription'])); // remove final anchor
|
||||
$bkDescription = preg_replace('|\[(.*?)\]|', ' <b>$1 </b>', $bkDescription); // highlight starting anchor
|
||||
$bkDescription = preg_replace('|\[(.*?)\]|', ' <span class="anchorBookmark">$1</span> ', $bkDescription); // highlight starting anchor
|
||||
$bkDescription = preg_replace('@((http|https|ftp)://.*?)( |\r|$)@', '<a href="$1" rel="nofollow">$1</a>$3', $bkDescription); // make url clickable
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user