Merge pull request #2316 from chillu/pulls/editor-brokenlink

Render broken link in HtmlEditorField
This commit is contained in:
Will Rossiter 2013-08-17 17:01:14 -07:00
commit 1621d6afde
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;
}