-
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.
chore: update ckeditor4 and bump version
- Loading branch information
Showing
44 changed files
with
1,108 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,4 +16,4 @@ | |
10. Github actions will publish the new package to pypi | ||
""" | ||
|
||
__version__ = "0.5.1" | ||
__version__ = "0.5.2" |
20 changes: 20 additions & 0 deletions
20
...ditor4/static/djangocms_text/vendor/ckeditor4/plugins/colordialog/dialogs/colordialog.css
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,20 @@ | ||
/** | ||
* @license Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved. | ||
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
*/ | ||
|
||
.cke_colordialog_colorcell { | ||
width: 12px; /* All cells have equal width which depends on parent width (in this case table parent). Width works more like max-width. */ | ||
height: 14px; | ||
padding: 1px; /* Padding is replaced by border for focused cells. Prevents 'jumping' when adding borders. */ | ||
} | ||
|
||
.cke_colordialog_colorcell.cke_colordialog_focused_light, | ||
.cke_colordialog_colorcell.cke_colordialog_focused_dark { | ||
padding: 0; /* Shrink cell to allow 1px border indicating focus. */ | ||
border: 1px dotted #000; | ||
} | ||
|
||
.cke_colordialog_colorcell.cke_colordialog_focused_dark { | ||
border-color: #FFF; | ||
} |
14 changes: 14 additions & 0 deletions
14
...editor4/static/djangocms_text/vendor/ckeditor4/plugins/colordialog/dialogs/colordialog.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
25 changes: 25 additions & 0 deletions
25
...ngocms_text/vendor/ckeditor4/plugins/copyformatting/cursors/cursor-disabled.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 14 additions & 0 deletions
14
...tatic/djangocms_text/vendor/ckeditor4/plugins/copyformatting/cursors/cursor.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions
45
...4/static/djangocms_text/vendor/ckeditor4/plugins/copyformatting/styles/copyformatting.css
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,45 @@ | ||
/* | ||
Copyright (c) 2003-2023, CKSource Holding sp. z o.o. All rights reserved. | ||
For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license | ||
*/ | ||
|
||
html.cke_copyformatting_active { | ||
min-height: 100%; | ||
} | ||
|
||
/* There is no cursor in CUR format for IE/Edge as that browser | ||
does not support custom cursor in [contenteditable] area. | ||
Ticket for this issue: | ||
https://connect.microsoft.com/IE/feedback/details/1070215/cant-change-cursor-in-contenteditable-using-css */ | ||
.cke_copyformatting_disabled, | ||
.cke_copyformatting_disabled a, | ||
.cke_copyformatting_disabled .cke_editable { | ||
cursor: url(../cursors/cursor-disabled.svg) 12 1, auto; | ||
} | ||
|
||
.cke_copyformatting_disabled .cke_top a, | ||
.cke_copyformatting_disabled .cke_bottom a { | ||
cursor: default; | ||
} | ||
|
||
/* Added `!important` rule as a fix for overriding the cursor by the Table Resize plugin. | ||
The `!important` rule is used because the Table Resize plugin creates a `<div>` which changes the cursor using inlined styles. */ | ||
.cke_copyformatting_active, | ||
.cke_copyformatting_active.cke_editable, | ||
.cke_copyformatting_active .cke_editable, | ||
.cke_copyformatting_active a, | ||
.cke_copyformatting_active table, | ||
.cke_copyformatting_active div[data-cke-temp], | ||
.cke_copyformatting_tableresize_cursor div[data-cke-temp] { | ||
cursor: url(../cursors/cursor.svg) 12 1, auto !important; | ||
} | ||
|
||
.cke_screen_reader_only { | ||
position: absolute; | ||
clip: rect(1px, 1px, 1px, 1px); | ||
padding: 0; | ||
border: 0; | ||
height: 1px; | ||
width: 1px; | ||
overflow: hidden; | ||
} |
10 changes: 10 additions & 0 deletions
10
.../contrib/text_ckeditor4/static/djangocms_text/vendor/ckeditor4/plugins/div/dialogs/div.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.