Skip to content

Commit

Permalink
update ckeditor autosave plugin to v0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
dleffler committed Dec 25, 2016
1 parent d122df1 commit 79a5dd1
Show file tree
Hide file tree
Showing 8 changed files with 11,248 additions and 2,115 deletions.
33 changes: 26 additions & 7 deletions external/editors/ckeditor/plugins/autosave/css/autosave.css
Original file line number Diff line number Diff line change
Expand Up @@ -68,21 +68,24 @@ table.diff .empty {
table.diff .replace {
background-color:#FFC
}
table.diff .delete {
background-color:#FCC;
table.diff .delete {
background-color: #FCC;
width: 380px;
-ms-word-break: break-word;
word-break: break-word;
}
}

table.diff .skip {
background-color:#EFEFEF;
border:1px solid #AAA;
border-right:1px solid #BBC;
}
table.diff .insert {
background-color:#CFC;
table.diff .insert {
background-color: #CFC;
width: 380px;
-ms-word-break: break-word;
word-break: break-word;
}
}
table.diff th.author {
text-align:right;
border-top:1px solid #BBC;
Expand All @@ -91,4 +94,20 @@ table.diff th.author {
del{background-color:#EE9999 !important;text-decoration: underline !important}
ins{background-color:#99EE99 !important;text-decoration: underline !important}

a.cke_dialog_autosave_ok span {width:auto!important}
a.cke_dialog_autosave_ok span {width:auto!important}

div.autoSaveMessage div{left:42%;position:absolute;padding:2px;top:4px;font-weight:bold}

.hidden {
opacity: 0;
visibility: hidden;
}

.show {
opacity: 1;
visibility: visible;
-moz-transition: visibility 0.2s linear, opacity 0.2s linear;
-o-transition: visibility 0.2s linear, opacity 0.2s linear;
-webkit-transition: visibility 0.2s linear, opacity 0.2s linear;
transition: visibility 0.2s linear, opacity 0.2s linear;
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

0 comments on commit 79a5dd1

Please sign in to comment.