diff --git a/inc/shaarli.css b/inc/shaarli.css index e7396cc..d52de92 100644 --- a/inc/shaarli.css +++ b/inc/shaarli.css @@ -562,7 +562,6 @@ a.qrcode img { } #cloudtag a { - font-weight:bold; color: black; text-decoration: none; } diff --git a/index.php b/index.php index 1a92486..c4c45e5 100644 --- a/index.php +++ b/index.php @@ -1252,8 +1252,9 @@ function renderPage() ksort($tags); $tagList=array(); foreach($tags as $key=>$value) + // Tag font size scaling: default 15 and 30 logarithm bases affect scaling, 22 and 6 are arbitrary font sizes for max and min sizes. { - $tagList[$key] = array('count'=>$value,'size'=>max(40*$value/$maxcount,8)); + $tagList[$key] = array('count'=>$value,'size'=>log($value, 15) / log($maxcount, 30) * (22-6) + 6); } $PAGE = new pageBuilder; $PAGE->assign('linkcount',count($LINKSDB));