Bold , Italic , Underline Icons are coming differently
Hi Team,
In AEM 6.5.21 Bold , Italic , Underline icons are coming fine like below:

But now in Aemaacs its coming different.

Please help me with the same.
Thanks,
Vivek
Hi Team,
In AEM 6.5.21 Bold , Italic , Underline icons are coming fine like below:

But now in Aemaacs its coming different.

Please help me with the same.
Thanks,
Vivek
Hi @viveksr1 you can change the icon by using the following steps:
Create nodes for individual icons under it.
On each of the individual icon nodes, specify a Coral icon and a command to map to the icon.
Below is a sample snippet to map the command Bold to the Coral icon named textColor.
<text jcr:primaryType="nt:unstructured" sling:resourceType="cq/gui/components/authoring/dialog/richtext" name="./text" useFixedInlineToolbar="{Boolean}true">
<rtePlugins jcr:primaryType="nt:unstructured">
<format jcr:primaryType="nt:unstructured" features="bold,italic"/>
</rtePlugins>
<uiSettings jcr:primaryType="nt:unstructured">
<cui jcr:primaryType="nt:unstructured">
<inline jcr:primaryType="nt:unstructured"
toolbar="[format#bold,format#italic,format#underline,links#modifylink,links#unlink]">
</inline>
<icons jcr:primaryType="nt:unstructured">
<bold jcr:primaryType="nt:unstructured"
command="format#bold"
icon="textColor"/>
</icons>
</cui>
</uiSettings>
</text>Generated Output:

Following the instructions in: https://experienceleague.adobe.com/en/docs/experience-manager-65/content/sites/administering/operations/rich-text-editor#:~:text=Customize%20mapping%20between%20toolbar%20icons,to%20map%20to%20the%20icon.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.