mollom.flag.position.css 488 B

12345678910111213141516171819202122
  1. /**
  2. * Styles specific to Mollom's "Report as Inappropriate" feature positioning.
  3. */
  4. /**
  5. * A container within the comment that holds the flag form.
  6. * This container requires it's own relative positioning declaration
  7. * for Firefox because parent containers implement table-cell positioning.
  8. */
  9. div.mollom-flag-container {
  10. position: relative;
  11. }
  12. /**
  13. * The floating report form holder.
  14. */
  15. div.mollom-flag-reasons {
  16. position: absolute;
  17. top: -15px;
  18. left: 20%;
  19. z-index: 10;
  20. }