materio-base-legacy/templates/better_messages.tpl.php
bachy ce04398f78 message css (colors) + better-messages module
Signed-off-by: bachy <git@g-u-i.net>
2012-10-27 14:43:22 +02:00

16 lines
606 B
PHP
Executable File

<?php
/*
Available variables are:
$content The messages to put inside Better Messages. Drupal originally calls theme_status_messages() to theme this output.
With this module enabled you'll always have to call theme_better_messages_content() instead of theme_status_messages().
*/
?><div id="better-messages-default">
<div id="messages-inner">
<div class="content">
<?php /* If you want to theme further.. theme_better_messages_content() */ ?>
<?php print $content ?>
</div>
<div class="footer"><span class="message-timer"></span><a class="message-close" href="#"></a></div>
</div>
</div>