comparison sass-extensions/zen-grids/templates/unit-tests/sass/zen-float.scss @ 0:a3750d724105 default tip

initital
author Dirk Wintergruen <dwinter@mpiwg-berlin.mpg.de>
date Tue, 02 Jun 2015 09:16:36 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a3750d724105
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 }