Skip to content

Commit

Permalink
Merge pull request #38 from Samuell1/develop
Browse files Browse the repository at this point in the history
Update 1.0.7
  • Loading branch information
Samuell1 authored Sep 3, 2017
2 parents a270f52 + ebf7c44 commit 8fc12ed
Show file tree
Hide file tree
Showing 16 changed files with 238 additions and 1,862 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ http://octobercms.com/plugin/samuell-contenteditor

* file - Content block filename to edit, optional. If doesnt exists it will autocreate
* fixture - Fixed name for content block, useful for inline texts (headers, spans...)
* tools - List of enabled tools, comma separated (for all use *)
* tools - List of enabled tools, comma separated (for all default tools use `*` or leave empty to get all tools defined in settings of Content Editor)

*Example:*
```
Expand Down
28 changes: 28 additions & 0 deletions assets/additional-css.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

/*
Default classes for content editor
*/

/* Left align */
.align-left {
clear: initial;
float: left;
margin-right: 0.5em;
}
/* Right align */
.align-right {
clear: initial;
float: right;
margin-left: 0.5em;
}

/* Alignment styles for text in editable regions */
.text-center {
text-align: center;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
Loading

0 comments on commit 8fc12ed

Please sign in to comment.