| | 125 | |
| | 126 | |
| | 127 | |
| | 128 | |
| | 129 | |
| | 130 | |
| | 131 | |
| | 132 | jQuery(document).ready(function($){ |
| | 133 | var win = window.dialogArguments || opener || parent || top, h = document.body.scrollHeight, jq = win.jQuery; |
| | 134 | |
| | 135 | jq('#customize-controls').css({ |
| | 136 | right: 'auto', |
| | 137 | width: '25%', |
| | 138 | position: 'fixed' |
| | 139 | }); |
| | 140 | |
| | 141 | jq('#customize-preview').css({ |
| | 142 | position: 'relative', |
| | 143 | left: '25%', |
| | 144 | width: '75%' |
| | 145 | }); |
| | 146 | |
| | 147 | jq('#customize-preview iframe').css({ |
| | 148 | height: h + 'px', |
| | 149 | overflow: 'hidden' |
| | 150 | }); |
| | 151 | |
| | 152 | jq('body').css({ |
| | 153 | position: 'static', |
| | 154 | left: '0', |
| | 155 | height: h + 'px', |
| | 156 | 'z-index': '0' |
| | 157 | }); |
| | 158 | }); |
| | 159 | |
| | 160 | |
| | 161 | |
| | 162 | |
| | 163 | |
| | 164 | |
| | 165 | |
| | 166 | |