12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- /**
- * @file
- * Template file for the views integration fields form.
- */
- ?>
- <style type="text/css">
- #tripal-views-integration-form .fields-new-row, .field-headers {
- dislay: block;
- margin: 0px;
- border-bottom-style: solid;
- border-bottom-width: 1px;
- }
- #tripal-views-integration-form .form-item {
- margin: 0px 0px 5px 0px;
- }
- #tripal-views-integration-form .column-one, .column-two, .column-three, .column-four {
- display: inline-block;
- margin: 0px;
- vertical-align: top;
- margin-left: 15px;
- /**border: 1px solid #000;*/
- }
- #tripal-views-integration-form .field-headers {
- font-weight: bold;
- }
- #tripal-views-integration-form .field-headers div {
- display: inline-block;
- margin: 0px;
- vertical-align: top;
- }
- #tripal-views-integration-form .column-name {
- font-weight: bold;
- }
- #tripal-views-integration-form .column-type {
- font-style: italic;
- }
- #tripal-views-integration-form .column-one {
- width: 10%;
- height: 50px;
- }
- #tripal-views-integration-form .column-two, .column-three, .column-four {
- width: 25%;
- }
- #tripal-views-integration-form .fields-new-row {
- padding-bottom: 10px;
- margin-bottom: 5px;
- padding-top: 10px;
- }
- </style>
- <?php print drupal_render($form); ?>
- <!-- END -->
|