mark bookmarks with votes < threshold with red dotted border
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@526 b3834d28-1941-0410-a4f8-b48e95affb8f
This commit is contained in:
parent
5976acf7d1
commit
1077d6b244
2 changed files with 9 additions and 0 deletions
|
@ -319,6 +319,12 @@ if($currenttag!= '') {
|
|||
$privateNoteField = '';
|
||||
}
|
||||
|
||||
if ($GLOBALS['enableVoting'] && $GLOBALS['hideBelowVoting'] !== null
|
||||
&& $row['bVoting'] < $GLOBALS['hideBelowVoting']
|
||||
) {
|
||||
$access .= ' below-threshold';
|
||||
}
|
||||
|
||||
// Output
|
||||
echo '<li class="xfolkentry'. $access .'" >'."\n";
|
||||
include 'bookmarks-thumbnail.inc.tpl.php';
|
||||
|
|
|
@ -239,6 +239,9 @@ li.xfolkentry.private {
|
|||
li.xfolkentry.shared {
|
||||
border-left: 3px solid #FA0;
|
||||
}
|
||||
li.below-threshold > div {
|
||||
border-right: 5px dotted #F00;
|
||||
}
|
||||
|
||||
li.xfolkentry div div.description span.anchorBookmark {
|
||||
/*font-family:monospace;*/
|
||||
|
|
Loading…
Reference in a new issue