Replaced the FCKeditor with the new CKeditor v4. Implemented a plugin that allows dragging and dropping one or more files into the CKeditor - plugin name is dndfiles. Modified the save toolbar button on the CKeditor so that it behaves like a submit button. Implemented a timestamp plugin that behaves the same way as the old timestamp button on FCKeditor. Added a plugin to the CKeditor that allows typing LaTeX syntax.

This commit is contained in:
Dario Milicic
2014-08-06 15:19:55 +02:00
parent a883408085
commit d05e6016b7
3890 changed files with 169233 additions and 112 deletions
+35
View File
@@ -0,0 +1,35 @@
/*
Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.md or http://ckeditor.com/license
*/
.cke_widget_wrapper:hover:after {
content: "id: " attr(data-cke-widget-id);
position: absolute;
top: 0;
right: 0;
padding: 2px 4px;
background: #EEE;
border: solid 1px #DDD;
border-radius: 2px;
color: #BBB;
font: bold 10px sans-serif;
}
.align-left {
float: left;
margin-right: 20px;
}
.align-right {
float: right;
margin-left: 20px;
}
.align-center {
text-align: center;
}
.align-center > figure {
display: inline-block;
}