default.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. /* CSS Document */
  2. body {
  3. font-family: Verdana, Arial, Helevtica;
  4. font-size: smaller;
  5. background-color: #ffffff;
  6. color:#000000;
  7. margin: 0; /* Remove body margin/padding */
  8. padding: 0;
  9. overflow: hidden; /* Remove scroll bars on browser window */
  10. }
  11. table {
  12. border: 1px solid #000000;
  13. }
  14. .raw_output {
  15. font-family: Courier-New, Courier, Arial, Helevtica;
  16. font-size: smaller;
  17. background-color: #eeeeee;
  18. color: #000000;
  19. border: 1px dashed #000000;
  20. padding: 0.25em;
  21. margin-top: 1em;
  22. }
  23. th {
  24. font-family: Verdana, Arial, Helevtica;
  25. font-size: smaller;
  26. color: #000000;
  27. background-color:#E1DEB5;
  28. }
  29. td {
  30. font-family: Verdana, Arial, Helevtica;
  31. font-size: smaller;
  32. }
  33. td.label {
  34. font-family: Verdana, Arial, Helevtica;
  35. font-size: smaller;
  36. color: #000000;
  37. background-color:#E1DEB5;
  38. padding: 0.2em;
  39. }
  40. a.small_action {
  41. font-family: Verdana, Arial, Helvetica;
  42. font-size: smaller;
  43. color: #000000;
  44. text-decoration:none;
  45. }
  46. .display_block {
  47. border: 1px dashed #CCC;
  48. background: #CFC;
  49. padding:0.25em;
  50. }
  51. .loading {
  52. border: 1px dashed #CCC;
  53. background: #FCC;
  54. padding:0.25em;
  55. }
  56. /* By Rom */
  57. .csvimport_createobj {
  58. color: #AA0000;
  59. background-color:#EEEEEE;
  60. }
  61. .csvimport_error {
  62. font-weight: bold;
  63. color: #FF0000;
  64. background-color:#EEEEEE;
  65. }
  66. .csvimport_warning {
  67. color: #CC8888;
  68. background-color:#EEEEEE;
  69. }
  70. .csvimport_ok {
  71. color: #00000;
  72. background-color:#BBFFBB;
  73. }
  74. .csvimport_reconkey {
  75. font-style: italic;
  76. color: #888888;
  77. background-color:#FFFFF;
  78. }
  79. .csvimport_extreconkey {
  80. color: #888888;
  81. background-color:#FFFFFF;
  82. }
  83. .treeview, .treeview ul {
  84. padding: 0;
  85. margin: 0;
  86. list-style: none;
  87. }
  88. .treeview li {
  89. margin: 0;
  90. padding: 3px 0pt 3px 16px;
  91. }
  92. ul.dir li { padding: 2px 0 0 16px; }
  93. .treeview li { background: url(../images/tv-item.gif) 0 0 no-repeat; }
  94. .treeview .collapsable { background-image: url(../images/tv-collapsable.gif); }
  95. .treeview .expandable { background-image: url(../images/tv-expandable.gif); }
  96. .treeview .last { background-image: url(../images/tv-item-last.gif); }
  97. .treeview .lastCollapsable { background-image: url(../images/tv-collapsable-last.gif); }
  98. .treeview .lastExpandable { background-image: url(../images/tv-expandable-last.gif); }
  99. #MySplitter {
  100. /* Height is set to match window size in $().ready() below */
  101. border:0px;
  102. margin:4px;
  103. padding:0px;
  104. min-width: 100px; /* Splitter can't be too thin ... */
  105. min-height: 100px; /* ... or too flat */
  106. }
  107. #LeftPane {
  108. background: #f0eee0;
  109. padding: 4px;
  110. overflow: auto; /* Scroll bars appear as needed */
  111. color:#666;
  112. }
  113. #TopPane { /* Top nested in right pane */
  114. background: #f0eee0;
  115. padding: 4px;
  116. height: 150px; /* Initial height */
  117. min-height: 75px; /* Minimum height */
  118. overflow: auto;
  119. color:#666;
  120. }
  121. #RightPane { /* Bottom nested in right pane */
  122. background: #79b;
  123. height:150px; /* Initial height */
  124. min-height:130px;
  125. no.padding:15px;
  126. no.margin:10px;
  127. overflow:auto;
  128. color:#fff;
  129. }
  130. #BottomPane { /* Bottom nested in right pane */
  131. background: #79b;
  132. padding: 4px;
  133. overflow: auto;
  134. color:#fff;
  135. }
  136. #MySplitter .vsplitbar {
  137. width: 7px;
  138. height: 50px;
  139. background: #68a url(../images/vgrabber2.gif) no-repeat center;
  140. }
  141. #MySplitter .vsplitbar.active, #MySplitter .vsplitbar:hover {
  142. background: #68a url(../images/vgrabber2_active.gif) no-repeat center;
  143. }
  144. #MySplitter .hsplitbar {
  145. height: 8px;
  146. background: #68a url(../images/hgrabber2.gif) no-repeat center;
  147. }
  148. #MySplitter .hsplitbar.active, #MySplitter .hsplitbar:hover {
  149. background: #68a url(../images/hgrabber2_active.gif) no-repeat center;
  150. }