/* Styles for LRH Shortcode Information Manager */

/* Metabox during an edit */

/* The containing div that holds the list */
.lrhsim_items_container {
height:160px;
display:block;
overflow-y:scroll;
cursor:pointer;
}

/* The containing div that holds a single item (shortcode) */
.lrhsim_item_container {
}

/* The containing div that holds a single item when hovering */
.lrhsim_item_container:hover {
background-color:yellow;
}

/* The span holding the item (shortcode) name */
.lrhsim_item_name {
}

/* The span holding the "fake" button used to insert into memo */
.lrhsim_item_button {
margin:0 3px 0 0;
border-top:1px solid #96d1f8;
background:#65a9d7;
background:-webkit-gradient(linear, left top, left bottom, from(#3e779d), to(#65a9d7));
background:-webkit-linear-gradient(top, #3e779d, #65a9d7);
background:-moz-linear-gradient(top, #3e779d, #65a9d7);
background:-ms-linear-gradient(top, #3e779d, #65a9d7);
background:-o-linear-gradient(top, #3e779d, #65a9d7);
padding:0px 4px;
-webkit-border-radius:4px;
-moz-border-radius:4px;
border-radius:4px;
-webkit-box-shadow:rgba(0,0,0,1) 0 1px 0;
-moz-box-shadow:rgba(0,0,0,1) 0 1px 0;
box-shadow:rgba(0,0,0,1) 0 1px 0;
text-shadow:rgba(0,0,0,.4) 0 1px 0;
color:white;
font-size:80%;
vertical-align:middle;
}
/* When hovering over the button */
.lrhsim_item_button:hover {
border-top-color:#28597a;
background:#28597a;
color:#ccc;
}

/* The span holding the item description and parameters, initially hidden */
.lrhsim_item_desc_hide {
display:none;
}

/* The span holding the item description and parameters, when showing.
   Toggled by jQuery */
.lrhsim_item_desc {
display:block;
font-size:96%;
background-color:#efefef;
padding:1px 0px 1px 6px;
}

