From a7e5e2034f6d6d0c9cbc3c8113ab5238dd3989ab Mon Sep 17 00:00:00 2001 From: iandstewart 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: http://svn.automattic.com/wordpress/trunk@18127 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- 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 20d0aef69..4a218b301 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; }