annotate static/js/tiny_mce/plugins/style/props.htm @ 631:f36d1a168be7

For issue 27, disable login dialog button during POST. This seems to prevent multiple logins most of the time. You can still bang on the enter key and sometimes get more through.
author Brian Neal <bgneal@gmail.com>
date Wed, 14 Nov 2012 20:57:05 -0600
parents 6c182ceb7147
children
rev   line source
bgneal@312 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
bgneal@312 2 <html xmlns="http://www.w3.org/1999/xhtml">
bgneal@312 3 <head>
bgneal@312 4 <title>{#style_dlg.title}</title>
bgneal@312 5 <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
bgneal@312 6 <script type="text/javascript" src="../../utils/mctabs.js"></script>
bgneal@312 7 <script type="text/javascript" src="../../utils/editable_selects.js"></script>
bgneal@312 8 <script type="text/javascript" src="../../utils/form_utils.js"></script>
bgneal@312 9 <script type="text/javascript" src="js/props.js"></script>
bgneal@312 10 <link href="css/props.css" rel="stylesheet" type="text/css" />
bgneal@312 11 </head>
bgneal@312 12
bgneal@442 13 <body id="styleprops" style="display: none" role="application" aria-labelledby="app_title">
bgneal@442 14 <span id="app_title" style="display:none">{#style_dlg.title}</span>
bgneal@312 15 <form onsubmit="updateAction();return false;" action="#">
bgneal@312 16 <div class="tabs">
bgneal@312 17 <ul>
bgneal@442 18 <li id="text_tab" class="current" aria-controls="text_panel"><span><a href="javascript:mcTabs.displayTab('text_tab','text_panel');" onMouseDown="return false;">{#style_dlg.text_tab}</a></span></li>
bgneal@442 19 <li id="background_tab" aria-controls="background_panel"><span><a href="javascript:mcTabs.displayTab('background_tab','background_panel');" onMouseDown="return false;">{#style_dlg.background_tab}</a></span></li>
bgneal@442 20 <li id="block_tab" aria-controls="block_panel"><span><a href="javascript:mcTabs.displayTab('block_tab','block_panel');" onMouseDown="return false;">{#style_dlg.block_tab}</a></span></li>
bgneal@442 21 <li id="box_tab" aria-controls="box_panel"><span><a href="javascript:mcTabs.displayTab('box_tab','box_panel');" onMouseDown="return false;">{#style_dlg.box_tab}</a></span></li>
bgneal@442 22 <li id="border_tab" aria-controls="border_panel"><span><a href="javascript:mcTabs.displayTab('border_tab','border_panel');" onMouseDown="return false;">{#style_dlg.border_tab}</a></span></li>
bgneal@442 23 <li id="list_tab" aria-controls="list_panel"><span><a href="javascript:mcTabs.displayTab('list_tab','list_panel');" onMouseDown="return false;">{#style_dlg.list_tab}</a></span></li>
bgneal@442 24 <li id="positioning_tab" aria-controls="positioning_panel"><span><a href="javascript:mcTabs.displayTab('positioning_tab','positioning_panel');" onMouseDown="return false;">{#style_dlg.positioning_tab}</a></span></li>
bgneal@312 25 </ul>
bgneal@312 26 </div>
bgneal@312 27
bgneal@312 28 <div class="panel_wrapper">
bgneal@312 29 <div id="text_panel" class="panel current">
bgneal@442 30 <fieldset>
bgneal@442 31 <legend>{#style_dlg.text}</legend>
bgneal@442 32 <table role="presentation" border="0" width="100%">
bgneal@442 33 <tr>
bgneal@442 34 <td><label for="text_font">{#style_dlg.text_font}</label></td>
bgneal@442 35 <td colspan="3">
bgneal@442 36 <select id="text_font" name="text_font" class="mceEditableSelect mceFocus"></select>
bgneal@442 37 </td>
bgneal@442 38 </tr>
bgneal@442 39 <tr>
bgneal@442 40 <td><label for="text_size">{#style_dlg.text_size}</label></td>
bgneal@442 41 <td>
bgneal@442 42 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@442 43 <tr>
bgneal@442 44 <td><select id="text_size" name="text_size" class="mceEditableSelect"></select></td>
bgneal@442 45 <td>&nbsp;</td>
bgneal@442 46 <td>
bgneal@442 47 <label id="text_size_measurement_label" for="text_size_measurement" style="display: none; visibility: hidden;">Text Size Measurement Unit</label>
bgneal@442 48 <select id="text_size_measurement" name="text_size_measurement" aria-labelledby="text_size_measurement_label"></select>
bgneal@442 49 </td>
bgneal@442 50 </tr>
bgneal@442 51 </table>
bgneal@442 52 </td>
bgneal@442 53 <td><label for="text_weight">{#style_dlg.text_weight}</label></td>
bgneal@442 54 <td>
bgneal@442 55 <select id="text_weight" name="text_weight"></select>
bgneal@442 56 </td>
bgneal@442 57 </tr>
bgneal@442 58 <tr>
bgneal@442 59 <td><label for="text_style">{#style_dlg.text_style}</label></td>
bgneal@442 60 <td>
bgneal@442 61 <select id="text_style" name="text_style" class="mceEditableSelect"></select>
bgneal@442 62 </td>
bgneal@442 63 <td><label for="text_variant">{#style_dlg.text_variant}</label></td>
bgneal@442 64 <td>
bgneal@442 65 <select id="text_variant" name="text_variant"></select>
bgneal@442 66 </td>
bgneal@442 67 </tr>
bgneal@442 68 <tr>
bgneal@442 69 <td><label for="text_lineheight">{#style_dlg.text_lineheight}</label></td>
bgneal@442 70 <td>
bgneal@442 71 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@442 72 <tr>
bgneal@442 73 <td>
bgneal@442 74 <select id="text_lineheight" name="text_lineheight" class="mceEditableSelect"></select>
bgneal@442 75 </td>
bgneal@442 76 <td>&nbsp;</td>
bgneal@442 77 <td>
bgneal@442 78 <label id="text_lineheight_measurement_label" for="text_lineheight_measurement" style="display: none; visibility: hidden;">Line Height Measurement Unit</label>
bgneal@442 79 <select id="text_lineheight_measurement" name="text_lineheight_measurement" aria-labelledby="text_lineheight_measurement_label"></select>
bgneal@442 80 </td>
bgneal@442 81 </tr>
bgneal@442 82 </table>
bgneal@442 83 </td>
bgneal@442 84 <td><label for="text_case">{#style_dlg.text_case}</label></td>
bgneal@442 85 <td>
bgneal@442 86 <select id="text_case" name="text_case"></select>
bgneal@442 87 </td>
bgneal@442 88 </tr>
bgneal@442 89 <tr>
bgneal@442 90 <td><label for="text_color">{#style_dlg.text_color}</label></td>
bgneal@442 91 <td colspan="2">
bgneal@442 92 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
bgneal@442 93 <tr>
bgneal@442 94 <td><input id="text_color" name="text_color" type="text" value="" size="9" onChange="updateColor('text_color_pick','text_color');" /></td>
bgneal@442 95 <td id="text_color_pickcontainer">&nbsp;</td>
bgneal@442 96 </tr>
bgneal@442 97 </table>
bgneal@442 98 </td>
bgneal@442 99 </tr>
bgneal@442 100 <tr>
bgneal@442 101 <td valign="top" style="vertical-align: top; padding-top: 3px;">{#style_dlg.text_decoration}</td>
bgneal@442 102 <td colspan="2">
bgneal@442 103 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@442 104 <tr>
bgneal@442 105 <td><input id="text_underline" name="text_underline" class="checkbox" type="checkbox" /></td>
bgneal@442 106 <td><label for="text_underline">{#style_dlg.text_underline}</label></td>
bgneal@442 107 </tr>
bgneal@442 108 <tr>
bgneal@442 109 <td><input id="text_overline" name="text_overline" class="checkbox" type="checkbox" /></td>
bgneal@442 110 <td><label for="text_overline">{#style_dlg.text_overline}</label></td>
bgneal@442 111 </tr>
bgneal@442 112 <tr>
bgneal@442 113 <td><input id="text_linethrough" name="text_linethrough" class="checkbox" type="checkbox" /></td>
bgneal@442 114 <td><label for="text_linethrough">{#style_dlg.text_striketrough}</label></td>
bgneal@442 115 </tr>
bgneal@442 116 <tr>
bgneal@442 117 <td><input id="text_blink" name="text_blink" class="checkbox" type="checkbox" /></td>
bgneal@442 118 <td><label for="text_blink">{#style_dlg.text_blink}</label></td>
bgneal@442 119 </tr>
bgneal@442 120 <tr>
bgneal@442 121 <td><input id="text_none" name="text_none" class="checkbox" type="checkbox" /></td>
bgneal@442 122 <td><label for="text_none">{#style_dlg.text_none}</label></td>
bgneal@442 123 </tr>
bgneal@442 124 </table>
bgneal@442 125 </td>
bgneal@442 126 </tr>
bgneal@442 127 </table>
bgneal@442 128 </fieldset>
bgneal@312 129 </div>
bgneal@312 130
bgneal@312 131 <div id="background_panel" class="panel">
bgneal@442 132 <fieldset>
bgneal@442 133 <legend>{#style_dlg.background}</legend>
bgneal@442 134 <table role="presentation" border="0">
bgneal@442 135 <tr>
bgneal@442 136 <td><label for="background_color">{#style_dlg.background_color}</label></td>
bgneal@442 137 <td>
bgneal@442 138 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
bgneal@442 139 <tr>
bgneal@442 140 <td><input id="background_color" name="background_color" type="text" value="" size="9" onChange="updateColor('background_color_pick','background_color');" /></td>
bgneal@442 141 <td id="background_color_pickcontainer">&nbsp;</td>
bgneal@442 142 </tr>
bgneal@442 143 </table>
bgneal@442 144 </td>
bgneal@442 145 </tr>
bgneal@442 146
bgneal@442 147 <tr>
bgneal@442 148 <td><label for="background_image">{#style_dlg.background_image}</label></td>
bgneal@442 149 <td><table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@442 150 <tr>
bgneal@442 151 <td><input id="background_image" name="background_image" type="text" /></td>
bgneal@442 152 <td id="background_image_browser">&nbsp;</td>
bgneal@312 153 </tr>
bgneal@442 154 </table>
bgneal@442 155 </td>
bgneal@442 156 </tr>
bgneal@312 157
bgneal@442 158 <tr>
bgneal@442 159 <td><label for="background_repeat">{#style_dlg.background_repeat}</label></td>
bgneal@442 160 <td><select id="background_repeat" name="background_repeat" class="mceEditableSelect"></select></td>
bgneal@442 161 </tr>
bgneal@312 162
bgneal@442 163 <tr>
bgneal@442 164 <td><label for="background_attachment">{#style_dlg.background_attachment}</label></td>
bgneal@442 165 <td><select id="background_attachment" name="background_attachment" class="mceEditableSelect"></select></td>
bgneal@442 166 </tr>
bgneal@312 167
bgneal@442 168 <tr>
bgneal@442 169 <td><label for="background_hpos">{#style_dlg.background_hpos}</label></td>
bgneal@442 170 <td>
bgneal@442 171 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@442 172 <tr>
bgneal@442 173 <td><select id="background_hpos" name="background_hpos" class="mceEditableSelect"></select></td>
bgneal@442 174 <td>&nbsp;</td>
bgneal@442 175 <td>
bgneal@442 176 <label id="background_hpos_measurement_label" for="background_hpos_measurement" style="display: none; visibility: hidden;">Horizontal position measurement unit</label>
bgneal@442 177 <select id="background_hpos_measurement" name="background_hpos_measurement" aria-labelledby="background_hpos_measurement_label"></select>
bgneal@442 178 </td>
bgneal@442 179 </tr>
bgneal@442 180 </table>
bgneal@442 181 </td>
bgneal@442 182 </tr>
bgneal@312 183
bgneal@442 184 <tr>
bgneal@442 185 <td><label for="background_vpos">{#style_dlg.background_vpos}</label></td>
bgneal@442 186 <td>
bgneal@442 187 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@442 188 <tr>
bgneal@442 189 <td><select id="background_vpos" name="background_vpos" class="mceEditableSelect"></select></td>
bgneal@442 190 <td>&nbsp;</td>
bgneal@442 191 <td>
bgneal@312 192
bgneal@442 193 <label id="background_vpos_measurement_label" for="background_vpos_measurement" style="display: none; visibility: hidden;">Vertical position measurement unit</label>
bgneal@442 194 <select id="background_vpos_measurement" name="background_vpos_measurement" aria-labelledby="background_vpos_measurement_label">></select></td>
bgneal@442 195 </tr>
bgneal@442 196 </table>
bgneal@442 197 </td>
bgneal@442 198 </tr>
bgneal@442 199 </table>
bgneal@442 200 </fieldset>
bgneal@312 201 </div>
bgneal@312 202
bgneal@312 203 <div id="block_panel" class="panel">
bgneal@442 204 <fieldset>
bgneal@442 205 <legend>{#style_dlg.block}</legend>
bgneal@442 206 <table role="presentation" border="0">
bgneal@442 207 <tr>
bgneal@442 208 <td><label for="block_wordspacing">{#style_dlg.block_wordspacing}</label></td>
bgneal@442 209 <td>
bgneal@442 210 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@442 211 <tr>
bgneal@442 212 <td><select id="block_wordspacing" name="block_wordspacing" class="mceEditableSelect"></select></td>
bgneal@442 213 <td>&nbsp;</td>
bgneal@442 214 <td>
bgneal@442 215 <label id="block_wordspacing_measurement_label" for="block_wordspacing_measurement" style="display: none; visibility: hidden;">Word spacing measurement unit</label>
bgneal@442 216 <select id="block_wordspacing_measurement" name="block_wordspacing_measurement" aria-labelledby="block_wordspacing_measurement_label"></select>
bgneal@442 217 </td>
bgneal@442 218 </tr>
bgneal@442 219 </table>
bgneal@442 220 </td>
bgneal@442 221 </tr>
bgneal@312 222
bgneal@442 223 <tr>
bgneal@442 224 <td><label for="block_letterspacing">{#style_dlg.block_letterspacing}</label></td>
bgneal@442 225 <td>
bgneal@442 226 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@442 227 <tr>
bgneal@442 228 <td><select id="block_letterspacing" name="block_letterspacing" class="mceEditableSelect"></select></td>
bgneal@442 229 <td>&nbsp;</td>
bgneal@442 230 <td>
bgneal@442 231 <label id="block_letterspacing_measurement_label" for="block_letterspacing_measurement" style="display: none; visibility: hidden;">Letter spacing measurement unit</label>
bgneal@442 232 <select id="block_letterspacing_measurement" name="block_letterspacing_measurement" aria-labelledby="block_letterspacing_measurement_label"></select>
bgneal@442 233 </td>
bgneal@442 234 </tr>
bgneal@442 235 </table>
bgneal@442 236 </td>
bgneal@442 237 </tr>
bgneal@312 238
bgneal@442 239 <tr>
bgneal@442 240 <td><label for="block_vertical_alignment">{#style_dlg.block_vertical_alignment}</label></td>
bgneal@442 241 <td><select id="block_vertical_alignment" name="block_vertical_alignment" class="mceEditableSelect"></select></td>
bgneal@442 242 </tr>
bgneal@312 243
bgneal@442 244 <tr>
bgneal@442 245 <td><label for="block_text_align">{#style_dlg.block_text_align}</label></td>
bgneal@442 246 <td><select id="block_text_align" name="block_text_align" class="mceEditableSelect"></select></td>
bgneal@442 247 </tr>
bgneal@312 248
bgneal@442 249 <tr>
bgneal@442 250 <td><label for="block_text_indent">{#style_dlg.block_text_indent}</label></td>
bgneal@442 251 <td>
bgneal@442 252 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@442 253 <tr>
bgneal@442 254 <td><input type="text" id="block_text_indent" name="block_text_indent" /></td>
bgneal@442 255 <td>&nbsp;</td>
bgneal@442 256 <td>
bgneal@442 257 <label id="block_text_indent_measurement_label" for="block_text_indent_measurement" style="display: none; visibility: hidden;">Text Indent Measurement Unit</label>
bgneal@312 258
bgneal@442 259 <select id="block_text_indent_measurement" name="block_text_indent_measurement" aria-labelledby="block_text_indent_measurement_label"></select>
bgneal@442 260 </td>
bgneal@442 261 </tr>
bgneal@442 262 </table>
bgneal@442 263 </td>
bgneal@442 264 </tr>
bgneal@312 265
bgneal@442 266 <tr>
bgneal@442 267 <td><label for="block_whitespace">{#style_dlg.block_whitespace}</label></td>
bgneal@442 268 <td><select id="block_whitespace" name="block_whitespace" class="mceEditableSelect"></select></td>
bgneal@442 269 </tr>
bgneal@442 270
bgneal@442 271 <tr>
bgneal@442 272 <td><label for="block_display">{#style_dlg.block_display}</label></td>
bgneal@442 273 <td><select id="block_display" name="block_display" class="mceEditableSelect"></select></td>
bgneal@442 274 </tr>
bgneal@442 275 </table>
bgneal@442 276 </fieldset>
bgneal@312 277 </div>
bgneal@312 278
bgneal@312 279 <div id="box_panel" class="panel">
bgneal@442 280 <fieldset>
bgneal@442 281 <legend>{#style_dlg.box}</legend>
bgneal@442 282 <table role="presentation" border="0">
bgneal@442 283 <tr>
bgneal@442 284 <td><label for="box_width">{#style_dlg.box_width}</label></td>
bgneal@442 285 <td>
bgneal@442 286 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@442 287 <tr>
bgneal@442 288 <td><input type="text" id="box_width" name="box_width" class="mceEditableSelect" onChange="synch('box_width','positioning_width');" /></td>
bgneal@442 289 <td>&nbsp;</td>
bgneal@442 290 <td>
bgneal@442 291 <label id="box_width_measurement_label" for="box_width_measurement" style="display: none; visibility: hidden;">Box Width Measurement Unit</label>
bgneal@442 292 <select id="box_width_measurement" name="box_width_measurement" aria-labelledby="box_width_measurement_label"></select>
bgneal@442 293 </td>
bgneal@442 294 </tr>
bgneal@442 295 </table>
bgneal@442 296 </td>
bgneal@442 297 <td>&nbsp;&nbsp;&nbsp;<label for="box_float">{#style_dlg.box_float}</label></td>
bgneal@442 298 <td><select id="box_float" name="box_float" class="mceEditableSelect"></select></td>
bgneal@442 299 </tr>
bgneal@312 300
bgneal@442 301 <tr>
bgneal@442 302 <td><label for="box_height">{#style_dlg.box_height}</label></td>
bgneal@442 303 <td>
bgneal@442 304 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@442 305 <tr>
bgneal@442 306 <td><input type="text" id="box_height" name="box_height" class="mceEditableSelect" onChange="synch('box_height','positioning_height');" /></td>
bgneal@442 307 <td>&nbsp;</td>
bgneal@442 308 <td>
bgneal@442 309 <label id="box_height_measurement_label" for="box_height_measurement" style="display: none; visibility: hidden;">Box Height Measurement Unit</label>
bgneal@442 310 <select id="box_height_measurement" name="box_height_measurement" aria-labelledby="box_height_measurement_label"></select>
bgneal@442 311 </td>
bgneal@442 312 </tr>
bgneal@442 313 </table>
bgneal@442 314 </td>
bgneal@442 315 <td>&nbsp;&nbsp;&nbsp;<label for="box_clear">{#style_dlg.box_clear}</label></td>
bgneal@442 316 <td><select id="box_clear" name="box_clear" class="mceEditableSelect"></select></td>
bgneal@442 317 </tr>
bgneal@442 318 </table>
bgneal@312 319 <div style="float: left; width: 49%">
bgneal@312 320 <fieldset>
bgneal@312 321 <legend>{#style_dlg.padding}</legend>
bgneal@312 322
bgneal@442 323 <table role="presentation" border="0">
bgneal@312 324 <tr>
bgneal@312 325 <td>&nbsp;</td>
bgneal@312 326 <td><input type="checkbox" id="box_padding_same" name="box_padding_same" class="checkbox" checked="checked" onClick="toggleSame(this,'box_padding');" /> <label for="box_padding_same">{#style_dlg.same}</label></td>
bgneal@312 327 </tr>
bgneal@312 328 <tr>
bgneal@312 329 <td><label for="box_padding_top">{#style_dlg.top}</label></td>
bgneal@312 330 <td>
bgneal@442 331 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 332 <tr>
bgneal@312 333 <td><input type="text" id="box_padding_top" name="box_padding_top" class="mceEditableSelect" /></td>
bgneal@312 334 <td>&nbsp;</td>
bgneal@442 335 <td>
bgneal@442 336 <label id="box_padding_top_measurement_label" for="box_padding_top_measurement" style="display: none; visibility: hidden;">Padding Top Measurement Unit</label>
bgneal@442 337 <select id="box_padding_top_measurement" name="box_padding_top_measurement" aria-labelledby="box_padding_top_measurement_label"></select>
bgneal@442 338 </td>
bgneal@312 339 </tr>
bgneal@312 340 </table>
bgneal@312 341 </td>
bgneal@312 342 </tr>
bgneal@312 343 <tr>
bgneal@312 344 <td><label for="box_padding_right">{#style_dlg.right}</label></td>
bgneal@312 345 <td>
bgneal@442 346 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 347 <tr>
bgneal@312 348 <td><input type="text" id="box_padding_right" name="box_padding_right" class="mceEditableSelect" disabled="disabled" /></td>
bgneal@312 349 <td>&nbsp;</td>
bgneal@442 350 <td>
bgneal@442 351 <label id="box_padding_right_measurement_label" for="box_padding_right_measurement" style="display: none; visibility: hidden;">Padding Right Measurement Unit</label>
bgneal@442 352 <select id="box_padding_right_measurement" name="box_padding_right_measurement" disabled="disabled" aria-labelledby="box_padding_right_measurement_label"></select>
bgneal@442 353 </td>
bgneal@312 354 </tr>
bgneal@312 355 </table>
bgneal@312 356 </td>
bgneal@312 357 </tr>
bgneal@312 358 <tr>
bgneal@312 359 <td><label for="box_padding_bottom">{#style_dlg.bottom}</label></td>
bgneal@312 360 <td>
bgneal@442 361 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 362 <tr>
bgneal@312 363 <td><input type="text" id="box_padding_bottom" name="box_padding_bottom" class="mceEditableSelect" disabled="disabled" /></td>
bgneal@312 364 <td>&nbsp;</td>
bgneal@442 365 <td>
bgneal@442 366 <label id="box_padding_bottom_measurement_label" for="box_padding_bottom_measurement" style="display: none; visibility: hidden;">Padding Bottom Measurement Unit</label>
bgneal@442 367 <select id="box_padding_bottom_measurement" name="box_padding_bottom_measurement" disabled="disabled" aria-labelledby="box_padding_bottom_measurement_label"></select>
bgneal@442 368 </td>
bgneal@312 369 </tr>
bgneal@312 370 </table>
bgneal@312 371 </td>
bgneal@312 372 </tr>
bgneal@312 373 <tr>
bgneal@312 374 <td><label for="box_padding_left">{#style_dlg.left}</label></td>
bgneal@312 375 <td>
bgneal@442 376 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 377 <tr>
bgneal@312 378 <td><input type="text" id="box_padding_left" name="box_padding_left" class="mceEditableSelect" disabled="disabled" /></td>
bgneal@312 379 <td>&nbsp;</td>
bgneal@442 380 <td>
bgneal@442 381 <label id="box_padding_left_measurement_label" for="box_padding_left_measurement" style="display: none; visibility: hidden;">Padding Left Measurement Unit</label>
bgneal@442 382 <select id="box_padding_left_measurement" name="box_padding_left_measurement" disabled="disabled" aria-labelledby="box_padding_left_measurement_label"></select>
bgneal@442 383 </td>
bgneal@312 384 </tr>
bgneal@312 385 </table>
bgneal@312 386 </td>
bgneal@312 387 </tr>
bgneal@312 388 </table>
bgneal@312 389 </fieldset>
bgneal@312 390 </div>
bgneal@312 391
bgneal@312 392 <div style="float: right; width: 49%">
bgneal@312 393 <fieldset>
bgneal@312 394 <legend>{#style_dlg.margin}</legend>
bgneal@312 395
bgneal@442 396 <table role="presentation" border="0">
bgneal@312 397 <tr>
bgneal@312 398 <td>&nbsp;</td>
bgneal@312 399 <td><input type="checkbox" id="box_margin_same" name="box_margin_same" class="checkbox" checked="checked" onClick="toggleSame(this,'box_margin');" /> <label for="box_margin_same">{#style_dlg.same}</label></td>
bgneal@312 400 </tr>
bgneal@312 401 <tr>
bgneal@312 402 <td><label for="box_margin_top">{#style_dlg.top}</label></td>
bgneal@312 403 <td>
bgneal@442 404 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 405 <tr>
bgneal@312 406 <td><input type="text" id="box_margin_top" name="box_margin_top" class="mceEditableSelect" /></td>
bgneal@312 407 <td>&nbsp;</td>
bgneal@442 408 <td>
bgneal@442 409 <label id="box_margin_top_measurement_label" for="box_margin_top_measurement" style="display: none; visibility: hidden;">Margin Top Measurement Unit</label>
bgneal@442 410 <select id="box_margin_top_measurement" name="box_margin_top_measurement" aria-labelledby="box_margin_top_measurement_label"></select>
bgneal@442 411 </td>
bgneal@312 412 </tr>
bgneal@312 413 </table>
bgneal@312 414 </td>
bgneal@312 415 </tr>
bgneal@312 416 <tr>
bgneal@312 417 <td><label for="box_margin_right">{#style_dlg.right}</label></td>
bgneal@312 418 <td>
bgneal@442 419 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 420 <tr>
bgneal@312 421 <td><input type="text" id="box_margin_right" name="box_margin_right" class="mceEditableSelect" disabled="disabled" /></td>
bgneal@312 422 <td>&nbsp;</td>
bgneal@442 423 <td>
bgneal@442 424 <label id="box_margin_right_measurement_label" for="box_margin_right_measurement" style="display: none; visibility: hidden;">Margin Right Measurement Unit</label>
bgneal@442 425 <select id="box_margin_right_measurement" name="box_margin_right_measurement" disabled="disabled" aria-labelledby="box_margin_right_measurement_label"></select>
bgneal@442 426 </td>
bgneal@312 427 </tr>
bgneal@312 428 </table>
bgneal@312 429 </td>
bgneal@312 430 </tr>
bgneal@312 431 <tr>
bgneal@312 432 <td><label for="box_margin_bottom">{#style_dlg.bottom}</label></td>
bgneal@312 433 <td>
bgneal@442 434 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 435 <tr>
bgneal@312 436 <td><input type="text" id="box_margin_bottom" name="box_margin_bottom" class="mceEditableSelect" disabled="disabled" /></td>
bgneal@312 437 <td>&nbsp;</td>
bgneal@442 438 <td>
bgneal@442 439 <label id="box_margin_bottom_measurement_label" for="box_margin_bottom_measurement" style="display: none; visibility: hidden;">Margin Bottom Measurement Unit</label>
bgneal@442 440 <select id="box_margin_bottom_measurement" name="box_margin_bottom_measurement" disabled="disabled" aria-labelledby="box_margin_bottom_measurement_label"></select>
bgneal@442 441 </td>
bgneal@312 442 </tr>
bgneal@312 443 </table>
bgneal@312 444 </td>
bgneal@312 445 </tr>
bgneal@312 446 <tr>
bgneal@312 447 <td><label for="box_margin_left">{#style_dlg.left}</label></td>
bgneal@312 448 <td>
bgneal@442 449 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 450 <tr>
bgneal@312 451 <td><input type="text" id="box_margin_left" name="box_margin_left" class="mceEditableSelect" disabled="disabled" /></td>
bgneal@312 452 <td>&nbsp;</td>
bgneal@442 453 <td>
bgneal@442 454 <label id="box_margin_left_measurement_label" for="box_margin_left_measurement" style="display: none; visibility: hidden;">Margin Left Measurement Unit</label>
bgneal@442 455 <select id="box_margin_left_measurement" name="box_margin_left_measurement" disabled="disabled" aria-labelledby="box_margin_left_measurement_label"></select>
bgneal@442 456 </td>
bgneal@312 457 </tr>
bgneal@312 458 </table>
bgneal@312 459 </td>
bgneal@312 460 </tr>
bgneal@312 461 </table>
bgneal@312 462 </fieldset>
bgneal@312 463 </div>
bgneal@312 464 <br style="clear: both" />
bgneal@312 465 </div>
bgneal@312 466
bgneal@312 467 <div id="border_panel" class="panel">
bgneal@442 468 <fieldset>
bgneal@442 469 <legend>{#style_dlg.border}</legend>
bgneal@442 470 <table role="presentation" border="0" cellspacing="0" cellpadding="0" width="100%">
bgneal@442 471 <tr>
bgneal@442 472 <td class="tdelim">&nbsp;</td>
bgneal@442 473 <td class="tdelim delim">&nbsp;</td>
bgneal@442 474 <td class="tdelim">{#style_dlg.style}</td>
bgneal@442 475 <td class="tdelim delim">&nbsp;</td>
bgneal@442 476 <td class="tdelim">{#style_dlg.width}</td>
bgneal@442 477 <td class="tdelim delim">&nbsp;</td>
bgneal@442 478 <td class="tdelim">{#style_dlg.color}</td>
bgneal@442 479 </tr>
bgneal@312 480
bgneal@442 481 <tr>
bgneal@442 482 <td>&nbsp;</td>
bgneal@442 483 <td class="delim">&nbsp;</td>
bgneal@442 484 <td><input type="checkbox" id="border_style_same" name="border_style_same" class="checkbox" checked="checked" onClick="toggleSame(this,'border_style');" /> <label for="border_style_same">{#style_dlg.same}</label></td>
bgneal@442 485 <td class="delim">&nbsp;</td>
bgneal@442 486 <td><input type="checkbox" id="border_width_same" name="border_width_same" class="checkbox" checked="checked" onClick="toggleSame(this,'border_width');" /> <label for="border_width_same">{#style_dlg.same}</label></td>
bgneal@442 487 <td class="delim">&nbsp;</td>
bgneal@442 488 <td><input type="checkbox" id="border_color_same" name="border_color_same" class="checkbox" checked="checked" onClick="toggleSame(this,'border_color');" /> <label for="border_color_same">{#style_dlg.same}</label></td>
bgneal@442 489 </tr>
bgneal@312 490
bgneal@442 491 <tr>
bgneal@442 492 <td>{#style_dlg.top}</td>
bgneal@442 493 <td class="delim">&nbsp;</td>
bgneal@442 494 <td><select id="border_style_top" name="border_style_top" class="mceEditableSelect"></select></td>
bgneal@442 495 <td class="delim">&nbsp;</td>
bgneal@442 496 <td>
bgneal@442 497 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@442 498 <tr>
bgneal@442 499 <td><select id="border_width_top" name="border_width_top" class="mceEditableSelect"></select></td>
bgneal@442 500 <td>&nbsp;</td>
bgneal@442 501 <td>
bgneal@442 502 <label id="border_width_top_measurement_label" for="border_width_top_measurement" style="display: none; visibility: hidden;">Width top Measurement Unit</label>
bgneal@442 503 <select id="border_width_top_measurement" name="border_width_top_measurement" aria-labelledby="border_width_top_measurement_label"></select>
bgneal@442 504 </td>
bgneal@442 505 </tr>
bgneal@442 506 </table>
bgneal@442 507 </td>
bgneal@442 508 <td class="delim">&nbsp;</td>
bgneal@442 509 <td>
bgneal@442 510 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
bgneal@442 511 <tr>
bgneal@442 512 <td><input id="border_color_top" name="border_color_top" type="text" value="" size="9" onChange="updateColor('border_color_top_pick','border_color_top');" /></td>
bgneal@442 513 <td id="border_color_top_pickcontainer">&nbsp;</td>
bgneal@442 514 </tr>
bgneal@442 515 </table>
bgneal@442 516 </td>
bgneal@442 517 </tr>
bgneal@442 518
bgneal@442 519 <tr>
bgneal@442 520 <td>{#style_dlg.right}</td>
bgneal@442 521 <td class="delim">&nbsp;</td>
bgneal@442 522 <td><select id="border_style_right" name="border_style_right" class="mceEditableSelect" disabled="disabled"></select></td>
bgneal@442 523 <td class="delim">&nbsp;</td>
bgneal@442 524 <td>
bgneal@442 525 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@442 526 <tr>
bgneal@442 527 <td><select id="border_width_right" name="border_width_right" class="mceEditableSelect" disabled="disabled"></select></td>
bgneal@442 528 <td>&nbsp;</td>
bgneal@442 529 <td>
bgneal@442 530 <label id="border_width_right_measurement_label" for="border_width_right_measurement" style="display: none; visibility: hidden;">Width Right Measurement Unit</label>
bgneal@442 531 <select id="border_width_right_measurement" name="border_width_right_measurement" disabled="disabled" aria-labelledby="border_width_right_measurement_label"></select>
bgneal@442 532 </td>
bgneal@442 533 </tr>
bgneal@442 534 </table>
bgneal@442 535 </td>
bgneal@442 536 <td class="delim">&nbsp;</td>
bgneal@442 537 <td>
bgneal@442 538 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
bgneal@442 539 <tr>
bgneal@442 540 <td><input id="border_color_right" name="border_color_right" type="text" value="" size="9" onChange="updateColor('border_color_right_pick','border_color_right');" disabled="disabled" /></td>
bgneal@442 541 <td id="border_color_right_pickcontainer">&nbsp;</td>
bgneal@442 542 </tr>
bgneal@442 543 </table>
bgneal@442 544 </td>
bgneal@442 545 </tr>
bgneal@442 546
bgneal@442 547 <tr>
bgneal@442 548 <td>{#style_dlg.bottom}</td>
bgneal@442 549 <td class="delim">&nbsp;</td>
bgneal@442 550 <td><select id="border_style_bottom" name="border_style_bottom" class="mceEditableSelect" disabled="disabled"></select></td>
bgneal@442 551 <td class="delim">&nbsp;</td>
bgneal@442 552 <td>
bgneal@442 553 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@442 554 <tr>
bgneal@442 555 <td><select id="border_width_bottom" name="border_width_bottom" class="mceEditableSelect" disabled="disabled"></select></td>
bgneal@442 556 <td>&nbsp;</td>
bgneal@442 557 <td>
bgneal@442 558 <label id="border_width_bottom_measurement_label" for="border_width_bottom_measurement" style="display: none; visibility: hidden;">Width Bottom Measurement Unit</label>
bgneal@442 559 <select id="border_width_bottom_measurement" name="border_width_bottom_measurement" disabled="disabled" aria-labelledby="border_width_bottom_measurement_label"></select>
bgneal@442 560 </td>
bgneal@442 561 </tr>
bgneal@442 562 </table>
bgneal@442 563 </td>
bgneal@442 564 <td class="delim">&nbsp;</td>
bgneal@442 565 <td>
bgneal@442 566 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
bgneal@442 567 <tr>
bgneal@442 568 <td><input id="border_color_bottom" name="border_color_bottom" type="text" value="" size="9" onChange="updateColor('border_color_bottom_pick','border_color_bottom');" disabled="disabled" /></td>
bgneal@442 569 <td id="border_color_bottom_pickcontainer">&nbsp;</td>
bgneal@442 570 </tr>
bgneal@442 571 </table>
bgneal@442 572 </td>
bgneal@442 573 </tr>
bgneal@442 574
bgneal@442 575 <tr>
bgneal@442 576 <td>{#style_dlg.left}</td>
bgneal@442 577 <td class="delim">&nbsp;</td>
bgneal@442 578 <td><select id="border_style_left" name="border_style_left" class="mceEditableSelect" disabled="disabled"></select></td>
bgneal@442 579 <td class="delim">&nbsp;</td>
bgneal@442 580 <td>
bgneal@442 581 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@442 582 <tr>
bgneal@442 583 <td><select id="border_width_left" name="border_width_left" class="mceEditableSelect" disabled="disabled"></select></td>
bgneal@442 584 <td>&nbsp;</td>
bgneal@442 585 <td>
bgneal@442 586 <label id="border_width_left_measurement_label" for="border_width_left_measurement" style="display: none; visibility: hidden;">Width Left Measurement Unit</label>
bgneal@442 587 <select id="border_width_left_measurement" name="border_width_left_measurement" disabled="disabled" aria-labelledby="border_width_left_measurement_label"></select>
bgneal@442 588 </td>
bgneal@442 589 </tr>
bgneal@442 590 </table>
bgneal@442 591 </td>
bgneal@442 592 <td class="delim">&nbsp;</td>
bgneal@442 593 <td>
bgneal@442 594 <table role="presentation" border="0" cellpadding="0" cellspacing="0">
bgneal@442 595 <tr>
bgneal@442 596 <td><input id="border_color_left" name="border_color_left" type="text" value="" size="9" onChange="updateColor('border_color_left_pick','border_color_left');" disabled="disabled" /></td>
bgneal@442 597 <td id="border_color_left_pickcontainer">&nbsp;</td>
bgneal@442 598 </tr>
bgneal@442 599 </table>
bgneal@442 600 </td>
bgneal@442 601 </tr>
bgneal@312 602 </table>
bgneal@442 603 </fieldset>
bgneal@312 604 </div>
bgneal@312 605
bgneal@312 606 <div id="list_panel" class="panel">
bgneal@442 607 <fieldset>
bgneal@442 608 <legend>{#style_dlg.list}</legend>
bgneal@442 609 <table role="presentation" border="0">
bgneal@312 610 <tr>
bgneal@312 611 <td><label for="list_type">{#style_dlg.list_type}</label></td>
bgneal@312 612 <td><select id="list_type" name="list_type" class="mceEditableSelect"></select></td>
bgneal@312 613 </tr>
bgneal@312 614
bgneal@312 615 <tr>
bgneal@312 616 <td><label for="list_bullet_image">{#style_dlg.bullet_image}</label></td>
bgneal@312 617 <td><input id="list_bullet_image" name="list_bullet_image" type="text" /></td>
bgneal@312 618 </tr>
bgneal@312 619
bgneal@312 620 <tr>
bgneal@312 621 <td><label for="list_position">{#style_dlg.position}</label></td>
bgneal@312 622 <td><select id="list_position" name="list_position" class="mceEditableSelect"></select></td>
bgneal@312 623 </tr>
bgneal@312 624 </table>
bgneal@442 625 </fieldset>
bgneal@312 626 </div>
bgneal@312 627
bgneal@312 628 <div id="positioning_panel" class="panel">
bgneal@442 629 <fieldset>
bgneal@442 630 <legend>{#style_dlg.position}</legend>
bgneal@442 631 <table role="presentation" border="0">
bgneal@312 632 <tr>
bgneal@312 633 <td><label for="positioning_type">{#style_dlg.positioning_type}</label></td>
bgneal@312 634 <td><select id="positioning_type" name="positioning_type" class="mceEditableSelect"></select></td>
bgneal@312 635 <td>&nbsp;&nbsp;&nbsp;<label for="positioning_visibility">{#style_dlg.visibility}</label></td>
bgneal@312 636 <td><select id="positioning_visibility" name="positioning_visibility" class="mceEditableSelect"></select></td>
bgneal@312 637 </tr>
bgneal@312 638
bgneal@312 639 <tr>
bgneal@312 640 <td><label for="positioning_width">{#style_dlg.width}</label></td>
bgneal@312 641 <td>
bgneal@442 642 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 643 <tr>
bgneal@312 644 <td><input type="text" id="positioning_width" name="positioning_width" onChange="synch('positioning_width','box_width');" /></td>
bgneal@312 645 <td>&nbsp;</td>
bgneal@442 646 <td>
bgneal@442 647 <label id="positioning_width_measurement_label" for="positioning_width_measurement" style="display: none; visibility: hidden;">Positioning width Measurement Unit</label>
bgneal@442 648 <select id="positioning_width_measurement" name="positioning_width_measurement" aria-labelledby="positioning_width_measurement_label"></select>
bgneal@442 649 </td>
bgneal@312 650 </tr>
bgneal@312 651 </table>
bgneal@312 652 </td>
bgneal@312 653 <td>&nbsp;&nbsp;&nbsp;<label for="positioning_zindex">{#style_dlg.zindex}</label></td>
bgneal@312 654 <td><input type="text" id="positioning_zindex" name="positioning_zindex" /></td>
bgneal@312 655 </tr>
bgneal@312 656
bgneal@312 657 <tr>
bgneal@312 658 <td><label for="positioning_height">{#style_dlg.height}</label></td>
bgneal@312 659 <td>
bgneal@442 660 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 661 <tr>
bgneal@312 662 <td><input type="text" id="positioning_height" name="positioning_height" onChange="synch('positioning_height','box_height');" /></td>
bgneal@312 663 <td>&nbsp;</td>
bgneal@442 664 <td>
bgneal@442 665 <label id="positioning_height_measurement_label" for="positioning_height_measurement" style="display: none; visibility: hidden;">Positioning Height Measurement Unit</label>
bgneal@442 666 <select id="positioning_height_measurement" name="positioning_height_measurement" aria-labelledby="positioning_height_measurement_label"></select>
bgneal@442 667 </td>
bgneal@312 668 </tr>
bgneal@312 669 </table>
bgneal@312 670 </td>
bgneal@312 671 <td>&nbsp;&nbsp;&nbsp;<label for="positioning_overflow">{#style_dlg.overflow}</label></td>
bgneal@312 672 <td><select id="positioning_overflow" name="positioning_overflow" class="mceEditableSelect"></select></td>
bgneal@312 673 </tr>
bgneal@312 674 </table>
bgneal@312 675
bgneal@312 676 <div style="float: left; width: 49%">
bgneal@312 677 <fieldset>
bgneal@312 678 <legend>{#style_dlg.placement}</legend>
bgneal@312 679
bgneal@442 680 <table role="presentation" border="0">
bgneal@312 681 <tr>
bgneal@312 682 <td>&nbsp;</td>
bgneal@312 683 <td><input type="checkbox" id="positioning_placement_same" name="positioning_placement_same" class="checkbox" checked="checked" onClick="toggleSame(this,'positioning_placement');" /> <label for="positioning_placement_same">{#style_dlg.same}</label></td>
bgneal@312 684 </tr>
bgneal@312 685 <tr>
bgneal@312 686 <td>{#style_dlg.top}</td>
bgneal@312 687 <td>
bgneal@442 688 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 689 <tr>
bgneal@312 690 <td><input type="text" id="positioning_placement_top" name="positioning_placement_top" /></td>
bgneal@312 691 <td>&nbsp;</td>
bgneal@442 692 <td>
bgneal@442 693 <label id="positioning_placement_top_measurement_label" for="positioning_placement_top_measurement" style="display: none; visibility: hidden;">Placement Top Measurement Unit</label>
bgneal@442 694 <select id="positioning_placement_top_measurement" name="positioning_placement_top_measurement" aria-labelledby="positioning_placement_top_measurement_label"></select>
bgneal@442 695 </td>
bgneal@312 696 </tr>
bgneal@312 697 </table>
bgneal@312 698 </td>
bgneal@312 699 </tr>
bgneal@312 700 <tr>
bgneal@312 701 <td>{#style_dlg.right}</td>
bgneal@312 702 <td>
bgneal@442 703 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 704 <tr>
bgneal@312 705 <td><input type="text" id="positioning_placement_right" name="positioning_placement_right" disabled="disabled" /></td>
bgneal@312 706 <td>&nbsp;</td>
bgneal@442 707 <td>
bgneal@442 708 <label id="positioning_placement_right_measurement_label" for="positioning_placement_right_measurement" style="display: none; visibility: hidden;">Placement Right Measurement Unit</label>
bgneal@442 709 <select id="positioning_placement_right_measurement" name="positioning_placement_right_measurement" disabled="disabled" aria-labelledby="positioning_placement_right_measurement_label"></select>
bgneal@442 710 </td>
bgneal@312 711 </tr>
bgneal@312 712 </table>
bgneal@312 713 </td>
bgneal@312 714 </tr>
bgneal@312 715 <tr>
bgneal@312 716 <td>{#style_dlg.bottom}</td>
bgneal@312 717 <td>
bgneal@442 718 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 719 <tr>
bgneal@312 720 <td><input type="text" id="positioning_placement_bottom" name="positioning_placement_bottom" disabled="disabled" /></td>
bgneal@312 721 <td>&nbsp;</td>
bgneal@442 722 <td>
bgneal@442 723 <label id="positioning_placement_bottom_measurement_label" for="positioning_placement_bottom_measurement" style="display: none; visibility: hidden;">Placement Bottom Measurement Unit</label>
bgneal@442 724 <select id="positioning_placement_bottom_measurement" name="positioning_placement_bottom_measurement" disabled="disabled" aria-labelledby="positioning_placement_bottom_measurement_label"></select>
bgneal@442 725 </td>
bgneal@312 726 </tr>
bgneal@312 727 </table>
bgneal@312 728 </td>
bgneal@312 729 </tr>
bgneal@312 730 <tr>
bgneal@312 731 <td>{#style_dlg.left}</td>
bgneal@312 732 <td>
bgneal@442 733 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 734 <tr>
bgneal@312 735 <td><input type="text" id="positioning_placement_left" name="positioning_placement_left" disabled="disabled" /></td>
bgneal@312 736 <td>&nbsp;</td>
bgneal@442 737 <td>
bgneal@442 738 <label id="positioning_placement_left_measurement_label" for="positioning_placement_left_measurement" style="display: none; visibility: hidden;">Placement Left Measurement Unit</label>
bgneal@442 739 <select id="positioning_placement_left_measurement" name="positioning_placement_left_measurement" disabled="disabled" aria-labelledby="positioning_placement_left_measurement_label"></select>
bgneal@442 740 </td>
bgneal@312 741 </tr>
bgneal@312 742 </table>
bgneal@312 743 </td>
bgneal@312 744 </tr>
bgneal@312 745 </table>
bgneal@312 746 </fieldset>
bgneal@312 747 </div>
bgneal@312 748
bgneal@312 749 <div style="float: right; width: 49%">
bgneal@312 750 <fieldset>
bgneal@312 751 <legend>{#style_dlg.clip}</legend>
bgneal@312 752
bgneal@442 753 <table role="presentation" border="0">
bgneal@312 754 <tr>
bgneal@312 755 <td>&nbsp;</td>
bgneal@312 756 <td><input type="checkbox" id="positioning_clip_same" name="positioning_clip_same" class="checkbox" checked="checked" onClick="toggleSame(this,'positioning_clip');" /> <label for="positioning_clip_same">{#style_dlg.same}</label></td>
bgneal@312 757 </tr>
bgneal@312 758 <tr>
bgneal@312 759 <td>{#style_dlg.top}</td>
bgneal@312 760 <td>
bgneal@442 761 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 762 <tr>
bgneal@312 763 <td><input type="text" id="positioning_clip_top" name="positioning_clip_top" /></td>
bgneal@312 764 <td>&nbsp;</td>
bgneal@442 765 <td>
bgneal@442 766 <label id="positioning_clip_top_measurement_label" for="positioning_clip_top_measurement" style="display: none; visibility: hidden;">Clip Top Measurement Unit</label>
bgneal@442 767 <select id="positioning_clip_top_measurement" name="positioning_clip_top_measurement" aria-labelledby="positioning_clip_top_measurement_label"></select>
bgneal@442 768 </td>
bgneal@312 769 </tr>
bgneal@312 770 </table>
bgneal@312 771 </td>
bgneal@312 772 </tr>
bgneal@312 773 <tr>
bgneal@312 774 <td>{#style_dlg.right}</td>
bgneal@312 775 <td>
bgneal@442 776 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 777 <tr>
bgneal@312 778 <td><input type="text" id="positioning_clip_right" name="positioning_clip_right" disabled="disabled" /></td>
bgneal@312 779 <td>&nbsp;</td>
bgneal@442 780 <td>
bgneal@442 781 <label id="positioning_clip_right_measurement_label" for="positioning_clip_right_measurement" style="display: none; visibility: hidden;">Clip Right Measurement Unit</label>
bgneal@442 782 <select id="positioning_clip_right_measurement" name="positioning_clip_right_measurement" disabled="disabled" aria-labelledby="positioning_clip_right_measurement_label"></select>
bgneal@442 783 </td>
bgneal@312 784 </tr>
bgneal@312 785 </table>
bgneal@312 786 </td>
bgneal@312 787 </tr>
bgneal@312 788 <tr>
bgneal@312 789 <td>{#style_dlg.bottom}</td>
bgneal@312 790 <td>
bgneal@442 791 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 792 <tr>
bgneal@312 793 <td><input type="text" id="positioning_clip_bottom" name="positioning_clip_bottom" disabled="disabled" /></td>
bgneal@312 794 <td>&nbsp;</td>
bgneal@442 795 <td>
bgneal@442 796 <label id="positioning_clip_bottom_measurement_label" for="positioning_clip_bottom_measurement" style="display: none; visibility: hidden;">Clip Bottom Measurement Unit</label>
bgneal@442 797 <select id="positioning_clip_bottom_measurement" name="positioning_clip_bottom_measurement" disabled="disabled" aria-labelledby="positioning_clip_bottom_measurement_label"></select>
bgneal@442 798 </td>
bgneal@312 799 </tr>
bgneal@312 800 </table>
bgneal@312 801 </td>
bgneal@312 802 </tr>
bgneal@312 803 <tr>
bgneal@312 804 <td>{#style_dlg.left}</td>
bgneal@312 805 <td>
bgneal@442 806 <table role="presentation" border="0" cellspacing="0" cellpadding="0">
bgneal@312 807 <tr>
bgneal@312 808 <td><input type="text" id="positioning_clip_left" name="positioning_clip_left" disabled="disabled" /></td>
bgneal@312 809 <td>&nbsp;</td>
bgneal@442 810 <td>
bgneal@442 811 <label id="positioning_clip_left_measurement_label" for="positioning_clip_left_measurement" style="display: none; visibility: hidden;">Clip Left Measurement Unit</label>
bgneal@442 812 <select id="positioning_clip_left_measurement" name="positioning_clip_left_measurement" disabled="disabled" aria-labelledby="positioning_clip_left_measurement_label"></select>
bgneal@442 813 </td>
bgneal@312 814 </tr>
bgneal@312 815 </table>
bgneal@312 816 </td>
bgneal@312 817 </tr>
bgneal@312 818 </table>
bgneal@312 819 </fieldset>
bgneal@312 820 </div>
bgneal@312 821 <br style="clear: both" />
bgneal@312 822 </div>
bgneal@442 823 </fieldset>
bgneal@312 824 </div>
bgneal@312 825
bgneal@312 826 <div class="mceActionPanel">
bgneal@312 827 <input type="submit" id="insert" name="insert" value="{#update}" />
bgneal@312 828 <input type="button" class="button" id="apply" name="apply" value="{#style_dlg.apply}" onClick="applyAction();" />
bgneal@312 829 <input type="button" id="cancel" name="cancel" value="{#cancel}" onClick="tinyMCEPopup.close();" />
bgneal@312 830 </div>
bgneal@312 831 </form>
bgneal@312 832
bgneal@312 833 <div style="display: none">
bgneal@312 834 <div id="container"></div>
bgneal@312 835 </div>
bgneal@312 836
bgneal@312 837 </body>
bgneal@312 838 </html>