Skip to content

Commit

Permalink
Merge branch 't/11379'
Browse files Browse the repository at this point in the history
  • Loading branch information
Reinmar committed Jan 9, 2014
2 parents 32485fa + c283bac commit 878898d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ CKEditor 4 Changelog
* [#11186](http://dev.ckeditor.com/ticket/11186): Introduced the [`widgets.repository.addUpcastCallback`](http://docs.ckeditor.com/#!/api/CKEDITOR.plugins.widget.repository-method-addUpcastCallback) method which allows to block upcasting given element to a widget.
* [#11307](http://dev.ckeditor.com/ticket/11307): Fixed: Paste as plain text conflict with the [MooTools](http://mootools.net) library.
* [#11140](http://dev.ckeditor.com/ticket/11140): [IE11] Fixed: Anchors are not draggable.
* [#11379](http://dev.ckeditor.com/ticket/11379): Changed default contents' `line-height` to unitless values to avoid huge text overlapping (like in [#9696](http://dev.ckeditor.com/ticket/9696)).


## CKEditor 4.3.1
Expand Down
4 changes: 2 additions & 2 deletions contents.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ body
.cke_editable
{
font-size: 13px;
line-height: 1.6em;
line-height: 1.6;
}

blockquote
Expand Down Expand Up @@ -64,7 +64,7 @@ ol,ul,dl
h1,h2,h3,h4,h5,h6
{
font-weight: normal;
line-height: 1.2em;
line-height: 1.2;
}

hr
Expand Down
6 changes: 3 additions & 3 deletions samples/inlineall.html
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,14 @@
{
font-family: "Arial Black",arial-black;
font-size: 4.6em;
line-height: 1.1em;
line-height: 1.1;
text-transform: uppercase;
}

#headerLeft h3
{
font-size: 2.3em;
line-height: 1.1em;
line-height: 1.1;
margin: .2em 0 0;
color: #666;
}
Expand All @@ -123,7 +123,7 @@

#headerRight p
{
line-height: 1.8em;
line-height: 1.8;
text-align: justify;
margin: 0;
}
Expand Down
2 changes: 1 addition & 1 deletion samples/sample.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ For licensing, see LICENSE.md or http://ckeditor.com/license

html, body, h1, h2, h3, h4, h5, h6, div, span, blockquote, p, address, form, fieldset, img, ul, ol, dl, dt, dd, li, hr, table, td, th, strong, em, sup, sub, dfn, ins, del, q, cite, var, samp, code, kbd, tt, pre
{
line-height: 1.5em;
line-height: 1.5;
}

body
Expand Down

0 comments on commit 878898d

Please sign in to comment.