/*
File:          markitup/sets/default/style.css
Created:       Nov 24 2008
Last Modified: Dec 28 2008
===============================================================================
Controls styling of buttons for MD Markitup fields in the EE CP.
This file controls XHTML, Auto Br, and fields set to 'none'.
===============================================================================
markItUp! By Jay Salvat - http://markitup.jaysalvat.com/
===============================================================================
Set up for use with the ExpressionEngine Control Panel by Ryan Masuga.
masugadesign.com :: ryan@masugadesign.com
Modify as needed for your installation.
=============================================================================== */
/* Standard Fields */
.xhtml .markItUp .head1 a {background-image:url('../_shared_images/h1.png');}
.xhtml .markItUp .head2 a {background-image:url('../_shared_images/h2.png');}
.xhtml .markItUp .head3 a {background-image:url('../_shared_images/h3.png');}
.xhtml .markItUp .head4 a {background-image:url('../_shared_images/h4.png');}

.xhtml .markItUp .pgraph a {background-image:url('../_shared_images/paragraph.png');}

.xhtml .markItUp .bold a {background-image:url('../_shared_images/bold.png');}
.xhtml .markItUp .italic a {background-image:url('../_shared_images/italic.png');}
.xhtml .markItUp .strike a {background-image:url('../_shared_images/stroke.png');}

.xhtml .markItUp .list-bullet a {background-image:url('../_shared_images/list-bullet.png');}
.xhtml .markItUp .list-numeric a {background-image:url('../_shared_images/list-numeric.png');}
.xhtml .markItUp .list-item a {background-image:url('../_shared_images/list-item.png');}
.xhtml .markItUp .quotes a {background-image:url('../_shared_images/quotes.png');}

.xhtml .markItUp .link a {background-image:url('../_shared_images/link.png');}

/* General Unused: Set to 'display:none' by default */
.xhtml .markItUp .head5 a {background-image:url('../_shared_images/h5.png');display: none;}
.xhtml .markItUp .head6 a {background-image:url('../_shared_images/h6.png');display: none;}
.xhtml .markItUp .code a {background-image:url('../_shared_images/code.png');display: none;}
.xhtml .markItUp .picture a {background-image:url('../_shared_images/picture.png');display: none;}
.xhtml .markItUp .lorem a {background-image:url('../_shared_images/lorem.png');display: none;}
.xhtml .markItUp .clean a {background-image:url('../_shared_images/clean.png');display: none;}
.xhtml .markItUp .preview a {background-image:url('../_shared_images/preview.png');display: none;}


/* More Specific Fields =========================================== */

/* Buttons on by default */
.xhtml .markItUp .dingbat a {background-image:url('../_shared_images/dingbat.png');}
.xhtml .markItUp .moxieMultiPic a {background-image:url('../_shared_images/insertimage.gif');}

/* Buttons off by default */
.xhtml .markItUp .center a {background-image:url('../_shared_images/center.png');display: none;}
.xhtml .markItUp .dropcap a {background-image:url('../_shared_images/text_dropcaps.png');display: none;}
.xhtml .markItUp .moxieFile a {background-image:url('../_shared_images/insertfile.gif');display: none;}
.xhtml .markItUp .moxiePic a {background-image:url('../_shared_images/insertimage.gif');display: none;}
.xhtml .markItUp .pagebreak a {background-image:url('../_shared_images/documents_plus.png');display: none;}

/* Special Fields 
   Certain Buttons can be ignored on certain fields by using the following syntax:
   .xhtml #markItUpField_id_29 .lorem a {background-image:url('../_shared_images/lorem.png');display: none;}
   You need to know the field_id for the field that you wish to modify
=============================================================================== */

/* 
The following fields are samples to show you basic methods of hiding/showing fields 
If no rules are set for a specific field, that field will use the buttons set to
show by default (above).
*/

/* field_id_22: Summary 
The first line hides ALL the buttons, starting with a clean slate.
Then we set only bold, italic, and a link button to show.
*/
.xhtml #markItUpField_id_221 .markItUpButton a {display:none;}
.xhtml #markItUpField_id_221 .bold a,
.xhtml #markItUpField_id_221 .italic a,
.xhtml #markItUpField_id_221 .link a
{display:block;}

/* field_id_23: Body
We do not hide any buttons initially. This field will show all the buttons set to show by default (above),
and will additionally reveal three buttons that are hidden by default.
*/
.xhtml #markItUpField_id_232 .pagebreak a,
.xhtml #markItUpField_id_232 .center a,
.xhtml #markItUpField_id_232 .dropcap a
{display:block;}

/* field_id_62: Sample Custom Field
The first line hides ALL the buttons, starting with a clean slate.
Then we set bold, italic, and a link button to show - in addition to a special button
that will only be shown on this field.
*/
.xhtml #markItUpField_id_621 .markItUpButton a {display:none;}
.xhtml #markItUpField_id_621 .bold a,
.xhtml #markItUpField_id_621 .italic a,
.xhtml #markItUpField_id_621 .link a,
.xhtml #markItUpField_id_621 .addAuthor a
{display:block;}

/* field_id_17: Body (Weblog 2) 
The first line hides ALL the buttons, starting with a clean slate.
Then we show five buttons for this field.
*/
.xhtml #markItUpField_id_171 .markItUpButton a {display:none;}
.xhtml #markItUpField_id_171 .bold a,
.xhtml #markItUpField_id_171 .italic a,
.xhtml #markItUpField_id_171 .link a,
.xhtml #markItUpField_id_171 .dropcap a,
.xhtml #markItUpField_id_171 .center a
{display:block;}

/* field_id_11: Body (Weblog 3) 
Show all default 'on' buttons, in addition to two buttons that are set to not show by default.
*/
.xhtml #markItUpField_id_111 .center a,
.xhtml #markItUpField_id_111 .dropcap a
{display:block;}

/* END markitup/sets/default/style.css */
