source: trunk/instant_messenger/templates/default/css/chat.css @ 151

Revision 151, 1.5 KB checked in by niltonneto, 16 years ago (diff)

Commit da nova versão do módulo, usando agente em C.
Vide Página do módulo do Trac:
http://www.expressolivre.org/dev/wiki/messenger

A versão anterior encontra-se na subpasta bkp (32/64).

  • Property svn:executable set to *
  • Property svn:mime-type set to application/octet-stream
Line 
1/***** Chat  *****/
2
3.avatar
4{
5        width:  49px;
6        height: 65px;
7        float:  right;
8        position:       absolute;
9        top:    0px;
10        margin: 2px;
11        border: 1px solid;
12        border-color: #cecece;
13
14}
15
16.button_bold
17{
18        background: url(../images/bold.gif) no-repeat top center;
19        height: 20px;
20        width:  25px;
21        float: left;
22        position: relative;
23        margin-top: 2px;
24        margin-right: 2px;
25        cursor: pointer;
26}
27
28.button_italic
29{
30        background: url(../images/italicize.gif) no-repeat top center;
31        height: 20px;
32        width:  25px;
33        float: left;
34        position: relative;
35        margin-top: 2px;
36        margin-right: 2px;
37        cursor: pointer;
38}
39
40.button_underline
41{
42        background: url(../images/underline.gif) no-repeat top center;
43        height: 20px;
44        width:  25px;
45        float: left;
46        margin-top: 2px;
47        margin-right: 2px;
48        position: relative;
49        cursor: pointer;
50}
51
52.button_color
53{
54        background: url(../images/color.gif) no-repeat top center;
55        height: 20px;
56        width: 25px;
57        float: left;
58        position: relative;
59        margin-top: 2px;
60        margin-right: 2px;
61        cursor: pointer;
62}
63
64.button_emoticons
65{
66        background: url(../images/emoticonlabel.gif) no-repeat top center;
67        height: 20px;
68        width: 25px;
69        float: left;
70        position: relative;
71        margin-top: 2px;
72        cursor: pointer;
73}
74
75.history
76{
77        background: #fff;
78        border: 1px solid;
79        border-color: #b3b3b3 #cecece #cecece #b3b3b3;
80        width:  289px;
81        height: 180px;
82        cursor: text;
83        overflow: auto;
84}
85
86.messages
87{
88        background: #fff;
89        border: 1px solid;
90        border-color: #b3b3b3 #cecece #cecece #b3b3b3;
91        width:  auto;   /*289px;*/
92        height: 46px;
93        cursor: text;
94
95
96}
97
98.toolbar_buttons
99{
100        width:289px;
101        height:29px;
102}
103
104/***** Chat  *****/
Note: See TracBrowser for help on using the repository browser.