git-svn-id: http://xe-core.googlecode.com/svn/trunk@1052 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-04-09 09:14:23 +00:00
parent cc44738b6d
commit 4d4116a652
5 changed files with 68 additions and 9 deletions

View file

@ -0,0 +1,52 @@
.calendar_box {
float:right;
width:347px;
}
.calendar_title {
padding:2px 0px 2px 0px;
border:1px solid #DDDDDD;
margin:5px 6px 3px 6px;
}
.calendar_title td {
font-weight:bold;
}
.calendar_list {
padding:2px;
margin:3px;
}
.calendar_cell {
float:left;
width:40px;
height:40px;
border:1px solid #EEEEEE;
margin:3px;
text-align:center;
cursor:pointer;
}
.calendar_cell_on {
float:left;
width:40px;
height:40px;
border:1px solid #444444;
margin:3px;
text-align:center;
cursor:pointer;
}
.calendar_cell div {
margin-top:12px;
}
.calendar_list .sunday {
color:red;
font-weight:bold;
}
.calendar_list .saturday {
color:blue;
}

View file

@ -1,7 +1,8 @@
<!--%import("js/layout_admin.js")--> <!--%import("js/layout_admin.js")-->
<!--@if($module == 'admin')-->
<div style="margin-bottom:20px;"> <div style="margin-bottom:20px;">
<span <!--@if($act=='dispLayoutAdminContent')-->style="font-weight:bold"<!--@end-->>[<a href="{getUrl('act','dispLayoutAdminContent')}">{$lang->layout_list}</a>]</span> <span <!--@if($act=='dispLayoutAdminContent')-->style="font-weight:bold"<!--@end-->>[<a href="{getUrl('act','dispLayoutAdminContent')}">{$lang->layout_list}</a>]</span>
<span <!--@if($act=='dispLayoutAdminDownloadedList')-->style="font-weight:bold"<!--@end-->>[<a href="{getUrl('act','dispLayoutAdminDownloadedList')}">{$lang->downloaded_list}</a>]</span> <span <!--@if($act=='dispLayoutAdminDownloadedList')-->style="font-weight:bold"<!--@end-->>[<a href="{getUrl('act','dispLayoutAdminDownloadedList')}">{$lang->downloaded_list}</a>]</span>
</div> </div>
<!--@end-->

View file

@ -98,7 +98,9 @@
<tr> <tr>
<th rowspan="2">{$lang->birthday}</th> <th rowspan="2">{$lang->birthday}</th>
<td> <td>
<input type="text" name="birthday" value="{$member_info->birthday}" /> <input type="hidden" name="birthday" id="date_birthday" value="{$member_info->birthday}" />
<span id="str_birthday">{zdate($member_info->birthday,"Y-m-d")}</span>
[<a href="#" onclick="open_calendar('birthday','{$member_info->birthday}');return false;">{$lang->cmd_open_calendar}</a>]
</td> </td>
</tr> </tr>
<tr> <tr>

View file

@ -56,7 +56,7 @@
<tr> <tr>
<th rowspan="2">{$lang->user_name}</th> <th rowspan="2">{$lang->user_name}</th>
<td> <td>
<input type="text" name="user_name" value="{$member_info->user_name}" /> <input type="text" name="user_name" value="" />
</td> </td>
</tr> </tr>
<tr> <tr>
@ -65,7 +65,7 @@
<tr> <tr>
<th rowspan="2">{$lang->nick_name}</th> <th rowspan="2">{$lang->nick_name}</th>
<td> <td>
<input type="text" name="nick_name" value="{$member_info->nick_name}" /> <input type="text" name="nick_name" value="" />
</td> </td>
</tr> </tr>
<tr> <tr>
@ -74,13 +74,13 @@
<tr> <tr>
<th>{$lang->email_address}</th> <th>{$lang->email_address}</th>
<td> <td>
<input type="text" name="email_address" value="{$member_info->email_address}" /> <input type="text" name="email_address" value="" />
</td> </td>
</tr> </tr>
<tr> <tr>
<th rowspan="2">{$lang->homepage}</th> <th rowspan="2">{$lang->homepage}</th>
<td> <td>
<input type="text" name="homepage" value="{$member_info->homepage}" /> <input type="text" name="homepage" value="" />
</td> </td>
</tr> </tr>
<tr> <tr>
@ -89,7 +89,7 @@
<tr> <tr>
<th rowspan="2">{$lang->blog}</th> <th rowspan="2">{$lang->blog}</th>
<td> <td>
<input type="text" name="blog" value="{$member_info->blog}" /> <input type="text" name="blog" value="" />
</td> </td>
</tr> </tr>
<tr> <tr>
@ -98,7 +98,9 @@
<tr> <tr>
<th rowspan="2">{$lang->birthday}</th> <th rowspan="2">{$lang->birthday}</th>
<td> <td>
<input type="text" name="birthday" value="{$member_info->birthday}" /> <input type="hidden" name="birthday" id="date_birthday" value="" />
<span id="str_birthday"></span>
[<a href="#" onclick="open_calendar('birthday','');return false;">{$lang->cmd_open_calendar}</a>]
</td> </td>
</tr> </tr>
<tr> <tr>

View file

@ -85,7 +85,9 @@
<tr> <tr>
<th rowspan="2">{$lang->birthday}</th> <th rowspan="2">{$lang->birthday}</th>
<td> <td>
<input type="text" name="birthday" value="{$member_info->birthday}" /> <input type="hidden" name="birthday" id="date_birthday" value="{$member_info->birthday}" />
<span id="str_birthday">{zdate($member_info->birthday,"Y-m-d")}</span>
[<a href="#" onclick="open_calendar('birthday','{$member_info->birthday}');return false;">{$lang->cmd_open_calendar}</a>]
</td> </td>
</tr> </tr>
<tr> <tr>