tripal_views_integration_fields_form.tpl.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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: 10%;
  40. height: 50px;
  41. }
  42. #tripal-views-integration-form .column-two, .column-three, .column-four {
  43. width: 25%;
  44. }
  45. #tripal-views-integration-form .fields-new-row {
  46. padding-bottom: 10px;
  47. margin-bottom: 5px;
  48. padding-top: 10px;
  49. }
  50. </style>
  51. <?php print drupal_render($form); ?>
  52. <!-- END -->