Merge branch 'staging' into cursor
This commit is contained in:
commit
c64feae7bf
@ -24,10 +24,16 @@ body
|
|||||||
right: 0;
|
right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Remove margin-top for the first element */
|
||||||
body > *:first-child {
|
body > *:first-child {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* If the magic line is the first element, remove margin-top for the next one */
|
||||||
|
body > .non-realtime:first-child + * {
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.cke_editable
|
.cke_editable
|
||||||
{
|
{
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
|
|||||||
@ -38,7 +38,7 @@ define([
|
|||||||
|
|
||||||
module.main = function (userDoc, cb) {
|
module.main = function (userDoc, cb) {
|
||||||
var inner;
|
var inner;
|
||||||
if (userDoc instanceof Element || userDoc instanceof HTMLElement) {
|
if (userDoc && userDoc.tagName) {
|
||||||
inner = userDoc;
|
inner = userDoc;
|
||||||
} else {
|
} else {
|
||||||
try {
|
try {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user