editorPlugins.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  1. /* Editor Table Dialog */
  2. .EditorTableDialog{
  3. }
  4. .EditorTableDialog .etdTable{
  5. border:none;
  6. table-layout:fixed;
  7. border-collapse:collapse;
  8. }
  9. .EditorTableDialog .etdTable td{
  10. border:#CCCCCC 0px solid;
  11. padding:5px;
  12. }
  13. .EditorTableDialog .etdTable td.inner{
  14. padding:0px;
  15. }
  16. .EditorTableDialog .dijitTextBox{
  17. width:50px;
  18. padding-left:3px;
  19. }
  20. .EditorTableDialog .dijitComboBox{
  21. width:85px;
  22. padding-left:5px;
  23. }
  24. .EditorTableDialog label{
  25. float:right;
  26. margin:0;
  27. margin-right:5px;
  28. }
  29. .EditorTableDialog .cellpad{
  30. background:url(images/cellpad.png) no-repeat 5px;
  31. }
  32. .EditorTableDialog .cellspace{
  33. background:url(images/cellspace.png) no-repeat 5px;
  34. }
  35. .dialogButtonContainer{
  36. text-align:right;
  37. margin-top:10px;
  38. cursor:pointer;
  39. }
  40. .colorSwatchBtn{
  41. display:block;
  42. border:#666666 2px solid;
  43. background-color:#CCCCCC;
  44. width:16px;
  45. height:16px;
  46. cursor:pointer;
  47. }
  48. .colorSwatchBtn:hover{
  49. border:#0099FF 2px solid;
  50. }
  51. .colorSwatchBtn div{
  52. background-color:#CCCCCC;
  53. width:16px;
  54. height:16px;
  55. cursor:pointer;
  56. }
  57. /* Editor Buttons */
  58. .editorIcon{
  59. background-image:url(images/tableIcons.png);
  60. background-repeat: no-repeat;
  61. width: 18px;
  62. height: 18px;
  63. text-align: center;
  64. }
  65. .editorIconUploadImage{
  66. background:url(images/uploadImageIcon.gif) no-repeat 0px 4px;
  67. }
  68. .editorIconInsertTable{
  69. background-position:0px 0px; }
  70. .dijitDisabled .editorIconInsertTable{
  71. background-position:-162px 0px; }
  72. .editorIconInsertTableRowBefore{
  73. background-position:-36px 0px; }
  74. .dijitDisabled .editorIconInsertTableRowBefore{
  75. background-position:-198px 0px; }
  76. .editorIconInsertTableRowAfter{
  77. background-position:-54px 0px; }
  78. .dijitDisabled .editorIconInsertTableRowAfter{
  79. background-position:-216px 0px; }
  80. .editorIconInsertTableColumnBefore{
  81. background-position:-72px 0px; }
  82. .dijitDisabled .editorIconInsertTableColumnBefore{
  83. background-position:-234px 0px; }
  84. .editorIconInsertTableColumnAfter{
  85. background-position:-90px 0px; }
  86. .dijitDisabled .editorIconInsertTableColumnAfter{
  87. background-position:-252px 0px; }
  88. .editorIconDeleteTableRow{
  89. background-position:-108px 0px; }
  90. .dijitDisabled .editorIconDeleteTableRow{
  91. background-position:-270px 0px; }
  92. .editorIconDeleteTableColumn{
  93. background-position:-126px 0px; }
  94. .dijitDisabled .editorIconDeleteTableColumn{
  95. background-position:-288px 0px; }
  96. .editorIconColorTableCell{
  97. background-position:-144px 0px; }
  98. .dijitDisabled .editorIconColorTableCell{
  99. background-position:-306px 0px; }
  100. .editorIconModifyTable{
  101. background-position:-18px 0px; }
  102. .dijitDisabled .editorIconModifyTable{
  103. background-position:-180px 0px; }
  104. .RichTextEditable .dijitTextBox,
  105. .RichTextEditable .dijitComboBox,
  106. .RichTextEditable .dijitSpinner {
  107. width: 5em;
  108. }
  109. .dojoxDropDownSelect {
  110. background:#FFFFFF url(images/dropBk.png) repeat-x scroll left top;
  111. border: 1px solid;
  112. border-top-color:#cccccc;
  113. border-right-color:#cccccc;
  114. border-left-color:#999999;
  115. border-bottom-color:#ffffff;
  116. }
  117. .dojoxDropDownSelect.dojoxDropDownSelectHover{
  118. background-image:url(images/dropBkOver.png);
  119. }
  120. .dojoxDropDownSelect button{
  121. line-height:16px;
  122. height:16px;
  123. width:100px;
  124. text-align:left;
  125. color:#8397b9;
  126. }
  127. .dojoxEditorUploadNorm{
  128. font-family:Arial;
  129. font-size:12px;
  130. vertical-align: middle;
  131. margin:0;
  132. line-height:normal;
  133. text-align:center;
  134. white-space: nowrap;
  135. cursor: pointer;
  136. background: #ccc url("images/uploadImageIcon.gif") no-repeat 2px 2px;
  137. }
  138. .dojoxEditorUploadHover{
  139. background: #ccc url("images/uploadImageIcon.gif") no-repeat 2px 0px;
  140. }
  141. .dojoxEditorUploadActive{
  142. background: #ccc url("images/uploadImageIcon.gif") no-repeat 2px 4px;
  143. }
  144. .dojoxEditorUploadDisabled{
  145. background: #ccc url("images/uploadImageIcon.gif") no-repeat 2px 2px;
  146. }