Render broken link in HtmlEditorField

Regression: 2.4 had this in the default cms/css/editor.css,
which got moved to the simple theme at some point,
where this styling was removed.
This commit is contained in:
Ingo Schommer 2013-08-09 11:51:18 +02:00
parent 3510b60ab8
commit 79205f7d43
2 changed files with 8 additions and 0 deletions

1
admin/css/editor.css Normal file
View File

@ -0,0 +1 @@
body.mceContentBody a.ss-broken { background-color: #FF7B71; border: 1px red solid; color: #fff; padding: 1px; text-decoration: underline; }

7
admin/scss/editor.scss Normal file
View File

@ -0,0 +1,7 @@
body.mceContentBody a.ss-broken {
background-color: #FF7B71;
border: 1px red solid;
color: #fff;
padding: 1px;
text-decoration: underline;
}