From 79205f7d4358a704f6abe9a2c0323653c4a4868a Mon Sep 17 00:00:00 2001 From: Ingo Schommer Date: Fri, 9 Aug 2013 11:51:18 +0200 Subject: [PATCH] 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. --- admin/css/editor.css | 1 + admin/scss/editor.scss | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 admin/css/editor.css create mode 100644 admin/scss/editor.scss diff --git a/admin/css/editor.css b/admin/css/editor.css new file mode 100644 index 000000000..35bd0d220 --- /dev/null +++ b/admin/css/editor.css @@ -0,0 +1 @@ +body.mceContentBody a.ss-broken { background-color: #FF7B71; border: 1px red solid; color: #fff; padding: 1px; text-decoration: underline; } diff --git a/admin/scss/editor.scss b/admin/scss/editor.scss new file mode 100644 index 000000000..68f35be7b --- /dev/null +++ b/admin/scss/editor.scss @@ -0,0 +1,7 @@ +body.mceContentBody a.ss-broken { + background-color: #FF7B71; + border: 1px red solid; + color: #fff; + padding: 1px; + text-decoration: underline; +} \ No newline at end of file