tripal.css 1.8 KB

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