Projet

Général

Profil

Paste
Télécharger (806 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / panels / plugins / style_bases / region / region_rounded_shadow / region-rounded-shadow.tpl.php @ 08475715

1
<?php
2
/**
3
 * @file
4
 *
5
 * Display the box for rounded corners.
6
 *
7
 * - $content: The content of the box.
8
 * - $classes: The classes that must be applied to the top divs.
9
 */
10
?>
11
<div class="rounded-shadow <?php print $class ?>">
12
  <div class="rounded-shadow-background">
13
    <div class="rounded-shadow-wrap-corner">
14
      <div class="rounded-shadow-top-edge">
15
        <div class="rounded-shadow-left"></div>
16
        <div class="rounded-shadow-right"></div>
17
      </div>
18
      <div class="rounded-shadow-left-edge">
19
        <div class="rounded-shadow-right-edge clearfix">
20
          <?php print $content; ?>
21
        </div>
22
      </div>
23
      <div class="rounded-shadow-bottom-edge">
24
      <div class="rounded-shadow-left"></div><div class="rounded-shadow-right"></div>
25
      </div>
26
    </div>
27
  </div>
28
</div>