Skip to content

Commit

Permalink
Fixed: Padding in content of div-based editor puts editing area under…
Browse files Browse the repository at this point in the history
… bottom UI space.
  • Loading branch information
oleq authored and Reinmar committed Dec 27, 2012
1 parent 8341c16 commit 0091ef0
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion skins/kama/editor_ie7.css
Original file line number Diff line number Diff line change
Expand Up @@ -192,4 +192,4 @@ a.cke_button
{
/* Positioning is required for IE7 on text inputs not to stretch dialog horizontally. (#8971)*/
position: relative;
}
}
6 changes: 5 additions & 1 deletion skins/kama/mainui.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Special outer level classes used in this file:
-webkit-border-radius: 5px;
border-radius: 5px;
border: 1px solid #D3D3D3;

/* Spacing between the outer and the inner boundaries. */
padding: 5px;
}
Expand Down Expand Up @@ -192,4 +192,8 @@ Special outer level classes used in this file:
overflow: auto;
padding: 0 8px;
outline-style: none;

-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
2 changes: 1 addition & 1 deletion skins/moono/editor_ie7.css
Original file line number Diff line number Diff line change
Expand Up @@ -203,4 +203,4 @@ a.cke_button
{
/* Positioning is required for IE7 on text inputs not to stretch dialog horizontally. (#8971)*/
position: relative;
}
}
4 changes: 4 additions & 0 deletions skins/moono/mainui.css
Original file line number Diff line number Diff line change
Expand Up @@ -218,4 +218,8 @@ Special outer level classes used in this file:
overflow: auto;
padding: 0 8px;
outline-style: none;

-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

0 comments on commit 0091ef0

Please sign in to comment.