-
Notifications
You must be signed in to change notification settings - Fork 3
/
navMsgSend.html
executable file
·77 lines (73 loc) · 2.03 KB
/
navMsgSend.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<script src="scripts/navMsgSend.js" type="text/javascript"></script>
<style type="text/css">
#msgSendWrapper {width:800px; margin-left:50px;}
.listStyleTable .msgNotes { width:100px;}
.listStyleTable .msgInput { width:700px;}
.listStyleTable .msgInput input{
width:680px;
height:20px;
margin-top:auto;
margin-bottom:auto;
display:inline-block;
font-family: "宋体";
}
.msgTitleDiv {
font-family: Tahoma,"微软雅黑",Times,serif;
color:#454545;
height: 35px;
font-size: 15px;
text-align:center;
border: 1px solid #909090;
}
.msgReceiver{ background-color: #dde3ec; }
.msgSubject{ background-color:#dddddd; }
.msgButtonDiv{
margin-top:10px;
display:inline-block;
margin-left:320px;
position:relative;
}
.button{
cursor:pointer;
width:66px;
height:42px;
display:inline-block;
margin-left:auto;
margin-right:auto;
position:relative;
}
/*.sendBtn:active,.rstBtn:active{ top:1px; }
.sendBtn{ background: url('images/send.png') no-repeat; }
.rstBtn { background: url('images/clear.png') no-repeat; }*/
.newMsgLabel {
font-size:18px;
color:#2c7db5;
font-weight:bold;
font-family:"微软雅黑",Times,serif;
}
</style>
<div id="msgSendWrapper" class="msgModuleDiv">
<p class="newMsgLabel">写新信件</p>
<div class='seperatorHr'></div>
<div>
<table class="listStyleTable">
<tr class="msgTitleDiv msgReceiver">
<td class="msgNotes">收件人</td>
<td class="msgInput">
<input id="userName" type="text"/>
<input id="receiverId" type="hidden" name="receiver_id" />
</td>
</tr>
<tr class="msgTitleDiv ">
<td class="msgNotes">标题</td>
<td class="msgInput"><input type="text" id="msgTitle" name="title" /></td>
</tr>
</table>
<div id="releaseId"><textarea id="msgContent" name="content"></textarea></div>
<div class="msgButtonDiv">
<button id="msgSendBtn" class="button">发送</button>
<button id="msgRstBtn" class="button">置空</button>
</div>
</div>
<p id="notes" class="errorNotesInfo" style="display:none"></p>
</div>