blob: 9dde4859ceae0d4a23f74f8ba87bd2c9d679593e (
plain)
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
|
.chatroom
{
position:relative;
height:240px;
background-color: #e0e0e0;
border: 0px solid black;
}
.chat
{
height: 200px;
overflow: auto;
background-color: #fff;
padding: 4px;
border: 0px solid black;
}
.dijitTabContainer .chat {
height:auto;
}
.input {
position:absolute;
bottom:0px;
display:block;
padding: 4px;
border: 0px solid black;
border-top: 1px solid black;
}
.phrase
{
width:200px;
background-color:#ededed;
}
.username
{
width:145px;
background-color: #ededed;
}
.hidden { display: none; }
.from { font-weight: bold; }
.alert { font-style: italic; }
.dijitTitlePaneContentInner { padding:0px !important; }
|