diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index 33e9e1f8c0..56445ccf70 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -2743,3 +2743,24 @@ fieldset.permissions .padding { .acp-icon { font-size: 1.5em; } + +.acp-icon-move-up, +.acp-icon-move-down { + color: #4ba5de; +} + +.acp-icon-settings { + color: #62c046; +} + +.acp-icon-delete { + color: #d74558; +} + +.acp-icon-resync { + color: #f69934; +} + +.acp-icon-disabled { + color: #d0d0d0; +} diff --git a/phpBB/includes/functions_acp.php b/phpBB/includes/functions_acp.php index e197dcbe3c..d7278cc101 100644 --- a/phpBB/includes/functions_acp.php +++ b/phpBB/includes/functions_acp.php @@ -93,16 +93,16 @@ function adm_page_header($page_title) 'T_ASSETS_VERSION' => $config['assets_version'], - 'ICON_MOVE_UP' => '', - 'ICON_MOVE_UP_DISABLED' => '', - 'ICON_MOVE_DOWN' => '', - 'ICON_MOVE_DOWN_DISABLED' => '', - 'ICON_EDIT' => '', - 'ICON_EDIT_DISABLED' => '', - 'ICON_DELETE' => '', - 'ICON_DELETE_DISABLED' => '', - 'ICON_SYNC' => '', - 'ICON_SYNC_DISABLED' => '', + 'ICON_MOVE_UP' => '', + 'ICON_MOVE_UP_DISABLED' => '', + 'ICON_MOVE_DOWN' => '', + 'ICON_MOVE_DOWN_DISABLED' => '', + 'ICON_EDIT' => '', + 'ICON_EDIT_DISABLED' => '', + 'ICON_DELETE' => '', + 'ICON_DELETE_DISABLED' => '', + 'ICON_SYNC' => '', + 'ICON_SYNC_DISABLED' => '', 'S_USER_LANG' => $user->lang['USER_LANG'], 'S_CONTENT_DIRECTION' => $user->lang['DIRECTION'],