tripal_views_integration_fields_form.tpl.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. }
  27. #tripal-views-integration-form .field-headers div {
  28. display: inline-block;
  29. margin: 0px;
  30. vertical-align: top;
  31. }
  32. #tripal-views-integration-form .column-name {
  33. font-weight: bold;
  34. }
  35. #tripal-views-integration-form .column-type {
  36. font-style: italic;
  37. }
  38. #tripal-views-integration-form .column-one {
  39. width: 20%;
  40. height: 50px;
  41. }
  42. #tripal-views-integration-form .fields-new-row {
  43. padding-bottom: 10px;
  44. margin-bottom: 5px;
  45. padding-top: 10px;
  46. }
  47. </style>
  48. <?php print drupal_render($form); ?>
  49. <!-- END -->