blob: 0bf150bc2e9b0e106c61a38af36781afdeaa64c2 (
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
|
<?php
/**
* Elgg Messageboard CSS extender
*
* @package ElggMessageBoard
* @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/
*/
?>
/* input msg area */
#mb_input_wrapper {
margin:0 10px 5px 10px;
padding:5px;
background: white;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
}
#mb_input_wrapper .input_textarea {
width:675px;
}
.collapsable_box_content #mb_input_wrapper .input_textarea {
width:259px;
}
.message_item_timestamp {
font-size:90%;
padding:10px 0 0 0;
}
p.message_item_timestamp {
margin-bottom: 10px;
}
/* wraps each message */
.messageboard {
margin:0 10px 5px 10px;
padding:0;
background: white;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
}
.messageboard .message_sender {
float:left;
margin: 5px 10px 0 5px;
}
/* IE6 */
* html .messageboard { width: 280px; }
* html #two_column_left_sidebar_maincontent .messageboard { width: 667px; }
* html .messageboard .message_sender { margin: 5px 10px 0 2px; }
* html #mb_input_wrapper .input_textarea { width:645px; }
/* IE7 */
*:first-child+html .messageboard { width: 280px; }
*:first-child+html #two_column_left_sidebar_maincontent .messageboard { width: 698px; }
*:first-child+html .messageboard .message_sender { margin: 5px 10px 0 2px; }
.messageboard .message p {
line-height: 1.2em;
background:#dedede;
margin:0 6px 4px 6px;
padding:4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
overflow-y:hidden;
overflow-x:auto;
color:#333333;
}
.message_buttons {
padding:0 0 3px 4px;
margin:0;
font-size: 90%;
color:#666666;
}
.messageboard .delete_message a {
display:block;
float:right;
cursor: pointer;
width:14px;
height:14px;
margin:0 3px 3px 0;
background: url("<?php echo $vars['url']; ?>_graphics/icon_customise_remove.png") no-repeat 0 0;
text-indent: -9000px;
}
.messageboard .delete_message a:hover {
background-position: 0 -16px;
}
|