tripal.css 2.3 KB

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