annotate static/js/tinymce/jscripts/tiny_mce/plugins/style/props.htm @ 45:966cde8635c0

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