Skip to content

Commit

Permalink
Merge branch 't/9947a'
Browse files Browse the repository at this point in the history
  • Loading branch information
oleq committed Feb 21, 2013
2 parents 9f27ae2 + f370f54 commit 556cb20
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions skins/kama/mainui.css
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ Special outer level classes used in this file:
border: 1px solid black;
}


/* Make the main spaces enlarge to hold potentially floated content. */
.cke_top,
.cke_contents,
Expand All @@ -126,6 +127,12 @@ Special outer level classes used in this file:
overflow: hidden;
}

/* Allow breaking toolbars when in a narrow editor. (#9947) */
.cke_top
{
white-space: normal;
}

/* The resizer is the small UI element that is rendered at the bottom right
part of the editor. It makes is possible to resize the editor UI. */
.cke_resizer
Expand Down
3 changes: 3 additions & 0 deletions skins/moono/mainui.css
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ Special outer level classes used in this file:
border-bottom: 1px solid #b6b6b6;
padding: 6px 8px 2px;

/* Allow breaking toolbars when in a narrow editor. (#9947) */
white-space: normal;

-moz-box-shadow: 0 1px 0 #fff inset;
-webkit-box-shadow: 0 1px 0 #fff inset;
box-shadow: 0 1px 0 #fff inset;
Expand Down

1 comment on commit 556cb20

@jimmykane
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I still experience this issue inside a fieldset.

Please sign in to comment.