icon fixes, loading optimizations

This commit is contained in:
Dennis Eichhorn 2023-10-20 13:08:56 +00:00
parent 0a3869a6fe
commit 7a18f7c750
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ html, body {
margin: 0;
height: 100%;
max-height: 100%;
font-family: 'Roboto', sans-serif;
font-family: 'Arial', Helvetica, sans-serif;
}
body {

View File

@ -7,7 +7,7 @@
"name": "Support",
"uri": null,
"target": "self",
"icon": "live_help-circle",
"icon": "live_help",
"order": 80,
"from": "Support",
"permission": { "permission": 2, "category": null, "element": null },

View File

@ -101,7 +101,7 @@ echo $this->data['nav']->render(); ?>
<?php endif; ?>
<?php $tags = $task->getTags(); foreach ($tags as $tag) : ?>
<span class="tag" style="background: <?= $this->printHtml($tag->color); ?>"><?= empty($tag->icon) ? '' : '<i class="' . $this->printHtml($tag->icon) . '"></i>'; ?><?= $this->printHtml($tag->getL11n()); ?></span>
<span class="tag" style="background: <?= $this->printHtml($tag->color); ?>"><?= empty($tag->icon) ? '' : '<i class="g-icon">' . $this->printHtml($tag->icon) . '</i>'; ?><?= $this->printHtml($tag->getL11n()); ?></span>
<?php endforeach; ?>
</div>
</div>