presets.css 735 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. /*
  2. Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.md or http://ckeditor.com/license
  4. */
  5. /* "Source" button label */
  6. .cke_button__source_label,
  7. .cke_button__sourcedialog_label
  8. {
  9. display: inline;
  10. }
  11. /* "Font Size" combo width */
  12. .cke_combo__fontsize .cke_combo_text
  13. {
  14. width: 30px;
  15. }
  16. /* "Font Size" panel size */
  17. .cke_combopanel__fontsize
  18. {
  19. width: 120px;
  20. }
  21. /* Editable regions */
  22. textarea.cke_source
  23. {
  24. font-family: 'Courier New', Monospace;
  25. font-size: small;
  26. background-color: #fff;
  27. white-space: pre-wrap;
  28. border: none;
  29. padding: 0;
  30. margin: 0;
  31. display: block;
  32. }
  33. .cke_wysiwyg_frame, .cke_wysiwyg_div
  34. {
  35. background-color: #fff;
  36. }