/usr/lib/Wt/examples/simplechat/chatwidget.css is in witty-examples 3.3.0-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | .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-info {
font-style: oblique;
color: gray;
}
.chat-user {
color: #DD7200;
font-weight: bold;
padding-right: 0.2em;
}
|