tripal.css 2.2 KB

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