From f1cd0b905a7e50c3d6ab04ecb7a8e0bdd43be28e Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Frank=20Na=CC=88gler?= <frank.naegler@typo3.org>
Date: Thu, 21 Jan 2016 23:00:56 +0100
Subject: [PATCH] [TASK] Replace colored icons with action icons

Resolves: #72883
Releases: master, 7.6
Change-Id: I5847784d0fe088f776030c5c3cb098773a2bd7c6
Reviewed-on: https://review.typo3.org/46140
Reviewed-by: Daniel Goerz <ervaude@gmail.com>
Tested-by: Daniel Goerz <ervaude@gmail.com>
Reviewed-by: Wouter Wolters <typo3@wouterwolters.nl>
Tested-by: Wouter Wolters <typo3@wouterwolters.nl>
---
 typo3/sysext/core/Configuration/TCA/be_groups.php    |  6 +++---
 typo3/sysext/core/Configuration/TCA/be_users.php     | 12 ++++++------
 .../TCA/tx_blogexample_domain_model_blog.php         |  4 ++--
 .../TCA/tx_blogexample_domain_model_post.php         |  4 ++--
 .../frontend/Configuration/TCA/sys_template.php      |  4 ++--
 5 files changed, 15 insertions(+), 15 deletions(-)

diff --git a/typo3/sysext/core/Configuration/TCA/be_groups.php b/typo3/sysext/core/Configuration/TCA/be_groups.php
index b3f449022e29..000e7fcb2db4 100644
--- a/typo3/sysext/core/Configuration/TCA/be_groups.php
+++ b/typo3/sysext/core/Configuration/TCA/be_groups.php
@@ -71,13 +71,13 @@ return array(
                             'name' => 'wizard_edit',
                         ),
                         'popup_onlyOpenIfSelected' => 1,
-                        'icon' => 'EXT:backend/Resources/Public/Images/FormFieldWizard/wizard_edit.gif',
+                        'icon' => 'actions-open',
                         'JSopenParams' => 'width=800,height=600,status=0,menubar=0,scrollbars=1'
                     ),
                     'add' => array(
                         'type' => 'script',
                         'title' => 'LLL:EXT:lang/locallang_tca.xlf:file_mountpoints_add_title',
-                        'icon' => 'EXT:backend/Resources/Public/Images/FormFieldWizard/wizard_add.gif',
+                        'icon' => 'actions-add',
                         'params' => array(
                             'table' => 'sys_filemounts',
                             'pid' => '0',
@@ -90,7 +90,7 @@ return array(
                     'list' => array(
                         'type' => 'script',
                         'title' => 'LLL:EXT:lang/locallang_tca.xlf:file_mountpoints_list_title',
-                        'icon' => 'EXT:backend/Resources/Public/Images/FormFieldWizard/wizard_list.gif',
+                        'icon' => 'actions-system-list-open',
                         'params' => array(
                             'table' => 'sys_filemounts',
                             'pid' => '0'
diff --git a/typo3/sysext/core/Configuration/TCA/be_users.php b/typo3/sysext/core/Configuration/TCA/be_users.php
index cfd6903d0019..b287cf79cd29 100644
--- a/typo3/sysext/core/Configuration/TCA/be_users.php
+++ b/typo3/sysext/core/Configuration/TCA/be_users.php
@@ -79,13 +79,13 @@ return array(
                             'name' => 'wizard_edit',
                         ),
                         'popup_onlyOpenIfSelected' => 1,
-                        'icon' => 'EXT:backend/Resources/Public/Images/FormFieldWizard/wizard_edit.gif',
+                        'icon' => 'actions-open',
                         'JSopenParams' => 'width=800,height=600,status=0,menubar=0,scrollbars=1'
                     ),
                     'add' => array(
                         'type' => 'script',
                         'title' => 'LLL:EXT:lang/locallang_tca.xlf:be_users.usergroup_add_title',
-                        'icon' => 'EXT:backend/Resources/Public/Images/FormFieldWizard/wizard_add.gif',
+                        'icon' => 'actions-add',
                         'params' => array(
                             'table' => 'be_groups',
                             'pid' => '0',
@@ -98,7 +98,7 @@ return array(
                     'list' => array(
                         'type' => 'script',
                         'title' => 'LLL:EXT:lang/locallang_tca.xlf:be_users.usergroup_list_title',
-                        'icon' => 'EXT:backend/Resources/Public/Images/FormFieldWizard/wizard_list.gif',
+                        'icon' => 'actions-system-list-open',
                         'params' => array(
                             'table' => 'be_groups',
                             'pid' => '0'
@@ -163,14 +163,14 @@ return array(
                         'module' => array(
                             'name' => 'wizard_edit',
                         ),
-                        'icon' => 'EXT:backend/Resources/Public/Images/FormFieldWizard/wizard_edit.gif',
+                        'icon' => 'actions-open',
                         'popup_onlyOpenIfSelected' => 1,
                         'JSopenParams' => 'width=800,height=600,status=0,menubar=0,scrollbars=1'
                     ),
                     'add' => array(
                         'type' => 'script',
                         'title' => 'LLL:EXT:lang/locallang_tca.xlf:file_mountpoints_add_title',
-                        'icon' => 'EXT:backend/Resources/Public/Images/FormFieldWizard/wizard_add.gif',
+                        'icon' => 'actions-add',
                         'params' => array(
                             'table' => 'sys_filemounts',
                             'pid' => '0',
@@ -183,7 +183,7 @@ return array(
                     'list' => array(
                         'type' => 'script',
                         'title' => 'LLL:EXT:lang/locallang_tca.xlf:file_mountpoints_list_title',
-                        'icon' => 'EXT:backend/Resources/Public/Images/FormFieldWizard/wizard_list.gif',
+                        'icon' => 'actions-system-list-open',
                         'params' => array(
                             'table' => 'sys_filemounts',
                             'pid' => '0'
diff --git a/typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Configuration/TCA/tx_blogexample_domain_model_blog.php b/typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Configuration/TCA/tx_blogexample_domain_model_blog.php
index 7f808d4775a7..677e2555a057 100644
--- a/typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Configuration/TCA/tx_blogexample_domain_model_blog.php
+++ b/typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Configuration/TCA/tx_blogexample_domain_model_blog.php
@@ -168,14 +168,14 @@ return array(
                          'module' => array(
                              'name' => 'wizard_edit',
                          ),
-                         'icon' => 'EXT:backend/Resources/Public/Images/FormFieldWizard/wizard_edit.gif',
+                         'icon' => 'actions-open',
                          'popup_onlyOpenIfSelected' => 1,
                          'JSopenParams' => 'width=800,height=600,status=0,menubar=0,scrollbars=1',
                      ),
                      'add' => array(
                          'type' => 'script',
                          'title' => 'Create new',
-                         'icon' => 'EXT:backend/Resources/Public/Images/FormFieldWizard/wizard_add.gif',
+                         'icon' => 'actions-add',
                          'params' => array(
                              'table'=>'fe_users',
                              'pid' => '###CURRENT_PID###',
diff --git a/typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Configuration/TCA/tx_blogexample_domain_model_post.php b/typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Configuration/TCA/tx_blogexample_domain_model_post.php
index 646d7b16ed41..9393e73533be 100644
--- a/typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Configuration/TCA/tx_blogexample_domain_model_post.php
+++ b/typo3/sysext/extbase/Tests/Functional/Fixtures/Extensions/blog_example/Configuration/TCA/tx_blogexample_domain_model_post.php
@@ -115,14 +115,14 @@ return array(
                          'module' => array(
                              'name' => 'wizard_edit',
                          ),
-                         'icon' => 'EXT:backend/Resources/Public/Images/FormFieldWizard/wizard_edit.gif',
+                         'icon' => 'actions-open',
                          'popup_onlyOpenIfSelected' => 1,
                          'JSopenParams' => 'width=800,height=600,status=0,menubar=0,scrollbars=1',
                      ),
                      'add' => array(
                          'type' => 'script',
                          'title' => 'Create new',
-                         'icon' => 'EXT:backend/Resources/Public/Images/FormFieldWizard/wizard_add.gif',
+                         'icon' => 'actions-add',
                          'params' => array(
                              'table'=>'tx_blogexample_domain_model_person',
                              'pid' => '###CURRENT_PID###',
diff --git a/typo3/sysext/frontend/Configuration/TCA/sys_template.php b/typo3/sysext/frontend/Configuration/TCA/sys_template.php
index b631f0172966..b28801931324 100644
--- a/typo3/sysext/frontend/Configuration/TCA/sys_template.php
+++ b/typo3/sysext/frontend/Configuration/TCA/sys_template.php
@@ -160,13 +160,13 @@ return array(
                             'name' => 'wizard_edit',
                         ),
                         'popup_onlyOpenIfSelected' => 1,
-                        'icon' => 'EXT:backend/Resources/Public/Images/FormFieldWizard/wizard_edit.gif',
+                        'icon' => 'actions-open',
                         'JSopenParams' => 'width=800,height=600,status=0,menubar=0,scrollbars=1'
                     ),
                     'add' => array(
                         'type' => 'script',
                         'title' => 'LLL:EXT:frontend/Resources/Private/Language/locallang_tca.xlf:sys_template.basedOn_add',
-                        'icon' => 'EXT:backend/Resources/Public/Images/FormFieldWizard/wizard_add.gif',
+                        'icon' => 'actions-add',
                         'params' => array(
                             'table' => 'sys_template',
                             'pid' => '###CURRENT_PID###',
-- 
GitLab