tinymce-2.css 444 B

123456789101112131415161718192021222324252627
  1. /**
  2. * TinyMCE 2.x
  3. */
  4. table.mceEditor {
  5. clear: left;
  6. }
  7. /**
  8. * Align all buttons and separators in a single row, so they wrap into multiple
  9. * rows if required.
  10. */
  11. .mceToolbarTop a, .mceToolbarBottom a {
  12. float: left;
  13. }
  14. .mceSeparatorLine {
  15. float: left;
  16. margin-top: 3px;
  17. }
  18. .mceSelectList {
  19. float: left;
  20. margin-bottom: 1px;
  21. }
  22. /* Place table plugin buttons into new row */
  23. #mce_editor_0_table, #mce_editor_1_table {
  24. clear: left;
  25. }