Projet

Général

Profil

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

root / drupal7 / sites / all / themes / zen / STARTERKIT / sass-extensions / zen-grids / templates / unit-tests / sass / zen-float.scss @ 87dbc3bf

1
/**
2
 * @file
3
 * Test zen-float()
4
 */
5

    
6
@import "zen";
7

    
8
#test-zen-float {
9
  /* Test zen-float() */
10
  @include zen-float();
11

    
12
  /* Test zen-float() with $zen-float-direction: right */
13
  $zen-float-direction: right;
14
  @include zen-float();
15
  $zen-float-direction: left;
16

    
17
  /* Test zen-float(left) */
18
  @include zen-float(left);
19

    
20
  /* Test zen-float(left, $reverse-all-floats: TRUE) */
21
  @include zen-float(left, $reverse-all-floats: TRUE);
22

    
23
  /* Test zen-float(left) with: $zen-reverse-all-floats: TRUE; */
24
  $zen-reverse-all-floats: TRUE;
25
  @include zen-float(left);
26
}