editor.css 536 B

1234567891011121314151617181920212223242526272829303132
  1. /* This is the editor's playground (textarea for non-wysiwyg, iframe for wysiwyg). */
  2. .editor
  3. {
  4. width: 100%;
  5. max-width: 100%;
  6. min-width: 100%;
  7. }
  8. .editor, .rich_editor_frame
  9. {
  10. border: 1px solid #808080;
  11. padding: 2px !important;
  12. margin: 0;
  13. }
  14. .rich_editor_frame
  15. {
  16. background: #fff;
  17. }
  18. /* The resize handle. */
  19. .richedit_resize
  20. {
  21. height: 5px;
  22. font-size: 0;
  23. background: #eee url(../images/bbc/resize-handle.png) no-repeat 50% 1px;
  24. border: 1px solid #ddd;
  25. border-top-width: 0;
  26. cursor: s-resize;
  27. width: 100%;
  28. padding: 0 2px;
  29. }