Use badge-pill instead of badge for header totals

This commit is contained in:
ruan 2018-07-07 20:34:58 +02:00
parent 0845c19f1c
commit d7c3b8ae83
No known key found for this signature in database
GPG Key ID: 0D2EC1C52E469C0B

View File

@ -43,7 +43,7 @@ function navbar($links) {
$li .= " class=\"$class\""; $li .= " class=\"$class\"";
if ($this->page->settings->header_show_totals && isset($this->count[$page])) { if ($this->page->settings->header_show_totals && isset($this->count[$page])) {
$title .= " <span class=\"badge badge-secondary\">"; $title .= " <span class=\"badge-pill badge-secondary\">";
$title .= $this->count[$page]; $title .= $this->count[$page];
$title .= "</span>"; $title .= "</span>";
} }