editor_ie.css 695 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. /* This is the editor's playground (textarea for non-wysiwyg, iframe for wysiwyg). */
  2. .editor
  3. {
  4. width: 635px;
  5. max-width: 100%;
  6. min-width: 100%;
  7. }
  8. /* This is the IFRAME that holds the editor. */
  9. .rich_editor_frame
  10. {
  11. border: 1px solid #808080;
  12. }
  13. /* This is the WYSIWYG editor */
  14. .rich_editor
  15. {
  16. background-color: #fff;
  17. color: #000;
  18. font-family: verdana;
  19. font-size: x-small;
  20. border: none;
  21. }
  22. .rich_editor p
  23. {
  24. margin: 0;
  25. }
  26. .rich_editor a img
  27. {
  28. border: 0;
  29. }
  30. /* The resize handle. */
  31. .richedit_resize
  32. {
  33. height: 5px;
  34. font-size: 0;
  35. background: #eee url(../images/bbc/resize-handle.png) no-repeat 50% 1px;
  36. border: 1px solid #ddd;
  37. border-top-width: 0;
  38. cursor: s-resize;
  39. width: 100%;
  40. }