You are here

ckeditor.css in CKEditor for WYSIWYG Module 8

Same filename and directory in other branches
  1. 7 css/ckeditor.css
/**
 * Common styles used by CKEditor. Added to front-end theme and iFrame editors.
 */
.align-left {
  text-align: left; /* RTL */
}
.align-right {
  text-align: right; /* RTL */
}
.align-center {
  text-align: center;
}
.align-justify {
  text-align: justify;
}
img.align-left {
  float: left; /* RTL */
}
img.align-right {
  float: right; /* RTL */
}
img.align-center {
  margin-left: auto;
  margin-right: auto;
  display: block;
}
img.full-width {
  width: 100%;
  height: auto;
}
.underline {
  text-decoration: underline;
}
.indent1 {
  margin: 0 0 0 40px; /* RTL */
}
.indent2 {
  margin: 0 0 0 80px; /* RTL */
}
.indent3 {
  margin: 0 0 0 120px; /* RTL */
}
.caption-left {
  float: left; /* RTL */
}
.caption-right {
  float: right; /* RTL */
}
.caption-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.align-justify {
  text-align: justify;
}

File

css/ckeditor.css
View source
  1. /**
  2. * Common styles used by CKEditor. Added to front-end theme and iFrame editors.
  3. */
  4. .align-left {
  5. text-align: left; /* RTL */
  6. }
  7. .align-right {
  8. text-align: right; /* RTL */
  9. }
  10. .align-center {
  11. text-align: center;
  12. }
  13. .align-justify {
  14. text-align: justify;
  15. }
  16. img.align-left {
  17. float: left; /* RTL */
  18. }
  19. img.align-right {
  20. float: right; /* RTL */
  21. }
  22. img.align-center {
  23. margin-left: auto;
  24. margin-right: auto;
  25. display: block;
  26. }
  27. img.full-width {
  28. width: 100%;
  29. height: auto;
  30. }
  31. .underline {
  32. text-decoration: underline;
  33. }
  34. .indent1 {
  35. margin: 0 0 0 40px; /* RTL */
  36. }
  37. .indent2 {
  38. margin: 0 0 0 80px; /* RTL */
  39. }
  40. .indent3 {
  41. margin: 0 0 0 120px; /* RTL */
  42. }
  43. .caption-left {
  44. float: left; /* RTL */
  45. }
  46. .caption-right {
  47. float: right; /* RTL */
  48. }
  49. .caption-center {
  50. text-align: center;
  51. margin-left: auto;
  52. margin-right: auto;
  53. }
  54. .align-justify {
  55. text-align: justify;
  56. }