From ef01a94b3f214339b98b12b5c49052e320345838 Mon Sep 17 00:00:00 2001 From: Ian Stewart Date: Fri, 3 Jun 2011 14:33:11 +0000 Subject: [PATCH] Twenty Eleven: show expected formatting for em, strong, and a in editor styles; Props greuben; Fixes #17417 git-svn-id: https://develop.svn.wordpress.org/trunk@18127 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-content/themes/twentyeleven/editor-style.css | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/twentyeleven/editor-style.css b/wp-content/themes/twentyeleven/editor-style.css index 20d0aef69f..4a218b3017 100644 --- a/wp-content/themes/twentyeleven/editor-style.css +++ b/wp-content/themes/twentyeleven/editor-style.css @@ -9,7 +9,8 @@ html .mceContentBody { * { color: #333; font: 15px "Helvetica Neue", Helvetica, Arial, sans-serif; - font-weight: 300; + font-style: inherit; + font-weight: inherit; line-height: 1.625; } body { @@ -174,7 +175,9 @@ input[type=text] { } /* Links */ -a { +a, +a em, +a strong { color: #1b8be0; text-decoration: none; }