tripal.css 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  1. .tripal-info-box {
  2. width: 100%;
  3. padding-bottom: 10px;
  4. }
  5. .tripal-info-box-nosidebar {
  6. width: 100%;
  7. padding-bottom: 10px;
  8. }
  9. .tripal-table {
  10. width: 100%;
  11. }
  12. .tripal-table th,
  13. .tripal-table td {
  14. vertical-align:text-top;
  15. padding-left: 10px;
  16. padding-right: 10px;
  17. padding-top: 5px;
  18. padding-bottom: 5px;
  19. }
  20. .tripal-table-horz {
  21. border-top: 1px solid #999999;
  22. border-bottom: 1px solid #999999;
  23. }
  24. /* settings for vertical tables (headers across left-side) */
  25. table.tripal-table-vert .tripal-table-even-row th {
  26. background-color: #EEEEEE;
  27. font-weight: none;
  28. text-align: right;
  29. }
  30. table.tripal-table-vert .tripal-table-odd-row th {
  31. background-color: #FFFFFF;
  32. text-align: right;
  33. }
  34. table.tripal-table-vert .tripal-table-even-row {
  35. background-color: #EEEEEE;
  36. border-top: 1px solid #CCCCCC;
  37. border-bottom: 1px solid #CCCCCC;
  38. }
  39. table.tripal-table-vert .tripal-table-odd-row {
  40. background-color: #FFFFFF;
  41. border-top: 1px solid #CCCCCC;
  42. border-bottom: 1px solid #CCCCCC;
  43. }
  44. /* settings for horizontal tables (headers across top) */
  45. table.tripal-table-horz th {
  46. background-color: #EEEEFF;
  47. font-weight: none;
  48. text-align: left;
  49. }
  50. table.tripal-table-horz .tripal-table-even-row {
  51. background-color: #FFFFFF;
  52. font-weight: none;
  53. text-align: left;
  54. border-top: 1px solid #CCCCCC;
  55. border-bottom: 1px solid #CCCCCC;
  56. }
  57. table.tripal-table-horz .tripal-table-odd-row {
  58. background-color: #EEEEEE;
  59. text-align: left;
  60. border-top: 1px solid #CCCCCC;
  61. border-bottom: 1px solid #CCCCCC;
  62. }
  63. .tripal-info-box-title {
  64. font-size: 1.5em;
  65. padding-bottom: 15px;
  66. }
  67. .tripal-info-box-title-nosidebar {
  68. font-size: 1.5em;
  69. padding-bottom: 15px;
  70. }
  71. .tripal-info-box-desc {
  72. padding-bottom: 15px;
  73. }
  74. /* hide the title when inside of a block on a panel */
  75. .pane-block .tripal-info-box-title {
  76. visibility: hidden;
  77. padding: 0;
  78. margin: 0;
  79. height: 0px;
  80. }
  81. /* Ajax loader */
  82. #tripal_ajaxLoading {
  83. position: fixed;
  84. top: 40%;
  85. left: 40%;
  86. padding: 15px;
  87. border: 1px solid #000000;
  88. background-color: #EEEEEE;
  89. opacity: 0.75;
  90. -moz-opacity: 0.75;
  91. z-index: 10;
  92. }
  93. #tripal_ajaxLoading #loadingText {
  94. font-weight: bold;
  95. font-size: 1.5em;
  96. color: #000000;
  97. }
  98. /* Restrict the list of checkboxes in a 300px window */
  99. .form-checkboxes {
  100. height: auto;
  101. max-height: 300px;
  102. overflow: auto;
  103. }
  104. /* no results message */
  105. .tripal-no-results {
  106. font-style: italic;
  107. padding: 10px;
  108. background-color: #FFEEEE;
  109. }
  110. .tripal_toc {
  111. float: left;
  112. width: 20%;
  113. background-color: #EEEEEE;
  114. -moz-border-radius: 15px;
  115. -webkit-border-radius: 15px;
  116. -khtml-border-radius: 15px;
  117. border-radius: 15px;
  118. -moz-box-shadow: 3px 3px 4px #888888;
  119. -webkit-box-shadow: 3px 3px 4px #888888;
  120. box-shadow: 3px 3px 4px #888888;
  121. padding: 20px;
  122. min-height: 500px;
  123. border-style:solid;
  124. border-width:1px;
  125. }
  126. .tripal_toc ul {
  127. margin-left: 0px;
  128. margin-top: 5px;
  129. padding-left: 15px;
  130. }
  131. .tripal_toc_title {
  132. font-size: 1.5em;
  133. line-height: 110%;
  134. padding-bottom: 10px;
  135. }
  136. .tripal_toc_desc {
  137. /*font-style: italic; */
  138. }
  139. .tripal_details {
  140. float: left;
  141. width: 69%;
  142. background-color: #FFFFFF;
  143. -moz-border-radius: 15px;
  144. -webkit-border-radius: 15px;
  145. -khtml-border-radius: 15px;
  146. border-radius: 15px;
  147. -moz-box-shadow: 3px 3px 4px #888888;
  148. -webkit-box-shadow: 3px 3px 4px #888888;
  149. box-shadow: 3px 3px 4px #888888;
  150. padding: 20px;
  151. min-height: 500px;
  152. margin-right: 10px;
  153. margin-bottom: 10px;
  154. border-style:solid;
  155. border-width:1px;
  156. overflow:auto;
  157. }
  158. .tripal_details_full {
  159. float: left;
  160. width: 95%;
  161. background-color: #FFFFFF;
  162. -moz-border-radius: 15px;
  163. -webkit-border-radius: 15px;
  164. -khtml-border-radius: 15px;
  165. border-radius: 15px;
  166. -moz-box-shadow: 3px 3px 4px #888888;
  167. -webkit-box-shadow: 3px 3px 4px #888888;
  168. box-shadow: 3px 3px 4px #888888;
  169. padding: 20px;
  170. min-height: 500px;
  171. margin-right: 10px;
  172. margin-bottom: 10px;
  173. border-style:solid;
  174. border-width:1px;
  175. overflow:auto;
  176. }
  177. .tripal-subtable {
  178. border-collapse:collapse;
  179. border: 0px solid black;
  180. width: auto;
  181. }
  182. .tripal-subtable td {
  183. padding: 0px 5px 5px 0px;
  184. border: 0px solid black;
  185. }
  186. .tripal-notice {
  187. color: red;
  188. }