editor.css 536 B

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