_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
_elements.scss
94 lines
| 1 | /* ------------------------------------------------- |
| 2 | Elements |
| 3 | ------------------------------------------------- */ |
| 4 | |
| 5 | .wpmtst2 { |
| 6 | max-width: 1200px; |
| 7 | |
| 8 | /* The generic classname `submit` conflicts with an unknown plugin or theme overzealous style. */ |
| 9 | p.wpmtst-submit { |
| 10 | margin-top: 2em; |
| 11 | } |
| 12 | |
| 13 | /* views section heading */ |
| 14 | h3 { |
| 15 | background: #FFF; |
| 16 | color: $blue; |
| 17 | font-weight: 400; |
| 18 | border: 1px solid #DDD; |
| 19 | border-bottom: 0; |
| 20 | padding: 10px 15px; |
| 21 | margin-bottom: 0; |
| 22 | margin-top: 1.5rem; |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | .form-table td p.description { |
| 27 | margin-top: 0; |
| 28 | font-style: italic; |
| 29 | |
| 30 | &.tall { |
| 31 | line-height: 32px; |
| 32 | margin-top: 0; |
| 33 | } |
| 34 | |
| 35 | &.short { |
| 36 | line-height: 22px; |
| 37 | padding: 5px 0; |
| 38 | } |
| 39 | |
| 40 | &.solo { |
| 41 | margin-left: 0.3em; |
| 42 | } |
| 43 | |
| 44 | &.under-checkbox { |
| 45 | margin-left: 22px; |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | /* Misc positioning */ |
| 50 | |
| 51 | .inline { |
| 52 | display: inline-block; |
| 53 | margin-right: 1em; |
| 54 | vertical-align: top; |
| 55 | |
| 56 | &:last-child { |
| 57 | margin-right: 0; |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | .inline span, |
| 62 | .row span { |
| 63 | display: inline-block; |
| 64 | margin-right: 3px; |
| 65 | } |
| 66 | |
| 67 | .inline-middle { |
| 68 | vertical-align: middle; |
| 69 | } |
| 70 | |
| 71 | .tight { |
| 72 | margin-right: 0.2em; |
| 73 | } |
| 74 | |
| 75 | .tight:last-child, |
| 76 | .last { |
| 77 | margin-right: 0; |
| 78 | } |
| 79 | |
| 80 | .checkbox, |
| 81 | .form-table th.checkbox { |
| 82 | line-height: 32px; |
| 83 | } |
| 84 | |
| 85 | .field { |
| 86 | position: relative; |
| 87 | |
| 88 | & div { |
| 89 | display: inline-block; |
| 90 | padding: 0.2em 0.3em; |
| 91 | } |
| 92 | } |
| 93 | |
| 94 |