tripal.css 3.3 KB

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