| 6 | 6 | Agree with Sergey that `.wp_themeSkin tr.mceFirst .mceToolbar tr td` is quite specific. We could probably add `.mceEditor` in front of every `.wp_themeSkin` in [http://core.trac.wordpress.org/browser/trunk/wp-includes/css/editor.css editor.css] (about half of the selectors there) but it will always be possible to overwrite that with a selector containing IDs. Better option imho is to avoid using IDs when defining default element styles, or if not possible, at least to make them more specific: `#page > table tr td`, etc. |