common.css 3.1 KB

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