Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

what is the recommended way to override aem ootb stylesheet?

Avatar

Level 3

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

1 Accepted Solution

Avatar

Correct answer by
Level 3

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.

1802027_pastedImage_0.png

Thanks for your help.

View solution in original post

8 Replies

Avatar

Community Advisor

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);

  }



Arun Patidar

Avatar

Level 3

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.

1794985_pastedImage_0.png

Please let me know  how to resolve this issue.

Thanks,

Kiran

Avatar

Community Advisor

could you please let me know which page you are checking?Is it site console or editing page?

I am checking page edit

Screenshot 2019-07-19 at 5.21.04 PM.png



Arun Patidar

Avatar

Level 3

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

Avatar

Community Advisor

I am trying in 6.3, works for me.

It could be caching issue, could you please clear browser cache or try in incognito mode.

If doesn't work try with

?debugClientLibs=true



Arun Patidar

Avatar

Correct answer by
Level 3

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.

1802027_pastedImage_0.png

Thanks for your help.

Avatar

Employee Advisor

Agreed with Arun. Instead of overlaying file, creating a custom clientlib is cleaner approach. That way you would be upgrade safe.

Avatar

Employee Advisor

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