-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
76 lines (63 loc) · 1.23 KB
/
styles.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
@CHARSET "UTF-8";
/*************** MESSAGE NOTIFIER **************/
#message_notifier, #message_notif_click{
position: relative;
width: 32px;
height: 32px;
}
#message_notif_click{
cursor: pointer;
}
#message_notif_click img{
padding: 4px;
}
#message_notif_click .num_overlay{
background-color: red;
color: white;
font-size: 12px;
font-weight: bold;
padding: 2px;
line-height: 12px;
border-radius: 30%;
min-width: 12px;
text-align: center;
position: absolute;
top: 1px;
right: 1px;
}
#message_contents{
color: black;
text-transform: none;
position: absolute;
right: 0px;
width: 300px;
background-color: white;
padding: 3px;
z-index: 1000;
}
#message_contents .viewall{
text-align: center;
}
#message_contents .message{
border-bottom: 1px solid black;
cursor: pointer;
}
#messagePanel .picture, #message_contents .picture{
padding: 3px;
float: left;
}
#messagePanel .userfrom, #message_contents .userfrom{
font-weight: bold;
display: block;
}
#messagePanel>.subject, #message_contents>.subject{
float: left;
}
#messagePanel .message_content, #message_contents .message_content{
margin-left: 43px;
clear: both;
}
#messagePanel .time, #message_contents .time{
float: right;
color: #999;
}