-
Notifications
You must be signed in to change notification settings - Fork 97
/
jquery.ui.chatbox.css
60 lines (52 loc) · 1.07 KB
/
jquery.ui.chatbox.css
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/* style sheets */
.ui-chatbox {
position: fixed;
bottom:0;
padding: 2px;
background: #CCCCCC;
}
.ui-chatbox-titlebar {
padding: 3px;
height: 20px;
cursor: pointer;
}
.ui-chatbox-content {
padding: 0px;
margin: 0px;
border: 0px;
}
.ui-chatbox-log {
padding: 3px;
height: 250px;
overflow-y: auto;
overflow-x: hidden;
background: #FFFFFF;
}
.ui-chatbox-input {
padding: 3px;
border-top: 1px solid grey;
overflow: hidden;
}
.ui-chatbox-input-box {
margin: 5px;
border: 2px solid lightgrey;/* #6699FF */
padding: 2px;
height: 50px;
}
.ui-chatbox-icon {
float: right;
}
.ui-chatbox-input-focus {
border-color: #6699FF;
}
.ui-chatbox-msg {
margin-top: 10px;
float: left;
clear: both;
/* Source: http://snipplr.com/view/10979/css-cross-browser-word-wrap */
white-space: pre-wrap; /* CSS3 */
white-space: -moz-pre-wrap; /* Firefox */
white-space: -pre-wrap; /* Opera <7 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* IE */
}