blob: 2af83b227a553a747c00df326c5865a592277bab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
/**
* @file
* Test zen-float()
*/
@import "zen";
#test-zen-float {
/* Test zen-float() */
@include zen-float();
/* Test zen-float() with $zen-float-direction: right */
$zen-float-direction: right;
@include zen-float();
$zen-float-direction: left;
/* Test zen-float(left) */
@include zen-float(left);
/* Test zen-float(left, $reverse-all-floats: TRUE) */
@include zen-float(left, $reverse-all-floats: TRUE);
/* Test zen-float(left) with: $zen-reverse-all-floats: TRUE; */
$zen-reverse-all-floats: TRUE;
@include zen-float(left);
}
|