mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-11 21:12:15 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@1818 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
820860f4eb
commit
200ca43394
5 changed files with 105 additions and 92 deletions
|
|
@ -82,6 +82,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
|
<div id="popup_content" >
|
||||||
<div id="popHeadder">
|
<div id="popHeadder">
|
||||||
<h1>Calendar</h1>
|
<h1>Calendar</h1>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -95,18 +96,18 @@
|
||||||
<div class="calendar">
|
<div class="calendar">
|
||||||
<div class="yymm">
|
<div class="yymm">
|
||||||
<div class="yy">
|
<div class="yy">
|
||||||
<a href="./calendar.php?fo_id=<?=$fo_id?>&year=<?=$year?>&month=<?=$month?>&method=prev_year&callback_func=<?=$callback_func?>" class="left"><img src="../img/buttonLeft2.gif" alt="prev" width="11" height="11" /></a><?=$year?><a href="./calendar.php?fo_id=<?=$fo_id?>&year=<?=$year?>&month=<?=$month?>&method=next_year&callback_func=<?=$callback_func?>" class="right"><img src="../img/buttonRight2.gif" alt="next" width="11" height="11" /></a>
|
<a href="./calendar.php?fo_id=<?=$fo_id?>&year=<?=$year?>&month=<?=$month?>&method=prev_year&callback_func=<?=$callback_func?>" class="left"><img src="./images/buttonLeft2.gif" alt="prev" width="11" height="11" /></a><?=$year?><a href="./calendar.php?fo_id=<?=$fo_id?>&year=<?=$year?>&month=<?=$month?>&method=next_year&callback_func=<?=$callback_func?>" class="right"><img src="./images/buttonRight2.gif" alt="next" width="11" height="11" /></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="mm">
|
<div class="mm">
|
||||||
<p><?=date("M", mktime(0,0,0,$month,1,$year))?></p>
|
<p><?=date("M", mktime(0,0,0,$month,1,$year))?></p>
|
||||||
<a href="./calendar.php?fo_id=<?=$fo_id?>&year=<?=$year?>&month=<?=$month?>&method=prev_month&callback_func=<?=$callback_func?>" class="left"><img src="../img/buttonLeft2.gif" alt="prev" width="11" height="11" /></a><span><?=$month?></span><a href="./calendar.php?fo_id=<?=$fo_id?>&year=<?=$year?>&month=<?=$month?>&method=next_month&callback_func=<?=$callback_func?>" class="right"><img src="../img/buttonRight2.gif" alt="next" width="11" height="11" /></a>
|
<a href="./calendar.php?fo_id=<?=$fo_id?>&year=<?=$year?>&month=<?=$month?>&method=prev_month&callback_func=<?=$callback_func?>" class="left"><img src="./images/buttonLeft2.gif" alt="prev" width="11" height="11" /></a><span><?=$month?></span><a href="./calendar.php?fo_id=<?=$fo_id?>&year=<?=$year?>&month=<?=$month?>&method=next_month&callback_func=<?=$callback_func?>" class="right"><img src="./images/buttonRight2.gif" alt="next" width="11" height="11" /></a>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="go">
|
<div class="go">
|
||||||
<input type="text" class="inputTypeY" value="<?=$year?>" />
|
<input type="text" name="year" class="inputTypeY" value="<?=$year?>" />
|
||||||
<input type="text" class="inputTypeM" value="<?=$month?>" />
|
<input type="text" name="month" class="inputTypeM" value="<?=$month?>" />
|
||||||
<input name="" type="image" src="../img/buttonGo.gif" alt="Go" />
|
<input type="image" src="./images/buttonGo.gif" alt="Go" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
@ -172,11 +173,13 @@
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
<div id="popFooter">
|
<div id="popFooter">
|
||||||
<span class="close"><a href="#" onclick="window.close();" class="buttonTypeA"><img src="../img/blank.gif" alt="" class="leftCap" />close<img src="../img/blank.gif" alt="" class="rightCap" /></a></span>
|
<span class="close"><a href="#" onclick="window.close();" class="buttonTypeA"><img src="./images/blank.gif" alt="" class="leftCap" />close<img src="./images/blank.gif" alt="" class="rightCap" /></a></span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
xAddEventListener(window,'load', setFixedPopupSize);
|
xAddEventListener(window,'load', setFixedPopupSize);
|
||||||
|
var _isPoped = true;
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,12 @@
|
||||||
@charset "utf-8";
|
@charset "utf-8";
|
||||||
|
|
||||||
|
body { margin:0; padding:0; }
|
||||||
|
|
||||||
|
#popup_content { width:370px; overflow:hidden;}
|
||||||
|
#popHeadder { width:370px; }
|
||||||
|
#popBody { width:350px; }
|
||||||
|
#popFooter { width:370px; }
|
||||||
|
|
||||||
#popBody .calendar { width:350px; border:1px solid #c1c0bd; border-left:none; border-right:none; background:#f5f5f5; overflow:hidden; position:relative;}
|
#popBody .calendar { width:350px; border:1px solid #c1c0bd; border-left:none; border-right:none; background:#f5f5f5; overflow:hidden; position:relative;}
|
||||||
#popBody .calendar .yymm { width:143px; float:left;}
|
#popBody .calendar .yymm { width:143px; float:left;}
|
||||||
#popBody .calendar .yymm .yy { padding:9px 0 8px 0; text-align:center; border-bottom:1px solid #ededed; margin:0 15px; font:bold 1.2em Tahoma; color:#444444;}
|
#popBody .calendar .yymm .yy { padding:9px 0 8px 0; text-align:center; border-bottom:1px solid #ededed; margin:0 15px; font:bold 1.2em Tahoma; color:#444444;}
|
||||||
|
|
@ -16,7 +23,10 @@
|
||||||
#popBody .calendar .yymm .right img { vertical-align:middle; position:relative; top:2px;}
|
#popBody .calendar .yymm .right img { vertical-align:middle; position:relative; top:2px;}
|
||||||
#popBody .calendar .dd { float:left; width:207px; background:#ffffff; border-left:10px solid #ffffff;}
|
#popBody .calendar .dd { float:left; width:207px; background:#ffffff; border-left:10px solid #ffffff;}
|
||||||
#popBody .calendar .dd td { border-bottom:1px solid #ededed; height:30px; text-align:center; color:#636363; font:.9em Tahoma;}
|
#popBody .calendar .dd td { border-bottom:1px solid #ededed; height:30px; text-align:center; color:#636363; font:.9em Tahoma;}
|
||||||
|
#popBody .calendar .dd td a { color:#636363; font:.9em Tahoma;}
|
||||||
#popBody .calendar .dd td strong { text-decoration:underline;}
|
#popBody .calendar .dd td strong { text-decoration:underline;}
|
||||||
|
#popBody .calendar .dd td strong a { text-decoration:underline;}
|
||||||
#popBody .calendar .dd td.sun { color:#c95b53;}
|
#popBody .calendar .dd td.sun { color:#c95b53;}
|
||||||
|
#popBody .calendar .dd td.sun a { color:#c95b53;}
|
||||||
#popBody .calendar .dd .first { height:35px;}
|
#popBody .calendar .dd .first { height:35px;}
|
||||||
#popBody .calendar .dd .last td { height:35px; border-bottom:none;}
|
#popBody .calendar .dd .last td { height:35px; border-bottom:none;}
|
||||||
|
|
|
||||||
BIN
common/tpl/images/buttonGo.gif
Normal file
BIN
common/tpl/images/buttonGo.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 454 B |
BIN
common/tpl/images/buttonLeft2.gif
Normal file
BIN
common/tpl/images/buttonLeft2.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 58 B |
BIN
common/tpl/images/buttonRight2.gif
Normal file
BIN
common/tpl/images/buttonRight2.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 58 B |
Loading…
Add table
Add a link
Reference in a new issue