fck_internal.css 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. /*
  2. * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3. * Copyright (C) 2003-2010 Frederico Caldeira Knabben
  4. *
  5. * == BEGIN LICENSE ==
  6. *
  7. * Licensed under the terms of any of the following licenses at your
  8. * choice:
  9. *
  10. * - GNU General Public License Version 2 or later (the "GPL")
  11. * http://www.gnu.org/licenses/gpl.html
  12. *
  13. * - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
  14. * http://www.gnu.org/licenses/lgpl.html
  15. *
  16. * - Mozilla Public License Version 1.1 or later (the "MPL")
  17. * http://www.mozilla.org/MPL/MPL-1.1.html
  18. *
  19. * == END LICENSE ==
  20. *
  21. * This CSS Style Sheet defines rules used by the editor for its internal use.
  22. */
  23. /* #########
  24. * WARNING
  25. * #########
  26. * When changing this file, the minified version of it must be updated in the
  27. * fckeditor.html file (see FCK_InternalCSS).
  28. */
  29. /* Fix to allow putting the caret at the end of the content in Firefox if
  30. clicking below the content. */
  31. html
  32. {
  33. min-height: 100%;
  34. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  35. }
  36. table.FCK__ShowTableBorders, table.FCK__ShowTableBorders td, table.FCK__ShowTableBorders th
  37. {
  38. border: #d3d3d3 1px solid;
  39. }
  40. form
  41. {
  42. border: 1px dotted #FF0000;
  43. padding: 2px;
  44. }
  45. .FCK__Flash
  46. {
  47. border: #a9a9a9 1px solid;
  48. background-position: center center;
  49. background-image: url(images/fck_flashlogo.gif);
  50. background-repeat: no-repeat;
  51. width: 80px;
  52. height: 80px;
  53. }
  54. /*
  55. FCK__Video and FCK__MP3 classes - added by Julio Montoya
  56. */
  57. .FCK__Video
  58. {
  59. border: #a9a9a9 1px solid;
  60. background-position: center center;
  61. background-image: url(images/fck_video.gif);
  62. background-repeat: no-repeat;
  63. width: 80px;
  64. height: 80px
  65. }
  66. .FCK__MP3
  67. {
  68. border: none;
  69. background-position: center center;
  70. background-image: url(images/fck_mp3.gif);
  71. background-repeat: no-repeat;
  72. width: 302px;
  73. height: 19px
  74. }
  75. .FCK__AsciiSvg
  76. {
  77. border: #a9a9a9 1px solid;
  78. background-position: center center;
  79. background-image: url(images/fck_asciisvg.gif);
  80. background-repeat: no-repeat;
  81. width: 107px;
  82. height: 107px
  83. }
  84. .FCK__UnknownObject
  85. {
  86. border: #a9a9a9 1px solid;
  87. background-position: center center;
  88. background-image: url(images/fck_plugin.gif);
  89. background-repeat: no-repeat;
  90. width: 80px;
  91. height: 80px;
  92. }
  93. /* Empty anchors images */
  94. .FCK__Anchor
  95. {
  96. border: 1px dotted #00F;
  97. background-position: center center;
  98. background-image: url(images/fck_anchor.gif);
  99. background-repeat: no-repeat;
  100. width: 16px;
  101. height: 15px;
  102. vertical-align: middle;
  103. }
  104. /* Anchors with content */
  105. .FCK__AnchorC
  106. {
  107. border: 1px dotted #00F;
  108. background-position: 1px center;
  109. background-image: url(images/fck_anchor.gif);
  110. background-repeat: no-repeat;
  111. padding-left: 18px;
  112. }
  113. /* Any anchor for non-IE, if we combine it with the previous rule IE ignores all. */
  114. a[name]
  115. {
  116. border: 1px dotted #00F;
  117. background-position: 0 center;
  118. background-image: url(images/fck_anchor.gif);
  119. background-repeat: no-repeat;
  120. padding-left: 18px;
  121. }
  122. .FCK__PageBreak
  123. {
  124. background-position: center center;
  125. background-image: url(images/fck_pagebreak.gif);
  126. background-repeat: no-repeat;
  127. clear: both;
  128. display: block;
  129. float: none;
  130. width: 100%;
  131. border-top: #999999 1px dotted;
  132. border-bottom: #999999 1px dotted;
  133. border-right: 0px;
  134. border-left: 0px;
  135. height: 5px;
  136. }
  137. /* Hidden fields */
  138. .FCK__InputHidden
  139. {
  140. width: 19px;
  141. height: 18px;
  142. background-image: url(images/fck_hiddenfield.gif);
  143. background-repeat: no-repeat;
  144. vertical-align: text-bottom;
  145. background-position: center center;
  146. }
  147. .FCK__ShowBlocks p,
  148. .FCK__ShowBlocks div,
  149. .FCK__ShowBlocks pre,
  150. .FCK__ShowBlocks address,
  151. .FCK__ShowBlocks blockquote,
  152. .FCK__ShowBlocks h1,
  153. .FCK__ShowBlocks h2,
  154. .FCK__ShowBlocks h3,
  155. .FCK__ShowBlocks h4,
  156. .FCK__ShowBlocks h5,
  157. .FCK__ShowBlocks h6
  158. {
  159. background-repeat: no-repeat;
  160. border: 1px dotted gray;
  161. padding-top: 8px;
  162. padding-left: 8px;
  163. }
  164. .FCK__ShowBlocks p
  165. {
  166. background-image: url(images/block_p.png);
  167. }
  168. .FCK__ShowBlocks div
  169. {
  170. background-image: url(images/block_div.png);
  171. }
  172. .FCK__ShowBlocks pre
  173. {
  174. background-image: url(images/block_pre.png);
  175. }
  176. .FCK__ShowBlocks address
  177. {
  178. background-image: url(images/block_address.png);
  179. }
  180. .FCK__ShowBlocks blockquote
  181. {
  182. background-image: url(images/block_blockquote.png);
  183. }
  184. .FCK__ShowBlocks h1
  185. {
  186. background-image: url(images/block_h1.png);
  187. }
  188. .FCK__ShowBlocks h2
  189. {
  190. background-image: url(images/block_h2.png);
  191. }
  192. .FCK__ShowBlocks h3
  193. {
  194. background-image: url(images/block_h3.png);
  195. }
  196. .FCK__ShowBlocks h4
  197. {
  198. background-image: url(images/block_h4.png);
  199. }
  200. .FCK__ShowBlocks h5
  201. {
  202. background-image: url(images/block_h5.png);
  203. }
  204. .FCK__ShowBlocks h6
  205. {
  206. background-image: url(images/block_h6.png);
  207. }