File: chatwidget.css

package info (click to toggle)
witty 3.3.3%2Bdfsg-4.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 28,228 kB
  • ctags: 26,694
  • sloc: cpp: 147,809; ansic: 77,999; xml: 16,331; sh: 1,303; makefile: 198; java: 86; sql: 14
file content (87 lines) | stat: -rw-r--r-- 1,270 bytes parent folder | download | duplicates (4)
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
.chat-widget {
    position: fixed;
    right: 5px;
    bottom: 0px;    
    border: 1px solid #BBB;
    border-bottom: 0px;
    z-index: 100;
    background-color: white;
}

.chat-minimized {
    width: 185px;
    height: 20px;
}

.chat-maximized {
    width: 200px;
    height: 250px;
}

.chat-bar {
    height: 21px;
    padding: 2px 5px;
    background-color: #70bd1A;
    color: white;
}

.chat-bar.alert {
    background-color: #D05D2A;
}

.chat-bar .chat-minmax {
    float: right;
    width: 16px;
    height: 16px;
}

.chat-bar .self {
    font-size: 110%;
    font-weight: bold;
}

.chat-bar .online {
    color: #DDDDDD;
}

.chat-maximized .chat-bar .chat-minmax {
    background: url(icons/minimize.png) no-repeat center center;
}

.chat-minimized .chat-bar .chat-minmax {
    background: url(icons/maximize.png) no-repeat center center;
}

.chat-self {
  color: #B42600;
  font-weight: bold;
  padding-right: 0.2em;
}

.chat-highlight {
  font-weight: bold;
}

.chat-msg {
  padding: 0px 3px;
  line-height: 1.3;
}

.chat-msg .name-edit input {
  width: 70px;
}

.chat-msg .name-edit:hover {
  text-decoration: underline;
}

.chat-info {
  font-style: oblique;
  color: gray;
}

.chat-user {
  color: #DD7200;
  font-weight: bold;
  padding-right: 0.2em;
}