Skip to content

Commit

Permalink
Issue #4027: fixed some blockquotes not being removable
Browse files Browse the repository at this point in the history
this was due to adding support for more html tags to improve styling in cited emails, this change was now undone in favour of better blockquote functionality
  • Loading branch information
chzauleck authored and svenoe committed Jan 27, 2025
1 parent 273aefe commit f9dcaea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 19 deletions.
18 changes: 0 additions & 18 deletions var/httpd/htdocs/js/Core.UI.RichTextEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,24 +185,6 @@ Core.UI.RichTextEditor = (function (TargetNS) {
},
htmlSupport: {
allow: [
{
name: 'section',
attributes: true,
classes: true,
styles: true
},
{
name: 'article',
attributes: true,
classes: true,
styles: true
},
{
name: 'div',
attributes: true,
classes: true,
styles: true
},
{
name: 'span',
attributes: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
.ck-content blockquote {
font-style: normal !important;
border-left: solid #000099 1.5pt !important;
padding: 0cm 0cm 0cm 4pt !important;
padding: 0cm 0cm 0cm 4pt !important;
margin: 0;
}

.ck-content ul,
Expand Down

0 comments on commit f9dcaea

Please sign in to comment.