Richtext's plugins doesn't see well in IE9! Help me please... | Community
Skip to main content
kennyhank
Level 3
November 12, 2015
Solved

Richtext's plugins doesn't see well in IE9! Help me please...

  • November 12, 2015
  • 4 replies
  • 970 views

Hi!

We have a problem with richtext the plugins doesn't see well in IE9. In Chrome and other version of IE work perfectly.

 

Any help regarding this appreciated?

Thanks.

K.

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Lokesh_Shivalingaiah

OOB css comes from here /etc/clientlibs/granite/coralui2/optional/rte/css/cui-rte.css

and as you mentioned, some of them may get override for other css added. and in such cases, we may have to add extra css like what you have done to handle the same.

4 replies

smacdonald2008
Level 10
November 12, 2015
What CQ version are you using?
kennyhank
kennyhankAuthor
Level 3
November 18, 2015

i'm using AEM 6.0 SP 2.0, try to find a solution i see this code in (/etc/designs/mynamespace/css_common/css/base.css):

/* Bootstrap overrides */
* {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}
*:before,
*:after {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
}

and my richtext have the property externalStyleSheets = /etc/clientlibs/mynamespace/components/css/rte.css

in that css add the previously code and now work perfectly, but in fact i don't know why works fine with this change!

Greetings K.

Lokesh_Shivalingaiah
Lokesh_ShivalingaiahAccepted solution
Level 10
November 18, 2015

OOB css comes from here /etc/clientlibs/granite/coralui2/optional/rte/css/cui-rte.css

and as you mentioned, some of them may get override for other css added. and in such cases, we may have to add extra css like what you have done to handle the same.

kennyhank
kennyhankAuthor
Level 3
November 18, 2015

Well my previously solution carry me some bugs, right now i include in my externalStyleSheets = /etc/clientlibs/mynamespace/components/css/rte.css the next:

/* Bootstrap overrides for ie9 toolbar*/
button.x-btn-text {
         box-sizing: border-box;
}

and works fine, and its just a change for me and doesn't affect others teams, i think was a better solution, Thanks smacdonald2008 and bsloki for your attention and answers.