Skip to content

Commit

Permalink
Merge pull request #8 from ppfeufer/development
Browse files Browse the repository at this point in the history
editor style moved to local.py instead of css
  • Loading branch information
ppfeufer authored Jun 13, 2021
2 parents b046e56 + 5706598 commit 1fef4fc
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).


## [0.1.0-beta.7] - 2021-06-13

### Changed

- CSS for cKeditor reverted, it's better as a config in `local.py
Add the following to your `local.py`
```python
CKEDITOR_CONFIGS = {"default": {"width": "100%", "height": "45vh"}}
````


## [0.1.0-beta.6] - 2021-06-13

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion aa_bulletin_board/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

default_app_config: str = "aa_bulletin_board.apps.AaBulletinBoardConfig"

__version__ = "0.1.0-beta.6"
__version__ = "0.1.0-beta.7"
__title__ = "Bulletin Board"
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,6 @@
}
}

/* cKEditor
------------------------------------------------------------------------------------- */
@media all {
.aa-bulletin-board #cke_id_content {
width: 100% !important;
}

.aa-bulletin-board .cke_contents {
height: 45vh !important;
}
}

@media all and (min-width: 768px) {
.aa-bulletin-board .panels-equal-height .panel-bulletin-excerpt {
width: calc(100% / 2);
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1fef4fc

Please sign in to comment.