style stuff to css
git-svn-id: file:///home/shish/svn/shimmie2/trunk@219 7f39781d-f577-437e-ae19-be835c7a54ca
This commit is contained in:
parent
c8bc08f7da
commit
8e261f03b2
2 changed files with 8 additions and 1 deletions
|
@ -68,7 +68,7 @@ class TagListTheme extends Themelet {
|
|||
$link = $this->tag_link($row['tag']);
|
||||
$html .= "<a class='tag_name' href='$link'>$h_tag_no_underscores</a>\n";
|
||||
if($config->get_bool("tag_list_numbers")) {
|
||||
$html .= " <span class='tag_count'>($count)</span>";
|
||||
$html .= " <span class='tag_count'>$count</span>";
|
||||
}
|
||||
if(!is_null($config->get_string('info_link'))) {
|
||||
$link = str_replace('$tag', $tag, $config->get_string('info_link'));
|
||||
|
|
|
@ -98,6 +98,13 @@ A:hover {text-decoration: underline;}
|
|||
content: " >>>";
|
||||
}
|
||||
|
||||
.tag_count:before {
|
||||
content: "(";
|
||||
}
|
||||
.tag_count:after {
|
||||
content: ")";
|
||||
}
|
||||
|
||||
|
||||
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
|
||||
* the main part of each page *
|
||||
|
|
Reference in a new issue