common.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. div.mxRubberband {
  2. position: absolute;
  3. overflow: hidden;
  4. border-style: solid;
  5. border-width: 1px;
  6. border-color: #0000FF;
  7. background: #0077FF;
  8. }
  9. .mxCellEditor {
  10. background: url('../images/transparent.gif');
  11. border-color: transparent;
  12. border-style: solid;
  13. display: block;
  14. position: relative;
  15. overflow: visible;
  16. word-wrap: normal;
  17. border-width: 0;
  18. min-width: 1px;
  19. resize: none;
  20. padding: 0px;
  21. margin: 0px;
  22. }
  23. .mxPlainTextEditor * {
  24. padding: 0px;
  25. margin: 0px;
  26. }
  27. div.mxWindow {
  28. -webkit-box-shadow: 3px 3px 12px #C0C0C0;
  29. -moz-box-shadow: 3px 3px 12px #C0C0C0;
  30. box-shadow: 3px 3px 12px #C0C0C0;
  31. background: url('../images/window.gif');
  32. border:1px solid #c3c3c3;
  33. position: absolute;
  34. overflow: hidden;
  35. z-index: 1;
  36. }
  37. table.mxWindow {
  38. border-collapse: collapse;
  39. table-layout: fixed;
  40. font-family: Arial;
  41. font-size: 8pt;
  42. }
  43. td.mxWindowTitle {
  44. background: url('../images/window-title.gif') repeat-x;
  45. text-overflow: ellipsis;
  46. white-space: nowrap;
  47. text-align: center;
  48. font-weight: bold;
  49. overflow: hidden;
  50. height: 13px;
  51. padding: 2px;
  52. padding-top: 4px;
  53. padding-bottom: 6px;
  54. color: black;
  55. }
  56. td.mxWindowPane {
  57. vertical-align: top;
  58. padding: 0px;
  59. }
  60. div.mxWindowPane {
  61. overflow: hidden;
  62. position: relative;
  63. }
  64. td.mxWindowPane td {
  65. font-family: Arial;
  66. font-size: 8pt;
  67. }
  68. td.mxWindowPane input, td.mxWindowPane select, td.mxWindowPane textarea, td.mxWindowPane radio {
  69. border-color: #8C8C8C;
  70. border-style: solid;
  71. border-width: 1px;
  72. font-family: Arial;
  73. font-size: 8pt;
  74. padding: 1px;
  75. }
  76. td.mxWindowPane button {
  77. background: url('../images/button.gif') repeat-x;
  78. font-family: Arial;
  79. font-size: 8pt;
  80. padding: 2px;
  81. float: left;
  82. }
  83. img.mxToolbarItem {
  84. margin-right: 6px;
  85. margin-bottom: 6px;
  86. border-width: 1px;
  87. }
  88. select.mxToolbarCombo {
  89. vertical-align: top;
  90. border-style: inset;
  91. border-width: 2px;
  92. }
  93. div.mxToolbarComboContainer {
  94. padding: 2px;
  95. }
  96. img.mxToolbarMode {
  97. margin: 2px;
  98. margin-right: 4px;
  99. margin-bottom: 4px;
  100. border-width: 0px;
  101. }
  102. img.mxToolbarModeSelected {
  103. margin: 0px;
  104. margin-right: 2px;
  105. margin-bottom: 2px;
  106. border-width: 2px;
  107. border-style: inset;
  108. }
  109. div.mxTooltip {
  110. -webkit-box-shadow: 3px 3px 12px #C0C0C0;
  111. -moz-box-shadow: 3px 3px 12px #C0C0C0;
  112. box-shadow: 3px 3px 12px #C0C0C0;
  113. background: #FFFFCC;
  114. border-style: solid;
  115. border-width: 1px;
  116. border-color: black;
  117. font-family: Arial;
  118. font-size: 8pt;
  119. position: absolute;
  120. cursor: default;
  121. padding: 4px;
  122. color: black;
  123. }
  124. div.mxPopupMenu {
  125. -webkit-box-shadow: 3px 3px 12px #C0C0C0;
  126. -moz-box-shadow: 3px 3px 12px #C0C0C0;
  127. box-shadow: 3px 3px 12px #C0C0C0;
  128. background: url('../images/window.gif');
  129. position: absolute;
  130. border-style: solid;
  131. border-width: 1px;
  132. border-color: black;
  133. }
  134. table.mxPopupMenu {
  135. border-collapse: collapse;
  136. margin-top: 1px;
  137. margin-bottom: 1px;
  138. }
  139. tr.mxPopupMenuItem {
  140. color: black;
  141. cursor: pointer;
  142. }
  143. tr.mxPopupMenuItemHover {
  144. background-color: #000066;
  145. color: #FFFFFF;
  146. cursor: pointer;
  147. }
  148. td.mxPopupMenuItem {
  149. padding: 2px 30px 2px 10px;
  150. white-space: nowrap;
  151. font-family: Arial;
  152. font-size: 8pt;
  153. }
  154. td.mxPopupMenuIcon {
  155. background-color: #D0D0D0;
  156. padding: 2px 4px 2px 4px;
  157. }
  158. .mxDisabled {
  159. opacity: 0.2 !important;
  160. cursor:default !important;
  161. }