ckeditor-readmore.css |
css/ckeditor-readmore.css |
|
/**
* CKEditor Read more styles.
*/
.ckeditor-readmore-wrapper .ckeditor-readmore {
display: none;
} |
ckeditor_readmore.info.yml |
ckeditor_readmore.info.yml |
|
ckeditor_readmore.info.yml |
ckeditor_readmore.libraries.yml |
ckeditor_readmore.libraries.yml |
|
ckeditor_readmore.libraries.yml |
ckeditor_readmore.module |
ckeditor_readmore.module |
|
|
README.txt |
README.txt |
|
CKEditor Read More
INTRODUCTION
============
This module adds a new element to CKEditor which allows users to hide selected
content and toggle it with "Read more" element click.
Installation
============
1. Enable the module
2. Drag and… |
readmore.css |
src/readmore/readmore.css |
|
/* clearfix */
.ckeditor-readmore:before,
.ckeditor-readmore:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.ckeditor-readmore:after {
clear: both;
}
.ckeditor-readmore {
padding: 20px;
position: relative;
border: 1px… |
ReadMore.php |
src/Plugin/CKEditorPlugin/ReadMore.php |
Drupal\ckeditor_readmore\Plugin\CKEditorPlugin |
|