aboutsummaryrefslogtreecommitdiff
path: root/mod/profile/views/default/profile/css.php
blob: 1d1f1ccb1808072353f564b38ae6b0f3d20a6646 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<?php
/**
 * Elgg Profile 
 * 
 * @package Profile
 */
?>
/* ***************************************
	main layout blocks
*************************************** */
.profile {
	float: left;
	margin-bottom: 15px;
}
.profile .elgg-inner {
	margin: 0 5px;
	border: 2px solid #eeeeee;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
}
#profile-sidebar {
	width:230px;
	float:left;
}
#profile-details {
	padding: 15px;
}

/* ***************************************
	ownerblock in sidebar
*************************************** */
#profile-owner-block {
	background-color: #eeeeee;
	padding: 15px;
}
.owner_block_icon {
	overflow: hidden;
	margin-bottom: 10px;
}
#profile-owner-block a.elgg-action-button {
	margin-bottom: 4px;
	display: table;
}
.profile-content-menu a {
	display: block;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	background-color: white;
	margin: 3px 0 5px 0;
	padding: 2px 4px 2px 8px;
}
.profile-content-menu a:hover {
	background: #0054A7;
	color: white;
	text-decoration: none;
}

/* ***************************************
	admin menu in sidebar
*************************************** */
.profile-admin-menu {
	display: none;
}
.profile-admin-menu-wrapper a {
	display: block;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	background-color: white;
	margin: 3px 0 5px 0;
	padding: 2px 4px 2px 8px;
}
.profile-admin-menu-wrapper {
	background-color: white;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
}
.profile-admin-menu-wrapper li a {
	background-color: white;
	color: red;
	margin-bottom: 0;
}
.profile-admin-menu-wrapper a:hover {
	color: black;
}

/* ***************************************
	full profile info panel
*************************************** */
#profile-details .odd {
	background-color:#f4f4f4;
	-webkit-border-radius: 4px; 
	-moz-border-radius: 4px;
	margin:0 0 7px 0;
	padding:2px 4px 2px 4px;
}
#profile-details .even {
	background-color:#f4f4f4;
	-webkit-border-radius: 4px; 
	-moz-border-radius: 4px;
	margin:0 0 7px 0;
	padding:2px 4px 2px 4px;
}
#profile-details .aboutme_title {
	background-color:#f4f4f4;
	-webkit-border-radius: 4px; 
	-moz-border-radius: 4px;
	margin:0 0 0px 0;
	padding:2px 4px 2px 4px;
}
#profile-details .aboutme_contents {
	padding:2px 0 0 3px;
}

/* ***************************************
	banned user
*************************************** */
/* banned user full profile panel */
#profile_content .banned_user {
	border:2px solid red;
	padding:4px 8px;
	-webkit-border-radius: 6px; 
	-moz-border-radius: 6px;
}
/* banned user in friends lists */
.entity-listing-info p.entity-title.user.banned {
	text-decoration: line-through;
}
.entity-listing-info p.entity-title.user.banned a {
	color:red;
}