P tags in CKEditor using IE show up with a resize box, even if they are empty. This seems to be because there is a min-width set on the tag, explained here:

http://stackoverflow.com/questions/18976267/ckeditor-ie-resizable-frame-...

Removing the max-width using developer tools seems to fix the issue. The code is question is located at line 16 of sass/style.scss:

p,
blockquote,
pre,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary,
dt,
dd,
li {
  max-width: $line-length-normal;
}
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

jason@blaze created an issue. See original summary.

jason@blaze’s picture

Title: Resize box show up in P tag with CKEditor in IE » Resize box shows up in P tag with CKEditor in IE
jason@blaze’s picture

Quick patch for my personal needs as a client has been complaining about this.