本帖最后由 cr180 于 2010-11-26 22:05 编辑
portalcp_diy.htm
- <tr>
- <td>{lang background_color}:</td>
- <td><input type="text" id="colorValue" value="" size="6" onchange="window.parent.spaceDiy.setBgColor(this.value);" class="px vm" style="font-size: 12px; padding: 2px;" />
- <!--{eval echo getcolorpalette('bpb', 'colorValue', 'white');}-->
- </td>
- </tr>
复制代码
更新为:
- <tr>
- <td>{lang background_color}:</td>
- <td><input type="text" id="colorValue" value="" size="6" onchange="spaceDiy.setBgColor(this.value);" class="px vm" style="font-size: 12px; padding: 2px;" />
- <input id="cbpb" onclick="createPalette('bpb', 'colorValue', 'spaceDiy.setBgColor');" type="button" class="colorwd" value="" style="background: #fff;" />
- </td>
- </tr>
复制代码
- <tr>
- <td>{lang text_color}:</td>
- <td><input type="text" id="textColorValue" value="" size="6" onchange="window.parent.spaceDiy.setTextColor(this.value);" class="px vm" style="font-size: 12px; padding: 2px;" />
- <!--{eval echo getcolorpalette('tpb', 'textColorValue', 'white');}-->
- </td>
- </tr>
复制代码
更新为:
- <tr>
- <td>{lang text_color}:</td>
- <td><input type="text" id="textColorValue" value="" size="6" onchange="spaceDiy.setTextColor(this.value);" class="px vm" style="font-size: 12px; padding: 2px;" />
- <input id="ctpb" onclick="createPalette('tpb', 'textColorValue', 'spaceDiy.setTextColor');" type="button" class="colorwd" value="" style="background: #fff;" />
- </td>
- </tr>
复制代码
- <tr>
- <td>{lang link_color}:</td>
- <td><input type="text" id="linkColorValue" value="" size="6" onchange="window.parent.spaceDiy.setLinkColor(this.value);" class="px vm" style="font-size: 12px; padding: 2px;" />
- <!--{eval echo getcolorpalette('lpb', 'linkColorValue', 'white');}-->
- </td>
- </tr>
复制代码
更新为:
- <tr>
- <td>{lang link_color}:</td>
- <td><input type="text" id="linkColorValue" value="" size="6" onchange="spaceDiy.setLinkColor(this.value);" class="px vm" style="font-size: 12px; padding: 2px;" />
- <input id="clpb" onclick="createPalette('lpb', 'linkColorValue', 'spaceDiy.setLinkColor');" type="button" class="colorwd" value="" style="background: #fff;" />
- </td>
- </tr>
复制代码
|