ckeditor.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. /* Indent & Justify classes */
  2. .rteindent1 {
  3. margin-left: 40px;
  4. }
  5. .rteindent2 {
  6. margin-left: 80px;
  7. }
  8. .rteindent3 {
  9. margin-left: 120px;
  10. }
  11. .rteindent4 {
  12. margin-left: 160px;
  13. }
  14. .rteleft {
  15. text-align: left;
  16. }
  17. .rteright {
  18. text-align: right;
  19. }
  20. .rtecenter {
  21. text-align: center;
  22. }
  23. .rtejustify {
  24. text-align: justify;
  25. }
  26. .ibimage_left {
  27. float: left;
  28. }
  29. .ibimage_right {
  30. float: right;
  31. }
  32. /* CKEditor padding in IE */
  33. table.cke_editor fieldset {
  34. padding: 0 !important;
  35. }
  36. /* hack with ie and garland editing area size fix - [#733512] */
  37. .cke_editor{
  38. display: table !important;
  39. }
  40. .cke_editor,#ie#bug {
  41. display: inline-table !important;
  42. }
  43. /* Fix table border for Drupal's Seven theme - [#1020612] */
  44. .cke_dialog tr td:last-child {
  45. border-right: 0;
  46. }
  47. /*toolbar Drag & Drop*/
  48. form#ckeditor-admin-profile-form textarea#edit-toolbar {
  49. display: none;
  50. }
  51. form#ckeditor-admin-profile-form #edit-toolbar + .grippie {
  52. display: none;
  53. }
  54. div.sortableList {
  55. cursor: n-resize;
  56. }
  57. div.widthMarker {
  58. height: 20px;
  59. border-top: 1px dashed #CCC;
  60. margin: 10px 0px 0px 1px;
  61. padding-left: 1px;
  62. text-align: center;
  63. }
  64. div.sortableList.group {
  65. margin: 20px 0px 0px 0px;
  66. }
  67. div.sortableList div.sortableListDiv {
  68. height: 30px;
  69. margin-bottom: 3px;
  70. width: 900px;
  71. }
  72. div.sortableList div.sortableListDiv span.sortableListSpan {
  73. background-color: #F0F0EE;
  74. height: 30px;
  75. border-right: 1px dashed #CCC;
  76. display: block;
  77. }
  78. div.sortableList div.sortableListDiv span.sortableListSpan ul {
  79. width: 900px;
  80. white-space: nowrap;
  81. border: 1px solid #CCC;
  82. list-style: none;
  83. margin:0px;
  84. padding: 0px 0px 0px 1px;
  85. height: 30px;
  86. }
  87. div.sortableList div.sortableListDiv span.sortableListSpan ul li {
  88. list-style: none;
  89. cursor: move;
  90. height: 18px;
  91. min-width: 18px;
  92. padding: 2px;
  93. }
  94. div.sortableList div.sortableListDiv span.sortableListSpan ul li.group {
  95. min-width: 5px;
  96. padding-left: 2px;
  97. }
  98. div.sortableList div.sortableListDiv span.sortableListSpan ul li img {
  99. border: 0;
  100. padding: 0;
  101. margin: 0
  102. }
  103. li.sortableItem {
  104. position: relative;
  105. float: left;
  106. margin: 3px 1px 1px 0px;
  107. border: 1px solid #CCC;
  108. background-color: #F0F0EE;
  109. z-index: 99;
  110. }
  111. #security-filters .filter-text-formats {
  112. float: left;
  113. clear: both;
  114. width: 15%;
  115. font-size: 11px;
  116. font-weight: bold;
  117. padding: 10px 0px;
  118. }
  119. #security-filters .filter-text-formats .filter-text-format-status {
  120. float: left;
  121. padding-right: 20px;
  122. }
  123. #security-filters .filter-text-formats .enabled {
  124. background: url(images/tick.png) no-repeat right center;
  125. }
  126. #security-filters .filter-text-formats .disabled {
  127. background: url(images/delete.png) no-repeat right center;
  128. }
  129. #security-filters .filter-info {
  130. float: left;
  131. width: 85%;
  132. }
  133. #security-filters .fieldset-legend {
  134. background: none;
  135. padding-left: 10px;
  136. }
  137. #security-filters .fieldset-legend a {
  138. font-weight: normal;
  139. font-size: 10px;
  140. padding-left: 5px;
  141. }
  142. #security-filters .filter-wrapper {
  143. clear: both;
  144. float: left;
  145. border-bottom: 1px solid #CCCCCC;
  146. width: 100%;
  147. }
  148. /* Fix for fieldset for-edit-apperance in Firefox*/
  149. fieldset#edit-appearance div#groupLayout, div#allButtons {
  150. border: 0;
  151. padding: 0 0 0 0;
  152. margin: 1em 0;
  153. overflow: auto;
  154. }
  155. /* end of toolbar Drag & Drop */