tripal_views_integration_fields_form.tpl.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. /**
  3. * @file
  4. * Template file for the views integration fields form.
  5. */
  6. ?>
  7. <style type="text/css">
  8. #tripal-views-integration-form .fields-new-row, .field-headers {
  9. dislay: block;
  10. margin: 0px;
  11. border-bottom-style: solid;
  12. border-bottom-width: 1px;
  13. }
  14. #tripal-views-integration-form .form-item {
  15. margin: 0px 0px 5px 0px;
  16. }
  17. #tripal-views-integration-form .column-one, .column-two, .column-three, .column-four {
  18. display: inline-block;
  19. margin: 0px;
  20. vertical-align: top;
  21. margin-left: 15px;
  22. /**border: 1px solid #000;*/
  23. }
  24. #tripal-views-integration-form .field-headers {
  25. font-weight: bold;
  26. height: 15px;
  27. }
  28. #tripal-views-integration-form .field-headers div {
  29. display: inline-block;
  30. margin: 0px;
  31. vertical-align: top;
  32. padding-left: 15px;
  33. }
  34. #tripal-views-integration-form .column-name {
  35. font-weight: bold;
  36. }
  37. #tripal-views-integration-form .column-type {
  38. font-style: italic;
  39. }
  40. #tripal-views-integration-form .column-one {
  41. width: 30%;
  42. height: 50px;
  43. }
  44. #tripal-views-integration-form .column-two, .column-four {
  45. width: 30%;
  46. }
  47. #tripal-views-integration-form .column-three {
  48. width: 0%;
  49. }
  50. #tripal-views-integration-form .fields-new-row {
  51. padding-bottom: 10px;
  52. margin-bottom: 5px;
  53. padding-top: 10px;
  54. }
  55. #tripal-views-integration-form .joins-new-row {
  56. padding-bottom: 10px;
  57. margin-bottom: 5px;
  58. padding-top: 10px;
  59. border-bottom-style: solid;
  60. border-bottom-width: 1px;
  61. }
  62. #tripal-views-integration-form .join-column-one, .join-column-two, .join-column-three {
  63. display: inline-block;
  64. margin: 0px;
  65. vertical-align: top;
  66. margin-left: 15px;
  67. width: 30%;
  68. }
  69. </style>
  70. <?php print drupal_render_children($form); ?>