Projet

Général

Profil

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

root / drupal7 / sites / all / modules / panels / plugins / style_bases / pane / pane_rounded_shadow / pane-rounded-shadow.tpl.php @ 64156087

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