tripal.css 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. .tripal-info-box {
  2. width: 100%;
  3. padding-bottom: 10px;
  4. }
  5. .tripal-table {
  6. width: 100%;
  7. }
  8. .tripal-table-horz {
  9. border-top: 2px solid #999999;
  10. border-bottom: 2px solid #999999;
  11. }
  12. /* settings for vertical tables (headers across left-side) */
  13. .tripal-info-box table.tripal-table-vert .tripal-table-even-row th {
  14. background-color: #EEEEEE;
  15. font-weight: none;
  16. text-align: right;
  17. }
  18. .tripal-info-box table.tripal-table-vert .tripal-table-odd-row th {
  19. background-color: #FFFFFF;
  20. text-align: right;
  21. }
  22. .tripal-info-box table.tripal-table-vert .tripal-table-even-row {
  23. background-color: #EEEEEE;
  24. border-top: 1px solid #CCCCCC;
  25. border-bottom: 1px solid #CCCCCC;
  26. }
  27. .tripal-info-box table.tripal-table-vert .tripal-table-odd-row {
  28. background-color: #FFFFFF;
  29. border-top: 1px solid #CCCCCC;
  30. border-bottom: 1px solid #CCCCCC;
  31. }
  32. /* settings for horizontal tables (headers across top) */
  33. .tripal-info-box table.tripal-table-horz th {
  34. background-color: #EEEEFF;
  35. font-weight: none;
  36. text-align: left;
  37. }
  38. .tripal-info-box table.tripal-table-horz .tripal-table-even-row {
  39. background-color: #FFFFFF;
  40. font-weight: none;
  41. text-align: left;
  42. border-top: 1px solid #CCCCCC;
  43. border-bottom: 1px solid #CCCCCC;
  44. }
  45. .tripal-info-box table.tripal-table-horz .tripal-table-odd-row {
  46. background-color: #EEEEEE;
  47. text-align: left;
  48. border-top: 1px solid #CCCCCC;
  49. border-bottom: 1px solid #CCCCCC;
  50. }
  51. .tripal-info-box-title {
  52. font-size: 1.5em;
  53. padding-bottom: 5px;
  54. }
  55. /* hide the title when inside of a block on a panel */
  56. .pane-block .tripal-info-box-title {
  57. visibility: hidden;
  58. padding: 0;
  59. margin: 0;
  60. height: 0px;
  61. }
  62. /* Ajax loader */
  63. #tripal_ajaxLoading {
  64. position: fixed;
  65. top: 40%;
  66. left: 40%;
  67. padding: 15px;
  68. border: 1px solid #000000;
  69. background-color: #EEEEEE;
  70. opacity: 0.75;
  71. -moz-opacity: 0.75;
  72. z-index: 10;
  73. }
  74. #tripal_ajaxLoading #loadingText {
  75. font-weight: bold;
  76. font-size: 1.5em;
  77. color: #000000;
  78. }
  79. /* Restrict the list of checkboxes in a 300px window */
  80. .form-checkboxes {
  81. height: auto;
  82. max-height: 300px;
  83. overflow: auto;
  84. }
  85. /* no results message */
  86. .tripal-no-results {
  87. font-style: italic;
  88. padding: 10px;
  89. background-color: #FFEEEE;
  90. }