This is a very small and not really important issue but it would be good to fix this whenever it's possible.

When CKEditor appear, select-boxes (Format, Font & Size) display not properly (attach current-view.png). But if we gonna add the following code ...

.cke_openbutton {
    height: 20px !important;
}

... into ckeditor.css or add height: 20px !important; to any/all CKEditor css theme files where .cke_openbutton class appers, then those select-boxes would look better (attach better-view.png)

CommentFileSizeAuthor
better-view.png871 bytesVlad Stratulat
current-view.png845 bytesVlad Stratulat

Comments

mkesicki’s picture

Status: Needs work » Postponed (maintainer needs more info)

Ok, thx for post. Have you tired your setting with other CKEditor skins ? There are 3 built in skins : Kama ,Office2003 and V2. Please check this an give us a note.

Vlad Stratulat’s picture

Status: Postponed (maintainer needs more info) » Closed (won't fix)

Hey, good that you asked about other CKEditor skins, because my settings would broke Kama & Office2003.
I thought it's a module's visual bug, but after i figured out that it's library's bug which appear even here http://ckeditor.com/demo (Skins tab).

I think I'll write to CKEditor's staff and propose to them to make these changes.

But if someone from Drupal users would like to change this in their site, just add the following styles in sites/all/modules/ckeditor/ckeditor.css file.

.cke_skin_kama .cke_openbutton {
  height: 21px;
}
.cke_skin_office2003 .cke_openbutton {
  height: 22px;
}
.cke_skin_v2 .cke_openbutton {
  height: 20px;
}

I'm closing this issues because it's not module's bug. Sorry for that =)

Vlad Stratulat’s picture

Issue summary: View changes

fixed text