editor_ie.css 695 B

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