tripal.css 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. table.tripal_table_vert {
  2. width: 0px; /* reset the table width */
  3. }
  4. tbody.tripal_table_vert, tbody th {
  5. border: 0px solid #CCCCCC;
  6. padding: 0px;
  7. }
  8. table.tripal_table_horz {
  9. width: 0px; /* reset the table width */
  10. }
  11. tbody.tripal_table_horz, tbody th {
  12. border: 0px solid #CCCCCC;
  13. padding: 5px 15px 10px 0px;
  14. margin: 0px;
  15. }
  16. td.tripal_table_horz, td {
  17. padding: 0px 15px 5px 0px;
  18. margin: 0px;
  19. }
  20. .tripal_expandableBox {
  21. padding: 10px 10px 10px 10px;
  22. border: 1px solid #CCC5AE;
  23. cursor: pointer; /* hand-shaped cursor */
  24. background-image: url("../images/arrow-up-48x48.png");
  25. background-repeat: no-repeat;
  26. background-position: top right;
  27. background-color: #EEEFFF;
  28. }
  29. .tripal_expandableBoxContent{
  30. margin: 0 0 0 0;
  31. padding: 5px 5px 5px 5px;
  32. clear:both;
  33. border-right: 1px solid #CCC5AE;
  34. border-bottom: 1px solid #CCC5AE;
  35. border-left: 1px solid #CCC5AE;
  36. background-color: #FFFFFF;
  37. font-size: small;
  38. overflow: auto;
  39. }
  40. .tripal_expandableSubBoxContent{
  41. padding: 5px 5px 5px 5px;
  42. clear:both;
  43. border-right: 1px solid #CCC5AE;
  44. border-bottom: 1px solid #CCC5AE;
  45. border-left: 1px solid #CCC5AE;
  46. border-top: 1px solid #CCC5AE;
  47. background-color: #EEFEEE;
  48. overflow: auto;
  49. min-height: 150px;
  50. font-family: courier;
  51. }
  52. #tripal_expandableBox_toggle_button {
  53. cursor: pointer; /* hand-shaped cursor */
  54. }
  55. #tripal_ajaxLoading {
  56. position: fixed;
  57. top: 40%;
  58. left: 40%;
  59. padding: 15px;
  60. border: 1px solid #000000;
  61. background-color: #EEEEEE;
  62. opacity: 0.75;
  63. -moz-opacity: 0.75;
  64. z-index: 10;
  65. }
  66. #tripal_ajaxLoading #loadingText {
  67. font-weight: bold;
  68. font-size: 1.5em;
  69. color: #000000;
  70. }
  71. /* Restrict the list of checkboxes in a 300px window */
  72. .form-checkboxes {
  73. height: auto;
  74. max-height: 300px;
  75. overflow: auto;
  76. }