Changeset 830
- Timestamp:
- 05/09/07 13:27:34 (6 years ago)
- Location:
- trunk/plugins/ImageManager
- Files:
-
- 2 modified
-
config.inc.php (modified) (1 diff)
-
manager.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/ImageManager/config.inc.php
r677 r830 185 185 $IMConfig['resized_dir'] = '.resized'; 186 186 187 /** 188 * Full options 189 * 190 * Determines whether the user is given options for padding, 191 * background/padding colour, margin, border and border colour. 192 */ 193 194 $IMConfig['show_full_options'] = true; 195 187 196 // ------------------------------------------------------------------------- 188 197 -
trunk/plugins/ImageManager/manager.php
r770 r830 42 42 </script> 43 43 <script type="text/javascript" src="<?php print $IMConfig['base_url'];?>assets/manager.js"></script> 44 <?php 45 if(!$IMConfig['show_full_options']) 46 { 47 ?> 48 <style type="text/css"> 49 .fullOptions { visibility:hidden; } 50 </style> 51 <?php 52 } 53 ?> 44 54 </head> 45 55 <body> … … 127 137 </div> 128 138 </td> 129 <th align="left" >Margin:</th>130 <td colspan="3" >139 <th align="left" class="fullOptions">Margin:</th> 140 <td colspan="3" class="fullOptions"> 131 141 <input name="f_margin" type="text" id="f_margin" size="3" /> 132 142 px </td> … … 138 148 <input name="f_height" type="text" id="f_height" size="4" /> 139 149 </td> 140 <th align="left" >Padding:</th>141 <td >150 <th align="left" class="fullOptions">Padding:</th> 151 <td class="fullOptions"> 142 152 <input name="f_padding" type="text" id="f_padding" size="3" /> 143 153 px </td> 144 <th align="left" >Color:</th>145 <td >154 <th align="left" class="fullOptions">Color:</th> 155 <td class="fullOptions"> 146 156 <input name="f_backgroundColor" type="text" id="f_backgroundColor" size="7" /> 147 157 … … 150 160 151 161 152 <tr >162 <tr class="fullOptions"> 153 163 <th align="left">Alignment:</th> 154 164 <td colspan="2">
