change icon font to google icons

This commit is contained in:
Dennis Eichhorn 2023-10-19 21:44:09 +00:00
parent 7826da5786
commit 1133c80221
4 changed files with 13 additions and 13 deletions

File diff suppressed because one or more lines are too long

View File

@ -22,7 +22,7 @@ echo $this->data['nav']->render(); ?>
<div class="row">
<div class="col-xs-12">
<div class="portlet">
<div class="portlet-head"><?= $this->getHtml('Instances'); ?><i class="lni lni-download download btn end-xs"></i></div>
<div class="portlet-head"><?= $this->getHtml('Instances'); ?><i class="g-icon download btn end-xs">download</i></div>
<table class="default">
<thead>
<td><?= $this->getHtml('Status'); ?>

View File

@ -22,7 +22,7 @@ echo $this->data['nav']->render(); ?>
<div class="row">
<div class="col-xs-12">
<div class="portlet">
<div class="portlet-head"><?= $this->getHtml('Instances'); ?><i class="lni lni-download download btn end-xs"></i></div>
<div class="portlet-head"><?= $this->getHtml('Instances'); ?><i class="g-icon download btn end-xs">download</i></div>
<table class="default">
<thead>
<td><?= $this->getHtml('Date'); ?>

View File

@ -36,7 +36,7 @@ echo $this->data['nav']->render(); ?>
<div class="row">
<div class="col-xs-12">
<div class="portlet">
<div class="portlet-head"><?= $this->getHtml('Workflows'); ?><i class="lni lni-download download btn end-xs"></i></div>
<div class="portlet-head"><?= $this->getHtml('Workflows'); ?><i class="g-icon download btn end-xs">download</i></div>
<div class="slider">
<table id="workflowTemplateList" class="default sticky">
<thead>
@ -50,38 +50,38 @@ echo $this->data['nav']->render(); ?>
<td class="wf-100"><?= $this->getHtml('Name'); ?>
<label for="workflowTemplateList-sort-1">
<input type="radio" name="workflowTemplateList-sort" id="workflowTemplateList-sort-1">
<i class="sort-asc fa fa-chevron-up"></i>
<i class="sort-asc g-icon">expand_less</i>
</label>
<label for="workflowTemplateList-sort-2">
<input type="radio" name="workflowTemplateList-sort" id="workflowTemplateList-sort-2">
<i class="sort-desc fa fa-chevron-down"></i>
<i class="sort-desc g-icon">expand_more</i>
</label>
<label>
<i class="filter fa fa-filter"></i>
<i class="filter g-icon">filter_alt</i>
</label>
<td><?= $this->getHtml('Creator'); ?>
<label for="workflowTemplateList-sort-5">
<input type="radio" name="workflowTemplateList-sort" id="workflowTemplateList-sort-5">
<i class="sort-asc fa fa-chevron-up"></i>
<i class="sort-asc g-icon">expand_less</i>
</label>
<label for="workflowTemplateList-sort-6">
<input type="radio" name="workflowTemplateList-sort" id="workflowTemplateList-sort-6">
<i class="sort-desc fa fa-chevron-down"></i>
<i class="sort-desc g-icon">expand_more</i>
</label>
<label>
<i class="filter fa fa-filter"></i>
<i class="filter g-icon">filter_alt</i>
</label>
<td><?= $this->getHtml('Created'); ?>
<label for="workflowTemplateList-sort-7">
<input type="radio" name="workflowTemplateList-sort" id="workflowTemplateList-sort-7">
<i class="sort-asc fa fa-chevron-up"></i>
<i class="sort-asc g-icon">expand_less</i>
</label>
<label for="workflowTemplateList-sort-8">
<input type="radio" name="workflowTemplateList-sort" id="workflowTemplateList-sort-8">
<i class="sort-desc fa fa-chevron-down"></i>
<i class="sort-desc g-icon">expand_more</i>
</label>
<label>
<i class="filter fa fa-filter"></i>
<i class="filter g-icon">filter_alt</i>
</label>
<tbody>
<?php $count = 0; foreach ($templates as $key => $template) : ++$count;