tripal.css 2.1 KB

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