You are here

ckeditor-iframe.css in Editor 7

/**
 * CSS added to iframe-based instances only.
 */
body {
  font-family: Arial, Verdana, sans-serif;
  font-size: 15px;
  color: #222;
  background-color: #fff;
  margin: 8px;
}

@media screen and (max-width: 600px) {
  /* A font-size of 16px prevents iOS from zooming. */
  body {
    font-size: 16px;
  }
}

ol, ul, dl {
  /* Preserved spaces for list items with text direction other than the list.
   * (CKEditor issues #6249,#8049) */
  padding: 0 40px;
}

File

modules/editor_ckeditor/css/ckeditor-iframe.css
View source
  1. /**
  2. * CSS added to iframe-based instances only.
  3. */
  4. body {
  5. font-family: Arial, Verdana, sans-serif;
  6. font-size: 15px;
  7. color: #222;
  8. background-color: #fff;
  9. margin: 8px;
  10. }
  11. @media screen and (max-width: 600px) {
  12. /* A font-size of 16px prevents iOS from zooming. */
  13. body {
  14. font-size: 16px;
  15. }
  16. }
  17. ol, ul, dl {
  18. /* Preserved spaces for list items with text direction other than the list.
  19. * (CKEditor issues #6249,#8049) */
  20. padding: 0 40px;
  21. }