blob: 1a3d0acb4b9a8ec9e9784cf137117fcfcb7e77a0 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/* Set profile icon dimensions */
ul.profile-icons li.pm-icon { width: 28px; height: 20px; }
ul.profile-icons li.quote-icon { width: 54px; height: 20px; }
ul.profile-icons li.edit-icon { width: 42px; height: 20px; }
/* Online image */
.online { background-image: url("./icon_user_online.gif"); }
/* Icon images */
.pm-icon, .pm-icon a { background-image: url("./icon_contact_pm.gif"); }
.quote-icon, .quote-icon a { background-image: url("./icon_post_quote.gif"); }
.edit-icon, .edit-icon a { background-image: url("./icon_post_edit.gif"); }
/* EN Language Pack */
.imageset.icon_contact_pm {
background-image: url("./icon_contact_pm.gif");
padding-left: 28px;
padding-top: 20px;
}
.imageset.icon_post_edit {
background-image: url("./icon_post_edit.gif");
padding-left: 42px;
padding-top: 20px;
}
.imageset.icon_post_quote {
background-image: url("./icon_post_quote.gif");
padding-left: 54px;
padding-top: 20px;
}
.imageset.icon_user_online {
background-image: url("./icon_user_online.gif");
padding-left: 58px;
padding-top: 58px;
}
.imageset.button_pm_forward {
background-image: url("./button_pm_forward.gif");
padding-left: 96px;
padding-top: 25px;
}
.imageset.button_pm_new {
background-image: url("./button_pm_new.gif");
padding-left: 84px;
padding-top: 25px;
}
.imageset.button_pm_reply {
background-image: url("./button_pm_reply.gif");
padding-left: 96px;
padding-top: 25px;
}
.imageset.button_topic_locked {
background-image: url("./button_topic_locked.gif");
padding-left: 88px;
padding-top: 25px;
}
.imageset.button_topic_new {
background-image: url("./button_topic_new.gif");
padding-left: 96px;
padding-top: 25px;
}
.imageset.button_topic_reply {
background-image: url("./button_topic_reply.gif");
padding-left: 96px;
padding-top: 25px;
}
|