/*! * Mercury Editor is a Coffeescript and jQuery based WYSIWYG editor. Documentation and other useful information can be * found at https://github.com/jejacks0n/mercury * * This file is intended to provide a standard way to override the CSS that comes default with Mercury Editor, and * includes an example button style, should you ever need to add new ones yourself. Read the toolbar configuration in * mercury.js for more on how to add your own buttons to the toolbar. */ /* Disable text sizing in webkit (ipad/iphone etc -- should apply to mercury only) */ html { -webkit-text-size-adjust: none; } /* Button example */ .mercury-primary-toolbar .mercury-inspector-button em, .mercury-expander-button[data-button="inspector"] em { background-image: url(/assets/mercury/toolbar/primary/inspectorpanel.png); } .mercury-primary-toolbar .mercury-dashboard-button em { background-image: url(/assets/mercury/dashboard.png); }