Ignorar la carpeta venv en Git
This commit is contained in:
+114
@@ -0,0 +1,114 @@
|
||||
import ClassicEditorBase from '@ckeditor/ckeditor5-editor-classic/src/classiceditor';
|
||||
import Essentials from '@ckeditor/ckeditor5-essentials/src/essentials';
|
||||
import UploadAdapter from '@ckeditor/ckeditor5-adapter-ckfinder/src/uploadadapter';
|
||||
import Autoformat from '@ckeditor/ckeditor5-autoformat/src/autoformat';
|
||||
import Bold from '@ckeditor/ckeditor5-basic-styles/src/bold';
|
||||
import Italic from '@ckeditor/ckeditor5-basic-styles/src/italic';
|
||||
import Underline from '@ckeditor/ckeditor5-basic-styles/src/underline';
|
||||
import Strikethrough from '@ckeditor/ckeditor5-basic-styles/src/strikethrough';
|
||||
import Code from '@ckeditor/ckeditor5-basic-styles/src/code';
|
||||
import Subscript from '@ckeditor/ckeditor5-basic-styles/src/subscript';
|
||||
import Superscript from '@ckeditor/ckeditor5-basic-styles/src/superscript';
|
||||
import BlockQuote from '@ckeditor/ckeditor5-block-quote/src/blockquote';
|
||||
import Heading from '@ckeditor/ckeditor5-heading/src/heading';
|
||||
import Image from '@ckeditor/ckeditor5-image/src/image';
|
||||
import ImageCaption from '@ckeditor/ckeditor5-image/src/imagecaption';
|
||||
import ImageStyle from '@ckeditor/ckeditor5-image/src/imagestyle';
|
||||
import ImageToolbar from '@ckeditor/ckeditor5-image/src/imagetoolbar';
|
||||
import Link from '@ckeditor/ckeditor5-link/src/link';
|
||||
import List from '@ckeditor/ckeditor5-list/src/list';
|
||||
import Paragraph from '@ckeditor/ckeditor5-paragraph/src/paragraph';
|
||||
import ImageResize from '@ckeditor/ckeditor5-image/src/imageresize';
|
||||
import SimpleUploadAdapter from '@ckeditor/ckeditor5-upload/src/adapters/simpleuploadadapter';
|
||||
import Alignment from '@ckeditor/ckeditor5-alignment/src/alignment';
|
||||
import PasteFromOffice from '@ckeditor/ckeditor5-paste-from-office/src/pastefromoffice';
|
||||
import Font from '@ckeditor/ckeditor5-font/src/font';
|
||||
import MediaEmbed from '@ckeditor/ckeditor5-media-embed/src/mediaembed';
|
||||
import RemoveFormat from '@ckeditor/ckeditor5-remove-format/src/removeformat';
|
||||
import Table from '@ckeditor/ckeditor5-table/src/table';
|
||||
import TableToolbar from '@ckeditor/ckeditor5-table/src/tabletoolbar';
|
||||
import TableProperties from '@ckeditor/ckeditor5-table/src/tableproperties';
|
||||
import TableCellProperties from '@ckeditor/ckeditor5-table/src/tablecellproperties';
|
||||
import Indent from '@ckeditor/ckeditor5-indent/src/indent';
|
||||
import IndentBlock from '@ckeditor/ckeditor5-indent/src/indentblock';
|
||||
import Highlight from '@ckeditor/ckeditor5-highlight/src/highlight';
|
||||
import TodoList from '@ckeditor/ckeditor5-list/src/todolist';
|
||||
import CodeBlock from '@ckeditor/ckeditor5-code-block/src/codeblock';
|
||||
import ListProperties from '@ckeditor/ckeditor5-list/src/listproperties';
|
||||
import SourceEditing from '@ckeditor/ckeditor5-source-editing/src/sourceediting';
|
||||
import GeneralHtmlSupport from '@ckeditor/ckeditor5-html-support/src/generalhtmlsupport';
|
||||
import ImageInsert from '@ckeditor/ckeditor5-image/src/imageinsert';
|
||||
import { TableCaption } from '@ckeditor/ckeditor5-table';
|
||||
import WordCount from '@ckeditor/ckeditor5-word-count/src/wordcount';
|
||||
import Mention from '@ckeditor/ckeditor5-mention/src/mention';
|
||||
import { Style } from '@ckeditor/ckeditor5-style';
|
||||
import { HorizontalLine } from '@ckeditor/ckeditor5-horizontal-line';
|
||||
import {LinkImage} from "@ckeditor/ckeditor5-link";
|
||||
import {HtmlEmbed} from "@ckeditor/ckeditor5-html-embed";
|
||||
import { FullPage } from '@ckeditor/ckeditor5-html-support';
|
||||
import { SpecialCharacters } from '@ckeditor/ckeditor5-special-characters';
|
||||
import { SpecialCharactersEssentials } from '@ckeditor/ckeditor5-special-characters';
|
||||
import { FileUploader } from '@liqd/ckeditor5-file-uploader';
|
||||
import { ShowBlocks } from '@ckeditor/ckeditor5-show-blocks';
|
||||
import { SelectAll } from '@ckeditor/ckeditor5-select-all';
|
||||
import { FindAndReplace } from '@ckeditor/ckeditor5-find-and-replace';
|
||||
import FullScreen from '@pikulinpw/ckeditor5-fullscreen';
|
||||
|
||||
export default class ClassicEditor extends ClassicEditorBase {
|
||||
}
|
||||
|
||||
ClassicEditor.builtinPlugins = [
|
||||
Essentials,
|
||||
UploadAdapter,
|
||||
CodeBlock,
|
||||
Autoformat,
|
||||
Bold,
|
||||
Italic,
|
||||
Underline,
|
||||
Strikethrough,
|
||||
Code,
|
||||
Subscript,
|
||||
Superscript,
|
||||
BlockQuote,
|
||||
Heading,
|
||||
Image,
|
||||
ImageCaption,
|
||||
ImageStyle,
|
||||
ImageToolbar,
|
||||
ImageResize,
|
||||
Link,
|
||||
List,
|
||||
Paragraph,
|
||||
Alignment,
|
||||
Font,
|
||||
PasteFromOffice,
|
||||
SimpleUploadAdapter,
|
||||
MediaEmbed,
|
||||
RemoveFormat,
|
||||
Table, TableToolbar,
|
||||
TableCaption,
|
||||
TableProperties,
|
||||
TableCellProperties,
|
||||
Indent,
|
||||
IndentBlock,
|
||||
Highlight,
|
||||
TodoList,
|
||||
ListProperties,
|
||||
SourceEditing,
|
||||
GeneralHtmlSupport,
|
||||
ImageInsert,
|
||||
WordCount,
|
||||
Mention,
|
||||
Style,
|
||||
HorizontalLine,
|
||||
LinkImage,
|
||||
HtmlEmbed,
|
||||
FullPage,
|
||||
SpecialCharacters,
|
||||
SpecialCharactersEssentials,
|
||||
FileUploader,
|
||||
ShowBlocks,
|
||||
SelectAll,
|
||||
FindAndReplace,
|
||||
FullScreen
|
||||
];
|
||||
@@ -0,0 +1,47 @@
|
||||
/** Todo list **/
|
||||
|
||||
.ck .todo-list input {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ck .todo-list__checkmark:after {
|
||||
height: 6px !important;
|
||||
}
|
||||
|
||||
.ck .todo-list__checkmark {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.ck.ck-content.ck-editor__editable {
|
||||
min-height: 300px;
|
||||
}
|
||||
|
||||
.ck h2 {
|
||||
color: inherit;
|
||||
background: inherit;
|
||||
}
|
||||
|
||||
form .aligned .ck ul li {
|
||||
list-style: inherit;
|
||||
}
|
||||
|
||||
form .aligned .ck ul {
|
||||
margin-left: 1.5em;
|
||||
padding-left: inherit;
|
||||
}
|
||||
.ck-word-count{
|
||||
display: flex;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.ck-word-count__words{
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.ck.ck-editor {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
}
|
||||
.ck-editor-container{
|
||||
width: 100%;
|
||||
}
|
||||
Reference in New Issue
Block a user