aboutsummaryrefslogtreecommitdiff
path: root/mod/riverdashboard/views/default/riverdashboard/css.php
blob: a09a32712f490f67d072caadf9fc328d15d1205b (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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<?php
/**
 * Elgg riverdashboard CSS
 *
 */
?>
#riverdashboard_updates {
	border-bottom:1px solid #cccccc;
}
#riverdashboard_updates a.update_link {
	display: inline-table;
	color:white;
	font-weight: bold;
	padding:1px 8px 2px 24px;
	margin-top:9px;
	cursor: pointer;
	background: red url("<?php echo elgg_get_site_url(); ?>mod/riverdashboard/graphics/refresh.png") no-repeat 5px 3px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
#riverdashboard_updates a.update_link:hover {
	background: #4690D6 url("<?php echo elgg_get_site_url(); ?>mod/riverdashboard/graphics/refresh.png") no-repeat 5px -22px;
	color:white;
	text-decoration: none;
}
.riverdashboard_filtermenu {
	margin:10px 0 10px 0;
	float:right;
}

/* RIVER ENTRY */
.river_item {
	border-bottom:1px solid #cccccc;
	padding:7px 0 7px 0;
}
.river_item p {
	margin:0;
}
.river_item .entity_subtext {
	display: block;
	line-height: 1.4em;
}
.river_item_useravatar {
	float:left;
	margin-top:3px;
	margin-left:1px;
}
.river_item_contents {
	margin-left:55px;
}
.river_item_contents a {
	font-weight: bold;
}
.river_content_display {
	border-left:1px solid #DDDDDD;
	font-size:85%;
	line-height:1.5em;
	margin:8px 0 5px 0;
	padding-left:5px;
}
.following_icon {
	width:20px;
	height:25px;
	margin:0 2px 0 2px;
	background: url(<?php echo elgg_get_site_url(); ?>mod/riverdashboard/graphics/follow_icon.png) no-repeat left -7px;
}

/* LATEST COMMENTS IN RIVER */
.river_comments_tabs {
	max-height: 19px;
	overflow:hidden;
}
.river_comments {
	-moz-border-radius-bottomleft:5px;
	-moz-border-radius-bottomright:5px;
	-moz-border-radius-topleft:5px;
	-moz-border-radius-topright:0;
	-webkit-border-top-left-radius:5px;
	-webkit-border-top-right-radius:0;
	-webkit-border-bottom-right-radius:5px;
	-webkit-border-bottom-left-radius:5px;
	background-color: #eeeeee;
}
.river_comment {
	padding:3px;
	border-bottom:1px solid white;
}
.river_comment.penultimate {

}
.river_comment.latest {

}
/* hidden inline comment form */
.river_comment_form.hidden {
	padding:5px;
	height:26px;
}
.river_comment_form.hidden .input-text {
	width:560px;
	padding:3px;
}
#profile_content .river_comment_form.hidden .input-text { /* when activity is displayed on profile page */
	width:535px;
}
.river_comment_form.hidden .submit-button {
	margin:0 0 0 10px;
	float:right;
}
.river_link_divider {
	color:#999999;
	font-style: normal;
}
.river_item_contents .river_comment_form_button,
.river_item_contents .river_user_like_button {
	font-weight:normal;
	font-style: normal;
}
.river_item_contents .river_comment_form_button {
	margin-left: 7px;
}
/* hidden list of users that liked item */
.river_item .elgg_likes_user {
	border-bottom:1px solid white;
	padding:3px;
}
.river_item .elgg_likes_user .entity_listing_icon {
	margin:3px 0 4px 2px;
}
.river_item .elgg_likes_user .entity_listing_info {
	width:635px;
}
#profile_content .river_item .elgg_likes_user .entity_listing_info { /* when likes is displayed on profile page activity stream */
	width:600px;
}
.river_item .elgg_likes_user .entity_metadata {
	margin-top:3px;
}
.river_item p.elgg_likes_owner {
	padding-top:0;
}
.river_item a.river_more_comments {
	display:block;
	float:right;
	padding:1px 7px 1px 7px;
	margin-left:6px;
	text-align:right;
	font-size:85%;
	font-weight:normal;
	width:auto;
	background-color: #eeeeee;
	-moz-border-radius-topleft:4px;
	-moz-border-radius-topright:4px;
	-webkit-border-top-left-radius:4px;
	-webkit-border-top-right-radius:4px;
}
.river_item a.river_more_comments.off {
	background-color: white;
}
.river_item .river_comment_owner_icon {
	float:left;
	margin:3px 8px 4px 2px;
}
.river_item .river_comment_contents {
	margin-left:34px;
}
a.river_more_comments {
	float:right;
	font-size:85%;
	padding-right:7px;
	text-align: right:
}