panels-rounded-corners-box.tpl.php in Panels 6.3
Same filename and directory in other branches
Display the box for rounded corners.
- $content: The content of the box.
2 theme calls to panels-rounded-corners-box.tpl.php
- theme_panels_rounded_corners_style_render_pane in plugins/
styles/ corners/ rounded_corners.inc - Render callback for a single pane.
- theme_panels_rounded_corners_style_render_region in plugins/
styles/ corners/ rounded_corners.inc - Render callback.
File
plugins/styles/corners/panels-rounded-corners-box.tpl.phpView source
<?php
/**
* @file
*
* Display the box for rounded corners.
*
* - $content: The content of the box.
*/
?>
<div class="rounded-corner">
<div class="wrap-corner">
<div class="t-edge"><div class="l"></div><div class="r"></div></div>
<div class="l-edge">
<div class="r-edge clear-block">
<?php
print $content;
?>
</div>
</div>
<div class="b-edge"><div class="l"></div><div class="r"></div></div>
</div>
</div>