_background.scss
1 year ago
_category-checkboxes.scss
1 year ago
_category-filter.scss
1 year ago
_checkbox-icons.scss
1 year ago
_custom-fields.scss
1 year ago
_elements.scss
1 year ago
_form-table.scss
1 year ago
_help-tab.scss
1 year ago
_inner-table.scss
1 year ago
_inputs.scss
1 year ago
_layout-example-columns.scss
1 year ago
_layout-example-grid.scss
1 year ago
_layout-example-masonry.scss
1 year ago
_layout-examples.scss
1 year ago
_layout.scss
1 year ago
_list-radio-buttons.scss
1 year ago
_misc.scss
1 year ago
_screenshots.scss
1 year ago
_sticky-views.scss
1 year ago
_structure.scss
1 year ago
_template.scss
1 year ago
_view-info.scss
1 year ago
_form-table.scss
99 lines
| 1 | /* ------------------------------------------------- |
| 2 | Form table |
| 3 | ------------------------------------------------- */ |
| 4 | |
| 5 | .form-table { |
| 6 | margin-top: 0; |
| 7 | background: #FEFEFE; |
| 8 | width: 100% !important; |
| 9 | border: 1px solid #DDD; |
| 10 | |
| 11 | &.multiple { |
| 12 | width: auto; |
| 13 | } |
| 14 | |
| 15 | tr { |
| 16 | border: 1px solid #DDD; |
| 17 | } |
| 18 | |
| 19 | th, |
| 20 | td { |
| 21 | vertical-align: top; |
| 22 | } |
| 23 | |
| 24 | th { |
| 25 | font-weight: 400; |
| 26 | white-space: nowrap; |
| 27 | vertical-align: top; |
| 28 | width: 150px; |
| 29 | padding: 10px 15px; |
| 30 | } |
| 31 | |
| 32 | td { |
| 33 | padding: 10px; |
| 34 | |
| 35 | &.valign-middle { |
| 36 | vertical-align: middle; |
| 37 | } |
| 38 | |
| 39 | &.w1 { |
| 40 | width: 185px; |
| 41 | } |
| 42 | |
| 43 | &.w2 { |
| 44 | width: 300px; |
| 45 | } |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | tr.subheading { |
| 50 | font-weight: 600; |
| 51 | |
| 52 | td { |
| 53 | padding: 5px 10px; |
| 54 | |
| 55 | &:first-child { |
| 56 | padding-left: 15px; |
| 57 | } |
| 58 | |
| 59 | &:last-child { |
| 60 | width: 190px; |
| 61 | } |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | td.divider { |
| 66 | border-left: 1px dashed #DDD; |
| 67 | } |
| 68 | |
| 69 | .wpmtst2 .form-table th, |
| 70 | .wpmtst2 .form-table th label { |
| 71 | line-height: 30px; |
| 72 | margin-top: 0; |
| 73 | margin-bottom: 0; |
| 74 | } |
| 75 | |
| 76 | span.title { |
| 77 | display: inline-block; |
| 78 | margin-right: 1em; |
| 79 | } |
| 80 | |
| 81 | .row, |
| 82 | .row p { |
| 83 | vertical-align: middle; |
| 84 | line-height: 32px; |
| 85 | } |
| 86 | |
| 87 | .row.tall, |
| 88 | .row.tall p { |
| 89 | line-height: 40px; |
| 90 | } |
| 91 | |
| 92 | .row.links { |
| 93 | margin-top: 10px; |
| 94 | } |
| 95 | |
| 96 | .row:not(:first-child) .row-inner { |
| 97 | margin-top: 10px; |
| 98 | } |
| 99 |