Changeset 1807
- Timestamp:
- Feb 7, 2007, 2:46:43 PM (16 years ago)
- Location:
- OpenPNE/trunk
- Files:
-
- 6 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
OpenPNE/trunk/public_html/modules/admin/default.css
r1806 r1807 488 488 489 489 /* 改行無し幅詰め */ 490 #admin_page_list_c_member table.userListTable tr.min_width img { width: 80px;height: 1px; display: block;} 490 491 #admin_page_list_c_member table.userListTable th.cell02, 491 492 #admin_page_list_c_member table.userListTable th.cell03, -
OpenPNE/trunk/public_html/modules/admin/default.js
r1796 r1807 1 /*---------------------------------------------------- 2 プルダウンメニュー 3 ----------------------------------------------------*/ 4 1 5 var menu_info = new Array(); 2 6 … … 24 28 } 25 29 } 30 /*---------------------------------------------------- 31 二度押し対策 32 ----------------------------------------------------*/ 33 34 Event.observe(window, 'load', setSubmitFunction, false); 35 36 function setSubmitFunction() { 37 var SFs = $A(document.getElementsByTagName('form')); 38 SFs.each(function (node){ 39 node.onsubmit = function() { 40 var obj= $A(node.elements); 41 obj.each( function(n){if(n.type== 'submit') n.disabled= true;}) 42 }; 43 }); 44 } 45 26 46 /*---------------------------------------------------- 27 47 メンバーリスト -
OpenPNE/trunk/webapp/modules/admin/templates/inc_header.tpl
r1806 r1807 8 8 <meta http-equiv="Content-Script-Type" content="text/javascript" /> 9 9 <link href="modules/admin/default.css" rel="stylesheet" type="text/css" media="all" /> 10 <script type="text/javascript" src="./js/prototype.js"></script> 10 11 <script type="text/javascript" src="./modules/admin/default.js"></script> 11 12 </head> -
OpenPNE/trunk/webapp/modules/admin/templates/list_c_member.tpl
r1798 r1807 84 84 <th class="cell09C">日</th> 85 85 </tr> 86 <tr >86 <tr class="min_width"> 87 87 <th class="cell02" colspan="3"> </th> 88 88 <th class="cell03"> </th> 89 <th class="cell04"> </th>90 <th class="cell05"> </th>91 <th class="cell06"> </th>92 <th class="cell07"> </th>89 <th class="cell04"><img src="./modules/admin/img/dummy.gif" /></th> 90 <th class="cell05"><img src="./modules/admin/img/dummy.gif" /></th> 91 <th class="cell06"><img src="./modules/admin/img/dummy.gif" /></th> 92 <th class="cell07"><img src="./modules/admin/img/dummy.gif" /></th> 93 93 <th class="cell08A"> </th> 94 94 <th class="cell08B"> </th> … … 118 118 ({/foreach}) 119 119 </select> 120 ({else})121 122 120 ({/if}) 121 <img src="./modules/admin/img/dummy.gif" /> 123 122 </th> 124 123 ({/foreach}) -
OpenPNE/trunk/webapp/modules/pc/templates/inc_footer.tpl
r1439 r1807 24 24 ({/if}) 25 25 </table> 26 </td>27 26 28 27 ({$INC_FOOTER_inc_page_bottom2|smarty:nodefaults}) 28 29 </td> 29 30 30 31 ({if $INC_FOOTER_side_banner_html_before || $INC_FOOTER_side_banner_html_after || $INC_FOOTER_inc_side_banner}) -
OpenPNE/trunk/webapp/modules/pc/templates/inc_header.tpl
r1439 r1807 264 264 <!-- 265 265 266 ({*テキスト入力欄の背景色変更*}) 266 267 TextFiledClassName_normal = 'text'; 267 268 TextFiledClassName_focus = 'text_focus'; 268 269 269 270 Event.observe(window, 'load', setFocusClass, false); 271 270 272 function setFocusClass() { 271 var TFs = $A(document.getElementsByClassName(TextFiledClassName_normal)); 272 TFs.each(function (node){ 273 node.TFclass = node.className; 274 node.TFclass_onfocus = TextFiledClassName_focus; 275 node.onfocus = function() { this.className = this.TFclass_onfocus; }; 276 node.onblur = function() { this.className = this.TFclass; }; 277 }); 273 var TFs = $A(document.getElementsByClassName(TextFiledClassName_normal)); 274 TFs.each(function (node){ 275 node.TFclass = node.className; 276 node.TFclass_onfocus = TextFiledClassName_focus; 277 node.onfocus = function() { this.className = this.TFclass_onfocus; }; 278 node.onblur = function() { this.className = this.TFclass; }; 279 }); 280 } 281 282 ({*二度押し対策*}) 283 Event.observe(window, 'load', setSubmitFunction, false); 284 285 function setSubmitFunction() { 286 var SFs = $A(document.getElementsByTagName('form')); 287 SFs.each(function (node){ 288 node.onsubmit = function() { 289 var obj= $A(node.elements); 290 obj.each( function(n){if(n.type== 'submit') n.disabled= true;}) 291 }; 292 }); 278 293 } 279 294
Note: See TracChangeset
for help on using the changeset viewer.