You are here

_source.css in CKEditor for WYSIWYG Module 7

/*
 * 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;
  z-index: 10001;
}

#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/dragresize/_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. z-index: 10001;
  19. }
  20. #ckimgrsz .preview {
  21. position: absolute;
  22. top: 0;
  23. left: 0;
  24. width: 0;
  25. height: 0;
  26. background-size: 100% 100%;
  27. opacity: .65;
  28. outline: 1px dashed #000;
  29. }
  30. #ckimgrsz span {
  31. position: absolute;
  32. width: 5px;
  33. height: 5px;
  34. background: #fff;
  35. border: 1px solid #000;
  36. }
  37. #ckimgrsz span:hover, #ckimgrsz span.active {
  38. background: #000;
  39. }
  40. #ckimgrsz span.tl,
  41. #ckimgrsz span.br {
  42. cursor: nwse-resize;
  43. }
  44. #ckimgrsz span.tm,
  45. #ckimgrsz span.bm {
  46. cursor: ns-resize;
  47. }
  48. #ckimgrsz span.tr,
  49. #ckimgrsz span.bl {
  50. cursor: nesw-resize;
  51. }
  52. #ckimgrsz span.lm,
  53. #ckimgrsz span.rm {
  54. cursor: ew-resize;
  55. }
  56. body.dragging-tl, body.dragging-tl *,
  57. body.dragging-br, body.dragging-br * {
  58. cursor: nwse-resize !important;
  59. }
  60. body.dragging-tm, body.dragging-tm *,
  61. body.dragging-bm, body.dragging-bm * {
  62. cursor: ns-resize !important;
  63. }
  64. body.dragging-tr, body.dragging-tr *,
  65. body.dragging-bl, body.dragging-bl * {
  66. cursor: nesw-resize !important;
  67. }
  68. body.dragging-lm, body.dragging-lm *,
  69. body.dragging-rm, body.dragging-rm * {
  70. cursor: ew-resize !important;
  71. }