/source/Plug-in/fck/editor/css/fck_internal.css

http://prosporous.googlecode.com/ · CSS · 182 lines · 133 code · 21 blank · 28 comment · 0 complexity · 215b5afcecba7f67dfaf679e79373b1e MD5 · raw file

  1. /*
  2. * FCKeditor - The text editor for Internet - http://www.fckeditor.net
  3. * Copyright (C) 2003-2007 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. /* Fix to allow putting the caret at the end of the content in Firefox if
  24. clicking below the content. */
  25. html
  26. {
  27. min-height: 100%;
  28. }
  29. table.FCK__ShowTableBorders, table.FCK__ShowTableBorders td, table.FCK__ShowTableBorders th
  30. {
  31. border: #d3d3d3 1px solid;
  32. }
  33. form
  34. {
  35. border: 1px dotted #FF0000;
  36. padding: 2px;
  37. }
  38. .FCK__Flash
  39. {
  40. border: #a9a9a9 1px solid;
  41. background-position: center center;
  42. background-image: url(images/fck_flashlogo.gif);
  43. background-repeat: no-repeat;
  44. width: 80px;
  45. height: 80px;
  46. }
  47. /* Empty anchors images */
  48. .FCK__Anchor
  49. {
  50. border: 1px dotted #00F;
  51. background-position: center center;
  52. background-image: url(images/fck_anchor.gif);
  53. background-repeat: no-repeat;
  54. width: 16px;
  55. height: 15px;
  56. vertical-align: middle;
  57. }
  58. /* Anchors with content */
  59. .FCK__AnchorC
  60. {
  61. border: 1px dotted #00F;
  62. background-position: 1px center;
  63. background-image: url(images/fck_anchor.gif);
  64. background-repeat: no-repeat;
  65. padding-left: 18px;
  66. }
  67. /* Any anchor for non-IE, if we combine it with the previous rule IE ignores all. */
  68. a[name]
  69. {
  70. border: 1px dotted #00F;
  71. background-position: 0 center;
  72. background-image: url(images/fck_anchor.gif);
  73. background-repeat: no-repeat;
  74. padding-left: 18px;
  75. }
  76. .FCK__PageBreak
  77. {
  78. background-position: center center;
  79. background-image: url(images/fck_pagebreak.gif);
  80. background-repeat: no-repeat;
  81. clear: both;
  82. display: block;
  83. float: none;
  84. width: 100%;
  85. border-top: #999999 1px dotted;
  86. border-bottom: #999999 1px dotted;
  87. border-right: 0px;
  88. border-left: 0px;
  89. height: 5px;
  90. }
  91. /* Hidden fields */
  92. .FCK__InputHidden
  93. {
  94. width: 19px;
  95. height: 18px;
  96. background-image: url(images/fck_hiddenfield.gif);
  97. background-repeat: no-repeat;
  98. vertical-align: text-bottom;
  99. background-position: center center;
  100. }
  101. .FCK__ShowBlocks p,
  102. .FCK__ShowBlocks div,
  103. .FCK__ShowBlocks pre,
  104. .FCK__ShowBlocks address,
  105. .FCK__ShowBlocks blockquote,
  106. .FCK__ShowBlocks h1,
  107. .FCK__ShowBlocks h2,
  108. .FCK__ShowBlocks h3,
  109. .FCK__ShowBlocks h4,
  110. .FCK__ShowBlocks h5,
  111. .FCK__ShowBlocks h6
  112. {
  113. background-repeat: no-repeat;
  114. border: 1px dotted gray;
  115. padding-top: 8px;
  116. padding-left: 8px;
  117. }
  118. .FCK__ShowBlocks p
  119. {
  120. background-image: url(images/block_p.png);
  121. }
  122. .FCK__ShowBlocks div
  123. {
  124. background-image: url(images/block_div.png);
  125. }
  126. .FCK__ShowBlocks pre
  127. {
  128. background-image: url(images/block_pre.png);
  129. }
  130. .FCK__ShowBlocks address
  131. {
  132. background-image: url(images/block_address.png);
  133. }
  134. .FCK__ShowBlocks blockquote
  135. {
  136. background-image: url(images/block_blockquote.png);
  137. }
  138. .FCK__ShowBlocks h1
  139. {
  140. background-image: url(images/block_h1.png);
  141. }
  142. .FCK__ShowBlocks h2
  143. {
  144. background-image: url(images/block_h2.png);
  145. }
  146. .FCK__ShowBlocks h3
  147. {
  148. background-image: url(images/block_h3.png);
  149. }
  150. .FCK__ShowBlocks h4
  151. {
  152. background-image: url(images/block_h4.png);
  153. }
  154. .FCK__ShowBlocks h5
  155. {
  156. background-image: url(images/block_h5.png);
  157. }
  158. .FCK__ShowBlocks h6
  159. {
  160. background-image: url(images/block_h6.png);
  161. }