aboutsummaryrefslogtreecommitdiff
path: root/mod/thewire/views/default/thewire/css.php
blob: 230711c49744090302ca1e592a9fb5bd529420b8 (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
<?php

	/**
	 * Elgg thewire CSS extender
	 * 
	 * @package ElggTheWire
	 */

?>
/* new wire post form */
.new_wire_post {
	margin:10px 0 15px 0;
	padding-bottom:15px;
	border-bottom: 1px solid #dedede;
}
.new_wire_post input[type="submit"] {
	margin:3px 0 0 0;
	float:right;
}
.new_wire_post textarea {
	width: 719px;
	height: 52px;
	padding: 2px 5px 5px 5px;
	font-size: 120%;
	color:#333333;
}
.character_count {
	width: 642px;
	color:#666666;
}
.character_count input { 
	color:#666666;
	border:none;
	font-size: 100%;
	font-weight: bold;
	padding:0 2px 0 0;
	margin:0;
	text-align: right;
	background: white;
}
.character_count input:focus {
	border:none;
	background:white;
}


/* wire posts listings */
.wire_post {
	padding-bottom:10px;
	margin-bottom:5px;
	background-image: url(<?php echo elgg_get_site_url(); ?>mod/thewire/graphics/thewire_speech_bubble.gif);
	background-repeat: no-repeat;
	background-position: right bottom; 
}
.members_list .wire_post { /* when displayed in lists of friends */
	margin-top:4px;
}
.wire_post_contents {
	background-color: #eeeeee;
	margin:0;
	padding:5px;
	line-height: 1.2em;
	min-height: 34px;
	position: relative;
}
.wire_post_icon {
    float:left;
    margin-right:8px;
}
.wire_post_info {
	margin-top:-3px;
	float:left;
	width:620px;
	overflow: hidden;
}
.wire_post_options {
	float:right;
	width:65px;
}
.wire_post_options .action-button.reply.small {
	float:right;
}
.wire_post_options .delete-button {
	position: absolute;
	bottom:5px;
	right:5px;
}


/* latest wire post on profile page */
.wire_post .action-button.update.small {
	float:right;
	padding:4px;
	position: absolute;
	bottom:5px;
	right:5px;
}

/* river wire entry */
.river_item .reply_link {
	display:block;
}