blob: f6dedc00889e2fd40c1aa69163dbb2d48e7c9079 (
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
|
/* ***************************************
MISC
*************************************** */
#login-dropdown {
position: absolute;
top:10px;
right:0;
z-index: 100;
}
#dashboard-info .elgg-inner {
border: 2px solid #dedede;
}
/* ***************************************
AVATAR UPLOADING & CROPPING
*************************************** */
#current-user-avatar {
border-right:1px solid #cccccc;
}
#avatar-croppingtool {
border-top: 1px solid #cccccc;
}
#user-avatar {
float: left;
}
#user-avatar-preview {
float: left;
position: relative;
overflow: hidden;
width: 100px;
height: 100px;
}
/* ***************************************
FRIENDS COLLECTIONS
*************************************** */
#friends_collections_accordian li {
color: #666666;
}
#friends_collections_accordian li h2 {
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
background: none repeat scroll 0 0 #4690D6;
color: white;
cursor: pointer;
font-size: 1.2em;
margin: 10px 0;
padding: 4px 2px 4px 6px;
}
#friends_collections_accordian li h2:hover {
background-color: #333333;
}
#friends_collections_accordian .friends_collections_controls {
float: right;
font-size: 70%;
}
#friends_collections_accordian .friends-picker-main-wrapper {
background: none repeat scroll 0 0 white;
display: none;
padding: 0;
}
|