aboutsummaryrefslogtreecommitdiff
path: root/mod/groups/views/default/groups/css.php
blob: 502c35f52114c5c14a5afc06868200314f1d270c (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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?php
/**
 * Elgg Groups css
 * 
 * @package groups
 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
 * @author Curverider Ltd <info@elgg.com>
 * @copyright Curverider Ltd 2008-2010
 * @link http://elgg.com/
 */

?>
/* group listings */
.group_count {
	float:right;
}
.group_listings {
	/* wraps group lists on 
	latest discussion, newest, popular */
}
.entity_subtext.groups {
	float:right;
	width:300px;
	text-align: right;
	margin-left: 10px;
}
.entity_listing.topic:hover {
	background-color: white;
}


/* group invitations */
.group_invitations a.action_button,
.group_invitations a.submit_button {
	float:right;
	margin:0 0 0 14px;
}


/* GROUPS SIDEBAR ELEMENTS */
#groupsearchform .search_input {
	width:196px;
}
.featured_group {
	margin-bottom:15px;
}
.featured_group .usericon {
	float:left;
	margin-right:10px;
}
.featured_group p.entity_title {
	margin-bottom:0;
}
.member_icon {
	margin:6px 6px 0 0;
	float:left;
}


/* GROUP PROFILE PAGE (a groups homepage) */
.group_profile_column {
	float:left;
	margin-top:10px;
}
.group_profile_column.icon {
	width:200px;
}
.group_profile_column.info {
	width:510px;
	margin-left:20px;
}
.group_profile_icon {
	width:200px;
	height:200px;
}
.group_stats {
	background: #eeeeee;
	padding:5px;
	margin-top:10px;
	-webkit-border-radius: 5px; 
	-moz-border-radius: 5px;
}
.group_stats p {
	margin:0;
}
.group_profile_column .odd,
.group_profile_column .even {
	background:#f4f4f4;
	-webkit-border-radius: 4px; 
	-moz-border-radius: 4px;
	padding:2px 4px;
	margin:0 0 7px;
}
.group_profile.forum_latest {
	margin-top:20px;
}
.group_profile.forum_latest h3 {
	border-bottom:1px solid #CCCCCC;
	padding-bottom:5px;
	color:#555555;
}

/* tool content boxes on group profile page */
#group_tools_latest {
	min-height: 300px;
	margin-top:20px;
}
.group_tool_widget {
	float:left;
	margin-right:30px;
	margin-bottom:20px;
	min-height:200px;
	width:350px;
}
.group_tool_widget.odd {
	margin-right:0;
}
.group_tool_widget h3 {
	border-bottom:1px solid #CCCCCC;
	padding-bottom:5px;
	color:#555555;
}
/*
.group_profile_column.right {
	float:right;
	width:350px;
	margin-top:20px;
}
.group_profile_column.left {
	width:350px;
	float:left;
	margin-top:20px;
}
*/
/* edit group page */
.delete_group {
	float: right;
	margin-top:-44px;
}

/* Group forum */

/* all browsers - force tinyMCE on edit forum posts to be full-width */
.edit_comment .defaultSkin table.mceLayout {
	width: 694px !important;
}