You are here

_source.css in CKEditor for WYSIWYG Module 8

/*
 * Unminified CSS Source
 * This css file is not required for the plugin, because the styles
 * are minified and hard-coded in plugin.js
 *
 */

img::selection {
  color: rgba(0, 0, 0, 0);
}

img.cke-resize {
  outline: 1px dashed #000;
}

#ckimgrsz {
  position: absolute;
  width: 0;
  height: 0;
  cursor: default;
}

#ckimgrsz .preview {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background-size: 100% 100%;
  opacity: .65;
  outline: 1px dashed #000;
}

#ckimgrsz span {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #fff;
  border: 1px solid #000;
}

#ckimgrsz span:hover, #ckimgrsz span.active {
  background: #000;
}

#ckimgrsz span.tl,
#ckimgrsz span.br {
  cursor: nwse-resize;
}

#ckimgrsz span.tm,
#ckimgrsz span.bm {
  cursor: ns-resize;
}

#ckimgrsz span.tr,
#ckimgrsz span.bl {
  cursor: nesw-resize;
}

#ckimgrsz span.lm,
#ckimgrsz span.rm {
  cursor: ew-resize;
}

body.dragging-tl, body.dragging-tl *,
body.dragging-br, body.dragging-br * {
  cursor: nwse-resize !important;
}

body.dragging-tm, body.dragging-tm *,
body.dragging-bm, body.dragging-bm * {
  cursor: ns-resize !important;
}

body.dragging-tr, body.dragging-tr *,
body.dragging-bl, body.dragging-bl * {
  cursor: nesw-resize !important;
}

body.dragging-lm, body.dragging-lm *,
body.dragging-rm, body.dragging-rm * {
  cursor: ew-resize !important;
}

File

js/plugins/webkitdrag/_source.css
View source
  1. /*
  2. * Unminified CSS Source
  3. * This css file is not required for the plugin, because the styles
  4. * are minified and hard-coded in plugin.js
  5. *
  6. */
  7. img::selection {
  8. color: rgba(0, 0, 0, 0);
  9. }
  10. img.cke-resize {
  11. outline: 1px dashed #000;
  12. }
  13. #ckimgrsz {
  14. position: absolute;
  15. width: 0;
  16. height: 0;
  17. cursor: default;
  18. }
  19. #ckimgrsz .preview {
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. width: 0;
  24. height: 0;
  25. background-size: 100% 100%;
  26. opacity: .65;
  27. outline: 1px dashed #000;
  28. }
  29. #ckimgrsz span {
  30. position: absolute;
  31. width: 5px;
  32. height: 5px;
  33. background: #fff;
  34. border: 1px solid #000;
  35. }
  36. #ckimgrsz span:hover, #ckimgrsz span.active {
  37. background: #000;
  38. }
  39. #ckimgrsz span.tl,
  40. #ckimgrsz span.br {
  41. cursor: nwse-resize;
  42. }
  43. #ckimgrsz span.tm,
  44. #ckimgrsz span.bm {
  45. cursor: ns-resize;
  46. }
  47. #ckimgrsz span.tr,
  48. #ckimgrsz span.bl {
  49. cursor: nesw-resize;
  50. }
  51. #ckimgrsz span.lm,
  52. #ckimgrsz span.rm {
  53. cursor: ew-resize;
  54. }
  55. body.dragging-tl, body.dragging-tl *,
  56. body.dragging-br, body.dragging-br * {
  57. cursor: nwse-resize !important;
  58. }
  59. body.dragging-tm, body.dragging-tm *,
  60. body.dragging-bm, body.dragging-bm * {
  61. cursor: ns-resize !important;
  62. }
  63. body.dragging-tr, body.dragging-tr *,
  64. body.dragging-bl, body.dragging-bl * {
  65. cursor: nesw-resize !important;
  66. }
  67. body.dragging-lm, body.dragging-lm *,
  68. body.dragging-rm, body.dragging-rm * {
  69. cursor: ew-resize !important;
  70. }