1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- <?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_children($form); ?>
|