Skip to content

Commit ea55b5c

Browse files
committed
switched icons to fixed weight fontawesome
1 parent 8a5882e commit ea55b5c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/views/menus/main-search.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
]) ?>
5454
<span class="input-group-btn">
5555
<button type="submit" class="btn btn-default" tabindex="3">
56-
&nbsp;<span class="glyphicon glyphicon-search" aria-hidden="true"></span>
56+
&nbsp;<span class="fa fa-search" aria-hidden="true"></span>
5757
</button>
5858
</span>
5959
</div>

src/views/package/_search_item.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,20 @@
4141
<?php if ($model->homepage): ?>
4242
<p class="homepage">
4343
<a href="<?= Html::encode($model->homepage) ?>" target="_blank">
44-
<i class="glyphicon glyphicon-globe" aria-hidden="true"></i> Homepage
44+
<i class="fa fa-fw fa-globe" aria-hidden="true"></i> Homepage
4545
</a>
4646
</p>
4747
<?php endif ?>
4848
<?php if ($model->repository_url): ?>
4949
<p class="repository_url">
5050
<a href="<?= Html::encode($model->repository_url) ?>" target="_blank">
51-
<i class="glyphicon glyphicon-random" aria-hidden="true"></i> Repository
51+
<i class="fa fa-fw fa-random" aria-hidden="true"></i> Repository
5252
</a>
5353
</p>
5454
<?php endif ?>
5555
<?php if (!empty($model->normalized_licenses)): ?>
5656
<p class="normalized_licenses">
57-
<i class="fa fa-balance-scale"></i> License:
57+
<i class="fa fa-fw fa-balance-scale"></i> License:
5858
<?= implode(',', $model->normalized_licenses) ?>
5959
</p>
6060
<?php endif ?>

0 commit comments

Comments
 (0)