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

Revision 268, 2.0 KB checked in by niltonneto, 16 years ago (diff)
Line 
1/***** Chat  *****/
2
3.avatar
4{
5        width:  49px;
6        height: 65px;
7        margin: 2px;
8        border: 1px solid;
9        border-color: #cecece;
10}
11
12.button_bold
13{
14        background: url(../images/bold.gif) no-repeat top center;
15        height: 20px;
16        width:  25px;
17        float: left;
18        position: relative;
19        margin-top: 2px;
20        margin-right: 2px;
21        cursor: pointer;
22}
23
24.button_italic
25{
26        background: url(../images/italicize.gif) no-repeat top center;
27        height: 20px;
28        width:  25px;
29        float: left;
30        position: relative;
31        margin-top: 2px;
32        margin-right: 2px;
33        cursor: pointer;
34}
35
36.button_underline
37{
38        background: url(../images/underline.gif) no-repeat top center;
39        height: 20px;
40        width:  25px;
41        float: left;
42        margin-top: 2px;
43        margin-right: 2px;
44        position: relative;
45        cursor: pointer;
46}
47
48.button_color
49{
50        background: url(../images/color.gif) no-repeat top center;
51        height: 20px;
52        width: 25px;
53        float: left;
54        position: relative;
55        margin-top: 2px;
56        margin-right: 2px;
57        cursor: pointer;
58}
59
60.button_emoticons
61{
62        background: url(../images/emoticonlabel.gif) no-repeat top center;
63        height: 19px;
64        width: 21px;
65        float: left;
66        position: relative;
67        margin-top: 2px;
68        cursor: pointer;
69}
70
71.button_profile
72{
73        background: url(../images/profileBuddy.gif) no-repeat top center;
74        height: 20px;
75        width: 25px;
76        float: left;
77        position: relative;
78        margin-top: 2px;
79        margin-left: 2px;
80        cursor: pointer;
81}
82
83.button_sendMessage
84{
85        background: url(../images/barn.gif) repeat top center;
86        height: 20px;
87        width: 50px;
88        color: #fff !important;
89        font: 9pt Verdana, arial, helvetica, serif;
90        font-weight: bold;
91        cursor: pointer;
92}
93
94.div_sendMessage
95{
96        float:right;
97        position: relative;
98        margin-top: 3px;
99        margin-left: 60px;
100}
101
102.history
103{
104        background: #fff;
105        border: 1px solid;
106        border-color: #b3b3b3 #cecece #cecece #b3b3b3;
107        width:  289px;
108        height: 180px;
109        cursor: text;
110        overflow: auto;
111}
112
113.messages
114{
115        background: #fff;
116        border: 1px solid;
117        border-color: #b3b3b3 #cecece #cecece #b3b3b3;
118        width:  auto;   /*289px;*/
119        height: 46px;
120        cursor: text;
121}
122
123.toolbar_buttons
124{
125        width:289px;
126        height:29px;
127}
128
129/***** Chat  *****/
Note: See TracBrowser for help on using the repository browser.