Direct message markup and style

This commit is contained in:
sarven 2009-01-21 03:38:50 +00:00
parent e9b9795eeb
commit 88297e7b24
2 changed files with 43 additions and 10 deletions

View File

@ -85,7 +85,7 @@ class MessageForm extends Form
function id() function id()
{ {
return 'message_form'; return 'form_notice';
} }
/** /**
@ -99,6 +99,18 @@ class MessageForm extends Form
return common_local_url('newmessage'); return common_local_url('newmessage');
} }
/**
* Legend of the Form
*
* @return void
*/
function formLegend()
{
$this->out->element('legend', null, _('Send a direct notice'));
}
/** /**
* Data elements * Data elements
* *
@ -122,18 +134,20 @@ class MessageForm extends Form
$mutual_users->free(); $mutual_users->free();
unset($mutual_users); unset($mutual_users);
$this->out->elementStart('ul', 'form_data');
$this->out->elementStart('li', array('id' => 'notice_to'));
$this->out->dropdown('to', _('To'), $mutual, null, false, $this->out->dropdown('to', _('To'), $mutual, null, false,
$this->to->id); $this->to->id);
$this->out->elementEnd('li');
$this->out->elementStart('p'); $this->out->elementStart('li', array('id' => 'notice_text'));
$this->out->element('textarea', array('id' => 'notice_data-text',
$this->out->element('textarea', array('id' => 'message_content', 'cols' => 35,
'cols' => 60, 'rows' => 4,
'rows' => 3,
'name' => 'content'), 'name' => 'content'),
($this->content) ? $this->content : ''); ($this->content) ? $this->content : '');
$this->out->elementEnd('li');
$this->out->elementEnd('p'); $this->out->elementEnd('ul');
} }
/** /**
@ -144,9 +158,14 @@ class MessageForm extends Form
function formActions() function formActions()
{ {
$this->out->element('input', array('id' => 'message_send', $this->out->elementStart('ul', 'form_actions');
$this->out->elementStart('li', array('id' => 'notice_submit'));
$this->out->element('input', array('id' => 'notice_action-submit',
'class' => 'submit',
'name' => 'message_send', 'name' => 'message_send',
'type' => 'submit', 'type' => 'submit',
'value' => _('Send'))); 'value' => _('Send')));
$this->out->elementEnd('li');
$this->out->elementEnd('ul');
} }
} }

View File

@ -482,6 +482,20 @@ padding:8px;
#form_notice li { #form_notice li {
margin-bottom:0; margin-bottom:0;
} }
#form_notice #notice_to {
margin-bottom:7px;
}
#notice_to label {
float:left;
margin-right:18px;
margin-top:11px;
}
#notice_to select {
float:left;
}
/*end FORM NOTICE*/ /*end FORM NOTICE*/