diff --git a/.gitignore b/.gitignore index 25592d18..f3d1871c 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /config/users/*.ini /backup /.htaccess +.DS_Store \ No newline at end of file diff --git a/system/admin/editor/js/Markdown.Editor.js b/system/admin/editor/js/Markdown.Editor.js index 814306aa..a2518171 100644 --- a/system/admin/editor/js/Markdown.Editor.js +++ b/system/admin/editor/js/Markdown.Editor.js @@ -1524,7 +1524,7 @@ buttons.readmore = makeButton("wmd-readmore-button", getString("readmore"), "fa fa-arrow-right", bindCommand("doReadMore")); buttons.toc = makeButton("wmd-toc-button", getString("toc"), "fa fa-list-alt", bindCommand("doTOC")); //makeSpacer(3); - buttons.undo = makeButton("wmd-undo-button", getString("undo"), "fa fa-undo", null); + buttons.undo = makeButton("wmd-undo-button", getString("undo"), "fa-solid fa-rotate-left", null); buttons.undo.execute = function (manager) { if (manager) manager.undo(); }; @@ -1533,7 +1533,7 @@ getString("redo") : getString("redomac"); // mac and other non-Windows platforms - buttons.redo = makeButton("wmd-redo-button", redoTitle, "fa fa-repeat", null); + buttons.redo = makeButton("wmd-redo-button", redoTitle, "fa-solid fa-rotate-right", null); buttons.redo.execute = function (manager) { if (manager) manager.redo(); }; diff --git a/system/admin/views/layout.html.php b/system/admin/views/layout.html.php index 5304fefd..5219e8b1 100644 --- a/system/admin/views/layout.html.php +++ b/system/admin/views/layout.html.php @@ -6,7 +6,8 @@ <?php echo $title;?> - + + @@ -75,7 +76,7 @@ with font-awesome or any other icon font library -->