-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Добавил плагины textwatcher, textmatch, autocomplete
- Loading branch information
epsilonn
committed
Jul 3, 2019
1 parent
2e332d1
commit 92ace01
Showing
12 changed files
with
7,606 additions
and
590 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. | ||
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
*/ | ||
|
||
.cke_autocomplete_panel | ||
{ | ||
position: absolute; | ||
display: none; | ||
box-sizing: border-box; | ||
width: 200px; | ||
max-height: 300px; | ||
overflow: auto; | ||
padding: 0; | ||
margin: 0; | ||
list-style: none; | ||
background: #FFF; | ||
border: 1px solid #b6b6b6; | ||
border-bottom-color: #999; | ||
border-radius: 3px; | ||
font: 12px Arial, Helvetica, Tahoma, Verdana, Sans-Serif; | ||
} | ||
.cke_autocomplete_opened | ||
{ | ||
display: block; | ||
} | ||
.cke_autocomplete_panel > li | ||
{ | ||
padding: 5px; | ||
} | ||
.cke_autocomplete_panel > li:hover | ||
{ | ||
cursor: pointer; | ||
} | ||
.cke_autocomplete_selected, .cke_autocomplete_panel > li:hover | ||
{ | ||
background-color: #EFF0EF; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ckeditor
updated
12 files
+33 −0 | core/extensions/dom.documentfragment.js | |
+14 −0 | core/extensions/dom.nodelist.js | |
+227 −0 | core/extensions/dom.range.js | |
+8 −2 | core/loader.js | |
+1,191 −97 | core/tools.js | |
+1,488 −0 | plugins/autocomplete/plugin.js | |
+162 −0 | plugins/autocomplete/samples/customview.html | |
+172 −0 | plugins/autocomplete/samples/smiley.html | |
+97 −0 | plugins/autocomplete/samples/utils.js | |
+38 −0 | plugins/autocomplete/skins/default.css | |
+331 −0 | plugins/textmatch/plugin.js | |
+295 −0 | plugins/textwatcher/plugin.js |