-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(TinyMCE): 🐛 prevent TinyMCE editor from expanding limitlessly
Not sure what caused the editor to expand itself limitlessly, but forcing a max-height seems to resolve it. Closes: #978
- Loading branch information
1 parent
09b80ce
commit 21eccbb
Showing
3 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
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
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
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,14 @@ | ||
/* | ||
* Citizen | ||
* | ||
* SkinStyles for Extension:TinyMCE | ||
* Module: ext.tinymce | ||
* Version: 1.1.2 | ||
* | ||
* Date: 2024-12-19 | ||
*/ | ||
|
||
// Prevent TinyMCE from expanding itself limitlessly (#978) | ||
.tox-tinymce { | ||
max-height: 60vh; | ||
} |