/* * Example styles for use in the visual editor. * * Two types of styles can be defined here: general styles to make the editor look * more like the theme and CSS classes that can be selected by the user. * * @package TinyMCE Kit * * Released under the GPL v.2, http://www.gnu.org/copyleft/gpl.html * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ /** * Example of general styles for the editor * * If you're styling the image caption, in the editor it's in *
tag if the whole patagraph is selected * or to a tag if only some text is selected. For best results they have * to contain only "inline" styling, like color, font, text-decoration, etc. */ .bigger { font-size: 16px; } .smaller { font-size: 11px; } .pull-right {float: right; color: green;} span.pull-right {display: block;}