fck_internal.css 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. /*
  2. * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3. * Copyright (C) 2003-2008 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. }
  35. table.FCK__ShowTableBorders, table.FCK__ShowTableBorders td, table.FCK__ShowTableBorders th
  36. {
  37. border: #d3d3d3 1px solid;
  38. }
  39. form
  40. {
  41. border: 1px dotted #FF0000;
  42. padding: 2px;
  43. }
  44. .FCK__Flash
  45. {
  46. border: #a9a9a9 1px solid;
  47. background-position: center center;
  48. background-image: url(images/fck_flashlogo.gif);
  49. background-repeat: no-repeat;
  50. width: 80px;
  51. height: 80px;
  52. }
  53. .FCK__UnknownObject
  54. {
  55. border: #a9a9a9 1px solid;
  56. background-position: center center;
  57. background-image: url(images/fck_plugin.gif);
  58. background-repeat: no-repeat;
  59. width: 80px;
  60. height: 80px;
  61. }
  62. /* Empty anchors images */
  63. .FCK__Anchor
  64. {
  65. border: 1px dotted #00F;
  66. background-position: center center;
  67. background-image: url(images/fck_anchor.gif);
  68. background-repeat: no-repeat;
  69. width: 16px;
  70. height: 15px;
  71. vertical-align: middle;
  72. }
  73. /* Anchors with content */
  74. .FCK__AnchorC
  75. {
  76. border: 1px dotted #00F;
  77. background-position: 1px center;
  78. background-image: url(images/fck_anchor.gif);
  79. background-repeat: no-repeat;
  80. padding-left: 18px;
  81. }
  82. /* Any anchor for non-IE, if we combine it with the previous rule IE ignores all. */
  83. a[name]
  84. {
  85. border: 1px dotted #00F;
  86. background-position: 0 center;
  87. background-image: url(images/fck_anchor.gif);
  88. background-repeat: no-repeat;
  89. padding-left: 18px;
  90. }
  91. .FCK__PageBreak
  92. {
  93. background-position: center center;
  94. background-image: url(images/fck_pagebreak.gif);
  95. background-repeat: no-repeat;
  96. clear: both;
  97. display: block;
  98. float: none;
  99. width: 100%;
  100. border-top: #999999 1px dotted;
  101. border-bottom: #999999 1px dotted;
  102. border-right: 0px;
  103. border-left: 0px;
  104. height: 5px;
  105. }
  106. /* Hidden fields */
  107. .FCK__InputHidden
  108. {
  109. width: 19px;
  110. height: 18px;
  111. background-image: url(images/fck_hiddenfield.gif);
  112. background-repeat: no-repeat;
  113. vertical-align: text-bottom;
  114. background-position: center center;
  115. }
  116. .FCK__ShowBlocks p,
  117. .FCK__ShowBlocks div,
  118. .FCK__ShowBlocks pre,
  119. .FCK__ShowBlocks address,
  120. .FCK__ShowBlocks blockquote,
  121. .FCK__ShowBlocks h1,
  122. .FCK__ShowBlocks h2,
  123. .FCK__ShowBlocks h3,
  124. .FCK__ShowBlocks h4,
  125. .FCK__ShowBlocks h5,
  126. .FCK__ShowBlocks h6
  127. {
  128. background-repeat: no-repeat;
  129. border: 1px dotted gray;
  130. padding-top: 8px;
  131. padding-left: 8px;
  132. }
  133. .FCK__ShowBlocks p
  134. {
  135. background-image: url(images/block_p.png);
  136. }
  137. .FCK__ShowBlocks div
  138. {
  139. background-image: url(images/block_div.png);
  140. }
  141. .FCK__ShowBlocks pre
  142. {
  143. background-image: url(images/block_pre.png);
  144. }
  145. .FCK__ShowBlocks address
  146. {
  147. background-image: url(images/block_address.png);
  148. }
  149. .FCK__ShowBlocks blockquote
  150. {
  151. background-image: url(images/block_blockquote.png);
  152. }
  153. .FCK__ShowBlocks h1
  154. {
  155. background-image: url(images/block_h1.png);
  156. }
  157. .FCK__ShowBlocks h2
  158. {
  159. background-image: url(images/block_h2.png);
  160. }
  161. .FCK__ShowBlocks h3
  162. {
  163. background-image: url(images/block_h3.png);
  164. }
  165. .FCK__ShowBlocks h4
  166. {
  167. background-image: url(images/block_h4.png);
  168. }
  169. .FCK__ShowBlocks h5
  170. {
  171. background-image: url(images/block_h5.png);
  172. }
  173. .FCK__ShowBlocks h6
  174. {
  175. background-image: url(images/block_h6.png);
  176. }
  177. /* This is the MP3 fckeditor image
  178. Added by Julio Montoya
  179. */
  180. .FCK__MP3
  181. {
  182. border: darkgray 1px solid;
  183. background-position: center center;
  184. background-image: url(images/fck_mp3.gif);
  185. background-repeat: no-repeat;
  186. width: 200px;
  187. height: 20px;
  188. }