You are here

ckeditor.css in CKEditor for WYSIWYG Module 7

Same filename and directory in other branches
  1. 8 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;
  margin-right: 12px;
}
img.align-right {
  float: right;
  margin-left: 12px;
}
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;
}

/* Fix for the Seven theme affecting modals */
table.cke_dialog tr td:last-child {
  border-right: none;
}

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;
  18. margin-right: 12px;
  19. }
  20. img.align-right {
  21. float: right;
  22. margin-left: 12px;
  23. }
  24. img.align-center {
  25. margin-left: auto;
  26. margin-right: auto;
  27. display: block;
  28. }
  29. img.full-width {
  30. width: 100%;
  31. height: auto;
  32. }
  33. .underline {
  34. text-decoration: underline;
  35. }
  36. .indent1 {
  37. margin: 0 0 0 40px; /* RTL */
  38. }
  39. .indent2 {
  40. margin: 0 0 0 80px; /* RTL */
  41. }
  42. .indent3 {
  43. margin: 0 0 0 120px; /* RTL */
  44. }
  45. .caption-left {
  46. float: left; /* RTL */
  47. }
  48. .caption-right {
  49. float: right; /* RTL */
  50. }
  51. .caption-center {
  52. text-align: center;
  53. margin-left: auto;
  54. margin-right: auto;
  55. }
  56. .align-justify {
  57. text-align: justify;
  58. }
  59. /* Fix for the Seven theme affecting modals */
  60. table.cke_dialog tr td:last-child {
  61. border-right: none;
  62. }