global.css
| 1 | /*--------------------------------------------------------------------------------------------- |
| 2 | Table |
| 3 | ---------------------------------------------------------------------------------------------*/ |
| 4 | table.acf_input { |
| 5 | border: 0 none; |
| 6 | } |
| 7 | |
| 8 | table.acf_input tbody tr td { |
| 9 | padding: 10px; |
| 10 | } |
| 11 | |
| 12 | table.acf_input tr.field_save { |
| 13 | |
| 14 | } |
| 15 | |
| 16 | table.acf_input tbody tr:last-child td { |
| 17 | border-bottom: 0 none; |
| 18 | } |
| 19 | |
| 20 | table.acf_input tbody tr td.label { |
| 21 | width: 24%; |
| 22 | vertical-align: top; |
| 23 | border-right: #ebebeb solid 1px; |
| 24 | } |
| 25 | |
| 26 | table.acf_input tbody tr td.label label{ |
| 27 | display: block; |
| 28 | font-size: 12px; |
| 29 | font-weight: bold; |
| 30 | padding: 0; |
| 31 | margin: 0; |
| 32 | color: #333; |
| 33 | |
| 34 | } |
| 35 | |
| 36 | table.acf_input tbody tr td.label label span.required { |
| 37 | color: #f00; |
| 38 | display: inline; |
| 39 | margin-right: 5px; |
| 40 | } |
| 41 | |
| 42 | |
| 43 | table.acf_input tbody tr td.label p{ |
| 44 | display: block; |
| 45 | font-size: 10px; |
| 46 | padding: 6px 0 !important; |
| 47 | margin: 0 !important; |
| 48 | font-style: normal; |
| 49 | line-height: 16px; |
| 50 | color: #666; |
| 51 | } |
| 52 | |
| 53 | table.acf_input input[type=text], |
| 54 | table.acf_input textarea, |
| 55 | table.acf_input select{ |
| 56 | width: 99.95%; |
| 57 | padding: 5px; |
| 58 | outline: none; |
| 59 | } |
| 60 | |
| 61 | table.acf_input select { |
| 62 | padding: 2px; |
| 63 | } |
| 64 | |
| 65 | table.acf_input input[type=text]:focus, |
| 66 | table.acf_input textarea:focus, |
| 67 | table.acf_input select:focus { |
| 68 | border-color:#98B6CB; |
| 69 | } |
| 70 | |
| 71 | |
| 72 | ul.radio_list { |
| 73 | position: relative; |
| 74 | overflow: hidden; |
| 75 | display: block; |
| 76 | padding: 3px 0; |
| 77 | } |
| 78 | |
| 79 | ul.radio_list input[type="radio"] { |
| 80 | margin-right: 5px; |
| 81 | } |
| 82 | |
| 83 | ul.radio_list.horizontal li { |
| 84 | float: left; |
| 85 | margin-right: 20px; |
| 86 | } |
| 87 | |
| 88 | ul.checkbox_list { |
| 89 | background: transparent !important; |
| 90 | } |
| 91 | |
| 92 | ul.checkbox_list input[type="checkbox"] { |
| 93 | margin-right: 5px; |
| 94 | } |
| 95 |