fix title hight
This commit is contained in:
@@ -10,8 +10,8 @@
|
||||
+ python-csscompressor(optional)
|
||||
|
||||
#### Get Necessary Data:
|
||||
+ Get /data/data/com.tencent.mm/MicroMsg/long-long-name/EnMicroMsg.db from root filesystem .
|
||||
+ Get Wechat resource directory from user filesystem, usually at storage:/tencent/MicroMsg/long-long-name.
|
||||
+ Get /data/data/com.tencent.mm/MicroMsg/long-long-name/EnMicroMsg.db from root filesystem.
|
||||
+ Get WeChat user resource directory from user filesystem, for example: storage/tencent/MicroMsg/long-long-name.
|
||||
+ Get Wechat uin:
|
||||
+ login to [web-based wechat](https://wx.qq.com); get wxuin=1234567 from `document.cookie`
|
||||
+ Or get ``default_uin`` from /data/data/com.tencent.mm/shared_prefs/system_config_prefs.xml.
|
||||
@@ -29,7 +29,7 @@
|
||||
```
|
||||
./dump_msg.py decrypted_db.db output_dir
|
||||
```
|
||||
+ Dump messages of one contact to an html including voice messages and image thumbnail:
|
||||
+ Dump messages of one contact to single-file html, containing voice messages and image thumbnail:
|
||||
```
|
||||
./dump_html.py decrypted_db.db <resource directory> <contact name> output.html
|
||||
```
|
||||
|
||||
@@ -11,13 +11,13 @@
|
||||
<div id="container">
|
||||
<div id="chat" class="chatPanel normalPanel">
|
||||
<div class="chatContainer" style="min-height:100%;">
|
||||
<div class="chatMainPanel" id="chatMainPanel" style="height:100%;">
|
||||
<div class="chatTitle">
|
||||
<div class="chatMainPanel" id="chatMainPanel" style="padding-top:40px;">
|
||||
<div class="chatTitle" style="margin-top: -40px;">
|
||||
<div class="chatNameWrap">
|
||||
<p class="chatName" id="messagePanelTitle">{talker}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="chatScorll" style="height: 95%; overflow-y: scroll; position: relative; font-family:initial;">
|
||||
<div class="chatScorll" style="height: 100%; overflow-y: scroll; position: relative; font-family:initial;">
|
||||
<div id="chat_chatmsglist" class="chatContent" style="position: absolute;">
|
||||
{messages}
|
||||
</div>
|
||||
@@ -27,6 +27,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<script type='text/javascript'>
|
||||
// avoid repeatly inserting the same base64 img into html
|
||||
var chats = document.getElementsByClassName('me');
|
||||
for (var k = 0; k < chats.length; k ++) {{
|
||||
var avt = chats[k].getElementsByClassName('avatar')[0];
|
||||
|
||||
@@ -2492,10 +2492,6 @@ a.chatSend b {
|
||||
text-align: center;
|
||||
}
|
||||
.chatPanel .chatMainPanel {
|
||||
position: absolute;
|
||||
/*
|
||||
*width: 100%;
|
||||
*/
|
||||
border-radius: 2px 2px 6px 6px;
|
||||
}
|
||||
.chatPanel .chatOperator a.chatSend:active b {
|
||||
|
||||
Reference in New Issue
Block a user