<!-- HEADER -->
<header id="pageHeader" class="layoutFluid">
<div>
- {hascontent}
- <!-- top menu -->
- <nav id="topMenu" class="userPanel">
- <div class="layoutFluid clearfix">
+ <!-- top menu -->
+ <nav id="topMenu" class="userPanel">
+ <div class="layoutFluid clearfix">
+ {hascontent}
<ul class="userPanelItems">
{content}{event name='topMenu'}{/content}
</ul>
-
- <!-- search area -->
- {event name='searchArea'}
- <!-- /search area -->
- </div>
- </nav>
- <!-- /top menu -->
- {/hascontent}
+ {/hascontent}
+
+ <!-- search area -->
+ {event name='searchArea'}
+ <!-- /search area -->
+ </div>
+ </nav>
+ <!-- /top menu -->
<!-- logo -->
<div id="logo" class="logo">
/**
* This class represents an e-mail.
*
- * @author Michael Schaefer
- * @copyright 2001-2011 WoltLab GmbH
+ * @author Marcel Werk
+ * @copyright 2001-2012 WoltLab GmbH
* @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
* @package com.woltlab.wcf
* @subpackage data.mail
*/
class Mail {
protected $header = '';
- protected $boundary;
+ protected $boundary = '';
protected $contentType = "text/plain";
- protected $to;
- protected $subject;
- protected $message;
- protected $from;
- protected $cc;
- protected $bcc;
+ protected $to = array();
+ protected $subject = '';
+ protected $message = '';
+ protected $from = array();
+ protected $cc = array();
+ protected $bcc = array();
protected $attachments = array();
- protected $priority;
- protected $body;
+ protected $priority = 3;
+ protected $body = '';
public static $crlf = "\n";
input[type='submit'],
input[type='button'],
.button {
- font-size: 75% !important;
- padding: 3px 7px;
+ font-size: @wcfSmallFontSize;
+ padding: 5px 11px;
}
}
+.button.small {
+ font-size: @wcfSmallFontSize;
+ padding: 5px 11px;
+
+ .borderRadius(3px);
+}
+
/* button icons */
.button > img {
margin: -5px 1px -5px -5px;