/* $Id: block-editing.css,v 1.1 2010/02/09 10:07:49 PhilMakower Exp $ */

/*
 * Rollover edit links for blocks
 */

div.block {
    position: static !important; /* bizzarely, block-editing.css from Zen in included, so need to override here */
}

  div.block.with-block-editing
  {
    position: relative;
  }

  div.block.with-block-editing div.edit
  {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 40;
    border: 1px solid #eee;
    padding: 0 2px;
    font-size: 9px;
    background-color: #fff;
  }

  div.block.with-block-editing:hover div.edit
  {
    display: block;
  }
