Esta conversa foi bloqueada devido à inatividade. Crie uma nova publicação.
Nível 1
Nível 2
Faça login na Comunidade
Faça logon para exibir todas as medalhas
Esta conversa foi bloqueada devido à inatividade. Crie uma nova publicação.
I have override /libs/cq/gui/components/authoring/editors/clientlibs/core/css/overlay.less to apps/cq/gui/components/authoring/editors/clientlibs/core/css/overlay.less. and i have change changed background color like below.
/* placeholder */
.cq-Overlay--placeholder {
color: rgba(0,0,0,.3);
border-color: rgba(0,0,0,.3);
/* background-color: rgba(255,255,255,.05);*/
background-color: rgba(255,255,255,.25);
border-style: solid;
border-width: 0.125rem;
margin: -0.125rem;
}
Still i am getting old values. what is the recommended way to override aem ootb stylesheet?
Thanks,
Kiran
Solucionado! Ir para a Solução.
It is working fine. I have override the /libs/cq/gui/components/authoring/editors/clientlibs/core/css/overlay.less into apps and declared in css.txt. After that it is working fine. Previously i have not added css.txt.
Thanks for your help.
I think we cannot overlay clientlibs in aem, all clientlibs which has same category will be loaded.
If you just want to change a single style then create a new clientlibs with category cq.authoring.dialog and add css rule for background
/* placeholder */
.cq-Overlay .cq-Overlay--placeholder {
background-color: rgba(255,255,255,.25);
}
Hi Arun,
I have created a new clientlibs, under that created new less file and add the above code.
cq.authoring.dialog i have added as dependency in my clientlibs, but still it is loading from libs.
Please let me know how to resolve this issue.
Thanks,
Kiran
Visualizações
respostas
Total de curtidas
Visualizações
respostas
Total de curtidas
Hi Arun,
Thank you for looking into this issue. I am checking at page edit. If you need any further information let me know?
Thanks,
Kiran
Visualizações
respostas
Total de curtidas
Visualizações
respostas
Total de curtidas
It is working fine. I have override the /libs/cq/gui/components/authoring/editors/clientlibs/core/css/overlay.less into apps and declared in css.txt. After that it is working fine. Previously i have not added css.txt.
Thanks for your help.
Agreed with Arun. Instead of overlaying file, creating a custom clientlib is cleaner approach. That way you would be upgrade safe.
kiranv43511543 Overlaying of OOTB should be avoided to reduce tech debt to AEM upgrades . Recommended way is to create a separate client lib with just one css as mentioned by arunpatidar26. Just make sure, the client lib category is same as of the OOTB client lib which you want to change. As long as you follow it, it will work for you. For this case, the correct category is - cq.authoring.editor.core, cq.authoring.editor
Visualizações
Curtida
respostas
Visualizações
Curtida
respostas