diff options
author | Thomas Lange <code@nerdmind.de> | 2021-06-26 00:34:34 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-06-26 00:37:46 +0200 |
commit | d581ae0cfc6c4c3210cbdd9680739a74211cde67 (patch) | |
tree | 38f1572337c91075f45bf347662268fa403b6e3e /theme/admin/html/page | |
parent | 2777d36d5e5271ea70f8ee7d4c403e4309812de8 (diff) | |
download | blog-d581ae0cfc6c4c3210cbdd9680739a74211cde67.tar.gz blog-d581ae0cfc6c4c3210cbdd9680739a74211cde67.tar.xz blog-d581ae0cfc6c4c3210cbdd9680739a74211cde67.zip |
Add and change some Fontello icons for admin theme
Diffstat (limited to 'theme/admin/html/page')
-rw-r--r-- | theme/admin/html/page/form.php | 2 | ||||
-rw-r--r-- | theme/admin/html/page/index.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/theme/admin/html/page/form.php b/theme/admin/html/page/form.php index c0ffe2f..e818e4b 100644 --- a/theme/admin/html/page/form.php +++ b/theme/admin/html/page/form.php @@ -46,7 +46,7 @@ </div> <label for="form_time_update"> - <i class="fa fa-clock-o"></i><?=$Language->text('label_update')?></label> + <i class="fa fa-pencil"></i><?=$Language->text('label_update')?></label> <div class="form-grid-item"> <input id="form_time_update" name="time_update" placeholder="<?=escapeHTML($FORM['DATA']['TIME_UPDATE'] ? $FORM['DATA']['TIME_UPDATE'] : 'CURRENT_TIMESTAMP')?>" value="" /> diff --git a/theme/admin/html/page/index.php b/theme/admin/html/page/index.php index bdc7f94..b53e269 100644 --- a/theme/admin/html/page/index.php +++ b/theme/admin/html/page/index.php @@ -1,8 +1,8 @@ <main id="main-content" class="wide"> -<h1><i class="fa fa-file-text-o"></i><?=$Language->text('page_overview')?></h1> +<h1><i class="fa fa-folder-open"></i><?=$Language->text('page_overview')?></h1> <p class="actions-before"><?=$Language->text('overview_page_desc')?></p> <ul class="actions"> - <li><a href="<?=Application::getAdminURL('page/insert.php')?>" title="<?=$Language->text('insert_page')?>"><i class="fa fa-pencil-square-o"></i><?=$Language->text('insert')?></a></li> + <li><a href="<?=Application::getAdminURL('page/insert.php')?>" title="<?=$Language->text('insert_page')?>"><i class="fa fa-plus"></i><?=$Language->text('insert')?></a></li> <li><a href="<?=Application::getAdminURL('page/search.php')?>" title="<?=$Language->text('search_page')?>"><i class="fa fa-search"></i><?=$Language->text('search')?></a></li> </ul> |