I am trying to add the styles plugin to one of my newly created component. I am following the instructions from https://experienceleague.adobe.com/docs/experience-manager-65/administering/operations/configure-ric.... The Documentation says, addition of the 'styles' node under rtePlugin node should automatically render the plugin symbol on dialog. But even after adding the necessary properties, some features, I am still unable to view any styles plugin icon in both dialog and dialog full screen. I have attached the code i am using for _cq_dialog.
jcr:primaryType="nt:unstructured"
jcr:title="Temp Dialog"
sling:resourceType="cq/gui/components/authoring/dialog">
<content
jcr:primaryType="nt:unstructured"
sling:resourceType="granite/ui/components/coral/foundation/container">
<items jcr:primaryType="nt:unstructured">
<tab1
jcr:primaryType="nt:unstructured"
jcr:title="Properties"
sling:resourceType="granite/ui/components/coral/foundation/container"
margin="{Boolean}true">
<items jcr:primaryType="nt:unstructured">
<temp
jcr:primaryType="nt:unstructured"
sling:resourceType="cq/gui/components/authoring/dialog/richtext"
externalStyleSheets="/apps/new-site/components/temp/clientlibs/less/edit.less"
name="./temp"
useFixedInlineToolbar="{Boolean}true">
<rtePlugins jcr:primaryType="nt:unstructured">
<misctools jcr:primaryType="nt:unstructured">
<specialCharsConfig jcr:primaryType="nt:unstructured">
<chars jcr:primaryType="nt:unstructured">
<default_registered
jcr:primaryType="nt:unstructured"
entity="&reg;"
name="registered"/>
<default_trademark
jcr:primaryType="nt:unstructured"
entity="&trade;"
name="trademark"/>
</chars>
</specialCharsConfig>
</misctools>
<styles
jcr:primaryType="nt:unstructured"
features="*">
<styles jcr:primaryType="nt:unstructured">
<edit
jcr:primaryType="nt:unstructured"
cssName="someClass"
text="edit"/>
</styles>
</styles>
</rtePlugins>
</temp>
</items>
</tab1>
</items>
</content>
</jcr:root>