about.css
7 years ago
admin-compat.css
7 years ago
admin-form.css
7 years ago
fields.css
7 years ago
form-preview.css
7 years ago
number-spinner.css
7 years ago
order.css
7 years ago
polylang.css
7 years ago
post-editor.css
7 years ago
views.css
7 years ago
wpml.css
7 years ago
admin-form.css
139 lines
| 1 | |
| 2 | /* Settings tab for Form Notification Email |
| 3 | ------------------------------------------------*/ |
| 4 | .match-height { |
| 5 | /* match WordPress - divs with text inputs are taller than ones with radio buttons */ |
| 6 | margin: 0.25em 0 0.5em !important; |
| 7 | } |
| 8 | .email-container { |
| 9 | display: flex; |
| 10 | flex-direction: column; |
| 11 | max-width: 900px; |
| 12 | } |
| 13 | .email-container > div { |
| 14 | margin-bottom: 2px; |
| 15 | } |
| 16 | .email-option-row { |
| 17 | display: flex; |
| 18 | flex-direction: row; |
| 19 | background: #FFF; |
| 20 | padding: 0 10px; |
| 21 | } |
| 22 | .no-padding { |
| 23 | padding: 0; |
| 24 | } |
| 25 | .email-option-row.column { |
| 26 | flex-direction: column; |
| 27 | } |
| 28 | /* row > column 1 */ |
| 29 | .email-option-desc { |
| 30 | flex: 0 0 8%; |
| 31 | min-width: 80px; |
| 32 | padding: 10px 0; |
| 33 | font-weight: 600; |
| 34 | } |
| 35 | /* row > column 2 */ |
| 36 | .email-option-inputs { |
| 37 | flex: 1 0 auto; |
| 38 | flex-direction: column; |
| 39 | } |
| 40 | .email-option { |
| 41 | flex: 0 0 100%; |
| 42 | display: flex; |
| 43 | flex-direction: row; |
| 44 | } |
| 45 | .email-option.header { |
| 46 | padding: 10px 0; |
| 47 | } |
| 48 | .email-option.body { |
| 49 | padding: 10px 0; |
| 50 | } |
| 51 | .email-option.footer { |
| 52 | padding: 10px 0; |
| 53 | } |
| 54 | .email-option-first { |
| 55 | margin-top: 10px ; |
| 56 | } |
| 57 | .email-option.single { |
| 58 | } |
| 59 | .email-option:not(:last-child) { |
| 60 | border-bottom: 1px solid #F2F2F2; |
| 61 | } |
| 62 | .email-option-part { /* 2 columns */ |
| 63 | flex: 1 0 auto; |
| 64 | display: flex; |
| 65 | flex-direction: column; |
| 66 | } |
| 67 | .email-option-part:first-child { |
| 68 | flex: 0 1 40%; |
| 69 | padding-right: 20px; |
| 70 | } |
| 71 | .email-option-part input[type="text"], |
| 72 | .email-option-part input[type="email"], |
| 73 | input.wide { |
| 74 | width: 100%; |
| 75 | } |
| 76 | .email-option-label { |
| 77 | padding-left: 3px; |
| 78 | } |
| 79 | .email-option-fieldset { |
| 80 | display: flex; |
| 81 | flex-direction: row; |
| 82 | } |
| 83 | .email-option-fieldset .controls { |
| 84 | flex: 0 0 30px; |
| 85 | justify-content: center; |
| 86 | } |
| 87 | .email-option-fieldset .controls input[type="radio"] { |
| 88 | margin-top: 2px; |
| 89 | } |
| 90 | .email-option-fieldset .fields { |
| 91 | flex: 1 0 auto; |
| 92 | } |
| 93 | .email-option-fieldset .controls, |
| 94 | .email-option-fieldset .fields { |
| 95 | display: flex; |
| 96 | height: 30px; |
| 97 | align-items: center; |
| 98 | } |
| 99 | |
| 100 | /* delete email recipient */ |
| 101 | .delete-recipient { |
| 102 | color: #999; |
| 103 | display: inline-block; |
| 104 | transition: all 0.2s ease; |
| 105 | } |
| 106 | .delete-recipient:hover { |
| 107 | cursor: pointer; |
| 108 | color: #FFF; |
| 109 | background: #FF0000; |
| 110 | border-radius: 1px; |
| 111 | } |
| 112 | |
| 113 | /* message */ |
| 114 | .email-container textarea { |
| 115 | white-space: pre-wrap; |
| 116 | width: 100%; |
| 117 | } |
| 118 | |
| 119 | /* template tags */ |
| 120 | .template-tags-help { |
| 121 | flex: 2 0 auto; |
| 122 | background: #FFFFE0; |
| 123 | } |
| 124 | .template-tags-help ul { |
| 125 | margin: 0; |
| 126 | } |
| 127 | .template-tags-help .title { |
| 128 | background: rgba(0, 0, 0, 0.1); |
| 129 | padding: 10px; |
| 130 | } |
| 131 | .template-tags-help .content { |
| 132 | padding: 10px; |
| 133 | } |
| 134 | .template-tags-help ul li { |
| 135 | display: inline-block; |
| 136 | cursor: pointer; |
| 137 | margin-right: 1em; |
| 138 | } |
| 139 |