mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-08-08 06:12:43 -04:00
added for Privat chat html and css feature to can make styles for Chat Window.
added first basic default style. style Button disabled need to be fix. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@500 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
13eb45f294
commit
a20ff44567
10 changed files with 224 additions and 24 deletions
26
retroshare-gui/src/release/style/chat/default.css
Normal file
26
retroshare-gui/src/release/style/chat/default.css
Normal file
|
@ -0,0 +1,26 @@
|
|||
.header {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.time {
|
||||
}
|
||||
|
||||
.incomingHeader {
|
||||
background-color:#dfedff;
|
||||
border-color:#fafafa #d1dfef #d1dfef #fafafa;
|
||||
color: #295b07;
|
||||
}
|
||||
|
||||
.incomingTime {
|
||||
color: #295b07;
|
||||
}
|
||||
|
||||
.outgoingHeader {
|
||||
background-color:#f5f5f5;
|
||||
border-color:#fafafa #e3e3e3 #e3e3e3 #fafafa;
|
||||
color: #244578;
|
||||
}
|
||||
|
||||
.outgoingTime {
|
||||
color: #244578;
|
||||
}
|
23
retroshare-gui/src/release/style/chat/default.htm
Normal file
23
retroshare-gui/src/release/style/chat/default.htm
Normal file
|
@ -0,0 +1,23 @@
|
|||
<style type="text/css">
|
||||
%css-style%
|
||||
</style>
|
||||
|
||||
<table width='100%' cellpadding='0' cellspacing='0'>
|
||||
<tr>
|
||||
<td class='header incomingHeader'>
|
||||
%name%
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table width='100%' cellpadding='0' cellspacing='0'>
|
||||
<tr>
|
||||
<td>%message%</td>
|
||||
<td width='50' align='left' class='time incomingTime'>%timestamp%</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
BIN
retroshare-gui/src/release/style/chat/images/rstray3.png
Normal file
BIN
retroshare-gui/src/release/style/chat/images/rstray3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.3 KiB |
24
retroshare-gui/src/release/style/chat/second.css
Normal file
24
retroshare-gui/src/release/style/chat/second.css
Normal file
|
@ -0,0 +1,24 @@
|
|||
.header {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.time {
|
||||
}
|
||||
|
||||
.incomingHeader {
|
||||
background-color: #B2B2B2;
|
||||
color: #000033;
|
||||
}
|
||||
|
||||
.incomingTime {
|
||||
color: #CCD9D9;
|
||||
}
|
||||
|
||||
.outgoingHeader {
|
||||
background-color: #c2d9fa;
|
||||
color: #244578;
|
||||
}
|
||||
|
||||
.outgoingTime {
|
||||
color: #244578;
|
||||
}
|
28
retroshare-gui/src/release/style/chat/second.htm
Normal file
28
retroshare-gui/src/release/style/chat/second.htm
Normal file
|
@ -0,0 +1,28 @@
|
|||
<style type="text/css">
|
||||
%css-style%
|
||||
</style>
|
||||
|
||||
<table width='100%' cellpadding='0' cellspacing='0'>
|
||||
<tr>
|
||||
<td align='right' width='32' bgcolor='white' rowspan='2'>
|
||||
<div>
|
||||
<img src='%avatar%'>
|
||||
</div>
|
||||
</td>
|
||||
<td class='header incomingHeader'>
|
||||
%name%
|
||||
</td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<table width='100%' cellpadding='0' cellspacing='0'>
|
||||
<tr>
|
||||
<td>%message%</td>
|
||||
<td width='50' align='left' class='time incomingTime'>%timestamp%</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue