fortitude-sass 0.5.5 → 0.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1d734258afeba9588ebac01a6bdc0264e88d8a04
4
- data.tar.gz: 62b59602d5b46174d4d05fc9f68362edec249c79
3
+ metadata.gz: d72dbb1b6de6e032c7e569c8a631ec7774c8dd05
4
+ data.tar.gz: 7610778409e075cd5f7f63e1d8538fc87a06f03e
5
5
  SHA512:
6
- metadata.gz: 9977f3c7cdc7db78e295b6d691545350596a4f2f0ac121aa976132d70a41daa47bd96444836be20abac7110f58b37ceab12eaded04c7735680fed1c2e4ad57ef
7
- data.tar.gz: af9088814c822291662d9ee70a512ed166b6e9e2b04cbce6d9b0b2ee05ef834a6d89292c5405d848644fa68e5705b96ecea56da4a99498b5b81e9f3329fef415
6
+ metadata.gz: 25b15547395928ee507f2737bcba4f4a53c8b10e22ae856cd1a58ec2e7b1e6a2ebed169158654f07f9e82995ef8fd0679d53b6d6dcd4431fd3b92b1a0420301b
7
+ data.tar.gz: 89f260c73e3ba024a2b9e2209f6b991391dc06983e16253abf607d0923fa64deb0b0dcef5e9e27d5293227a904bf04e2e5ffa5c1bddd7624913dd5c1d32c3b70
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fortitude-sass (0.5.5)
4
+ fortitude-sass (0.6.0)
5
5
  autoprefixer-rails
6
6
  execjs
7
7
  sass (~> 3.3)
@@ -12,7 +12,6 @@
12
12
  * if you change $fortitude-breakpoints.
13
13
  **/
14
14
 
15
- $fortitude-app-id: fortitude !default;
16
15
  $fortitude-base-font-size: 1.2rem !default;
17
16
  $fortitude-base-line-height: 2rem !default;
18
17
  $fortitude-base-color: #333 !default;
@@ -53,9 +53,3 @@ $fortitude-enable-classes: false !default;
53
53
  clear: both;
54
54
  }
55
55
  }
56
-
57
- @mixin fortitude-utility-class {
58
- ##{$fortitude-app-id} {
59
- @content;
60
- }
61
- }
@@ -1,28 +1,26 @@
1
1
  $fortitude-responsive-border-unit-total: 1 !default;
2
2
 
3
- @include fortitude-utility-class {
4
- @include fortitude-breakpoint-classes {
5
- @for $fortitude-index from 0 through $fortitude-responsive-border-unit-total {
6
- &-bt#{$fortitude-index},
7
- &-b#{$fortitude-index},
8
- &-btb#{$fortitude-index} {
9
- border-top-width: $fortitude-index * 0.1rem;
10
- }
11
- &-br#{$fortitude-index},
12
- &-b#{$fortitude-index},
13
- &-brl#{$fortitude-index} {
14
- border-right-width: $fortitude-index * 0.1rem;
15
- }
16
- &-bb#{$fortitude-index},
17
- &-b#{$fortitude-index},
18
- &-btb#{$fortitude-index} {
19
- border-bottom-width: $fortitude-index * 0.1rem;
20
- }
21
- &-bl#{$fortitude-index},
22
- &-b#{$fortitude-index},
23
- &-brl#{$fortitude-index} {
24
- border-left-width: $fortitude-index * 0.1rem;
25
- }
3
+ @include fortitude-breakpoint-classes {
4
+ @for $fortitude-index from 0 through $fortitude-responsive-border-unit-total {
5
+ &-bt#{$fortitude-index},
6
+ &-b#{$fortitude-index},
7
+ &-btb#{$fortitude-index} {
8
+ border-top-width: $fortitude-index * 0.1rem !important;
9
+ }
10
+ &-br#{$fortitude-index},
11
+ &-b#{$fortitude-index},
12
+ &-brl#{$fortitude-index} {
13
+ border-right-width: $fortitude-index * 0.1rem !important;
14
+ }
15
+ &-bb#{$fortitude-index},
16
+ &-b#{$fortitude-index},
17
+ &-btb#{$fortitude-index} {
18
+ border-bottom-width: $fortitude-index * 0.1rem !important;
19
+ }
20
+ &-bl#{$fortitude-index},
21
+ &-b#{$fortitude-index},
22
+ &-brl#{$fortitude-index} {
23
+ border-left-width: $fortitude-index * 0.1rem !important;
26
24
  }
27
25
  }
28
26
  }
@@ -1,36 +1,18 @@
1
1
  $fortitude-responsive-column-total: 12 !default;
2
2
 
3
- @mixin fortitude-column($fortitude-index) {
4
- width: percentage($fortitude-index / $fortitude-responsive-column-total);
5
- }
6
-
7
- @mixin fortitude-column-offset($fortitude-index) {
8
- margin-left: percentage($fortitude-index / $fortitude-responsive-column-total);
9
- }
10
-
11
- @mixin fortitude-column-push($fortitude-index) {
12
- left: percentage($fortitude-index / $fortitude-responsive-column-total);
13
- }
14
-
15
- @mixin fortitude-column-pull($fortitude-index) {
16
- right: percentage($fortitude-index / $fortitude-responsive-column-total);
17
- }
18
-
19
- @include fortitude-utility-class {
20
- @include fortitude-breakpoint-classes {
21
- @for $fortitude-index from 0 through $fortitude-responsive-column-total {
22
- &-#{$fortitude-index}of#{$fortitude-responsive-column-total} {
23
- @include fortitude-column($fortitude-index);
24
- }
25
- &-offset#{$fortitude-index}of#{$fortitude-responsive-column-total} {
26
- @include fortitude-column-offset($fortitude-index);
27
- }
28
- &-push#{$fortitude-index}of#{$fortitude-responsive-column-total} {
29
- @include fortitude-column-push($fortitude-index);
30
- }
31
- &-pull#{$fortitude-index}of#{$fortitude-responsive-column-total} {
32
- @include fortitude-column-pull($fortitude-index);
33
- }
3
+ @include fortitude-breakpoint-classes {
4
+ @for $fortitude-index from 0 through $fortitude-responsive-column-total {
5
+ &-#{$fortitude-index}of#{$fortitude-responsive-column-total} {
6
+ width: percentage($fortitude-index / $fortitude-responsive-column-total) !important;
7
+ }
8
+ &-offset#{$fortitude-index}of#{$fortitude-responsive-column-total} {
9
+ margin-left: percentage($fortitude-index / $fortitude-responsive-column-total) !important;
10
+ }
11
+ &-push#{$fortitude-index}of#{$fortitude-responsive-column-total} {
12
+ right: percentage($fortitude-index / $fortitude-responsive-column-total) !important;
13
+ }
14
+ &-pull#{$fortitude-index}of#{$fortitude-responsive-column-total} {
15
+ left: percentage($fortitude-index / $fortitude-responsive-column-total) !important;
34
16
  }
35
17
  }
36
18
  }
@@ -1,28 +1,26 @@
1
- @include fortitude-utility-class {
2
- @include fortitude-breakpoint-classes {
3
- &-none {
4
- display: none;
5
- }
6
- &-inline {
7
- display: inline;
8
- }
9
- &-inline-block {
10
- display: inline-block;
11
- }
12
- &-block {
13
- display: block;
14
- }
15
- &-table {
16
- display: table;
17
- }
18
- &-table-cell {
19
- display: table-cell;
20
- }
21
- &-table-column {
22
- display: table-column;
23
- }
24
- &-inherit {
25
- display: inherit;
26
- }
1
+ @include fortitude-breakpoint-classes {
2
+ &-none {
3
+ display: none !important;
4
+ }
5
+ &-inline {
6
+ display: inline !important;
7
+ }
8
+ &-inline-block {
9
+ display: inline-block !important;
10
+ }
11
+ &-block {
12
+ display: block !important;
13
+ }
14
+ &-table {
15
+ display: table !important;
16
+ }
17
+ &-table-cell {
18
+ display: table-cell !important;
19
+ }
20
+ &-table-column {
21
+ display: table-column !important;
22
+ }
23
+ &-inherit {
24
+ display: inherit !important;
27
25
  }
28
26
  }
@@ -1,13 +1,11 @@
1
- @include fortitude-utility-class {
2
- @include fortitude-breakpoint-classes {
3
- &-float-left {
4
- float: left;
5
- }
6
- &-float-right {
7
- float: right;
8
- }
9
- &-float-none {
10
- float: none;
11
- }
1
+ @include fortitude-breakpoint-classes {
2
+ &-float-left {
3
+ float: left !important;
4
+ }
5
+ &-float-right {
6
+ float: right !important;
7
+ }
8
+ &-float-none {
9
+ float: none !important;
12
10
  }
13
11
  }
@@ -1,15 +1,9 @@
1
1
  $fortitude-responsive-font-sizes: (alpha: 3.6rem, beta: 3rem, gamma: 2.4rem, delta: 1.8rem, epsilon: 1.4rem, zeta: 1rem) !default;
2
2
 
3
- @mixin fortitude-font-size-alias($fortitude-alias, $fortitude-line-height: false) {
4
- @include fortitude-font-size(map-get($fortitude-responsive-font-sizes, $fortitude-alias), $fortitude-line-height);
5
- }
6
-
7
- @include fortitude-utility-class {
8
- @include fortitude-breakpoint-classes {
9
- @each $fortitude-alias, $fortitude-size in $fortitude-responsive-font-sizes {
10
- &-#{$fortitude-alias} {
11
- @include fortitude-font-size-alias($fortitude-alias);
12
- }
3
+ @include fortitude-breakpoint-classes {
4
+ @each $fortitude-alias, $fortitude-size in $fortitude-responsive-font-sizes {
5
+ &-#{$fortitude-alias} {
6
+ font-size: map-get($fortitude-responsive-font-sizes, $fortitude-alias) !important;
13
7
  }
14
8
  }
15
9
  }
@@ -1,15 +1,9 @@
1
1
  $fortitude-responsive-height-total: 12 !default;
2
2
 
3
- @mixin fortitude-height($fortitude-index) {
4
- min-height: $fortitude-base-spacing-unit * $fortitude-index;
5
- }
6
-
7
- @include fortitude-utility-class {
8
- @for $fortitude-index from 1 through $fortitude-responsive-height-total {
9
- @include fortitude-breakpoint-classes {
10
- &-#{$fortitude-index} {
11
- @include fortitude-height($fortitude-index);
12
- }
3
+ @for $fortitude-index from 1 through $fortitude-responsive-height-total {
4
+ @include fortitude-breakpoint-classes {
5
+ &-#{$fortitude-index} {
6
+ min-height: $fortitude-base-spacing-unit * $fortitude-index !important;
13
7
  }
14
8
  }
15
9
  }
@@ -1,14 +1,12 @@
1
1
  $fortitude-responsive-line-height-unit-total: 2 !default;
2
2
 
3
- @include fortitude-utility-class {
4
- @include fortitude-breakpoint-classes {
5
- @for $fortitude-index from 0 through $fortitude-responsive-line-height-unit-total {
6
- &-inset#{$fortitude-index} {
7
- line-height: $fortitude-base-line-height * $fortitude-index;
8
- }
9
- &-inseth#{$fortitude-index} {
10
- line-height: $fortitude-base-line-height * $fortitude-index + halve($fortitude-base-line-height);
11
- }
3
+ @include fortitude-breakpoint-classes {
4
+ @for $fortitude-index from 0 through $fortitude-responsive-line-height-unit-total {
5
+ &-inset#{$fortitude-index} {
6
+ line-height: $fortitude-base-line-height * $fortitude-index !important;
7
+ }
8
+ &-inseth#{$fortitude-index} {
9
+ line-height: $fortitude-base-line-height * $fortitude-index + halve($fortitude-base-line-height) !important;
12
10
  }
13
11
  }
14
12
  }
@@ -1,95 +1,93 @@
1
1
  $fortitude-responsive-margin-unit-total: 10 !default;
2
2
  $fortitude-responsive-negative-margin-unit-total: 10 !default;
3
3
 
4
- @include fortitude-utility-class {
5
- @include fortitude-breakpoint-classes {
6
- @for $fortitude-index from 0 through $fortitude-responsive-margin-unit-total {
7
- &-mt#{$fortitude-index},
8
- &-m#{$fortitude-index},
9
- &-mtb#{$fortitude-index} {
10
- margin-top: $fortitude-base-spacing-unit * $fortitude-index;
11
- }
12
- &-mth#{$fortitude-index},
13
- &-mh#{$fortitude-index},
14
- &-mtbh#{$fortitude-index} {
15
- margin-top: $fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit);
16
- }
17
- &-mr#{$fortitude-index},
18
- &-m#{$fortitude-index},
19
- &-mrl#{$fortitude-index} {
20
- margin-right: $fortitude-base-spacing-unit * $fortitude-index;
21
- }
22
- &-mrh#{$fortitude-index},
23
- &-mh#{$fortitude-index},
24
- &-mrlh#{$fortitude-index} {
25
- margin-right: $fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit);
26
- }
27
- &-mb#{$fortitude-index},
28
- &-m#{$fortitude-index},
29
- &-mtb#{$fortitude-index} {
30
- margin-bottom: $fortitude-base-spacing-unit * $fortitude-index;
31
- }
32
- &-mbh#{$fortitude-index},
33
- &-mh#{$fortitude-index},
34
- &-mtbh#{$fortitude-index} {
35
- margin-bottom: $fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit);
36
- }
37
- &-ml#{$fortitude-index},
38
- &-m#{$fortitude-index},
39
- &-mrl#{$fortitude-index} {
40
- margin-left: $fortitude-base-spacing-unit * $fortitude-index;
41
- }
42
- &-mlh#{$fortitude-index},
43
- &-mh#{$fortitude-index},
44
- &-mrlh#{$fortitude-index} {
45
- margin-left: $fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit);
46
- }
47
- }
48
- @for $fortitude-index from 0 through $fortitude-responsive-negative-margin-unit-total {
49
- &-mt-#{$fortitude-index},
50
- &-m-#{$fortitude-index},
51
- &-mtb-#{$fortitude-index} {
52
- margin-top: -($fortitude-base-spacing-unit * $fortitude-index);
53
- }
54
- &-mth-#{$fortitude-index},
55
- &-mh-#{$fortitude-index},
56
- &-mtbh-#{$fortitude-index} {
57
- margin-top: -($fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit));
58
- }
59
- &-mr-#{$fortitude-index},
60
- &-m-#{$fortitude-index},
61
- &-mrl-#{$fortitude-index} {
62
- margin-right: -($fortitude-base-spacing-unit * $fortitude-index);
63
- }
64
- &-mrh-#{$fortitude-index},
65
- &-mh-#{$fortitude-index},
66
- &-mrlh-#{$fortitude-index} {
67
- margin-right: -($fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit));
68
- }
69
- &-mb-#{$fortitude-index},
70
- &-m-#{$fortitude-index},
71
- &-mtb-#{$fortitude-index} {
72
- margin-bottom: -($fortitude-base-spacing-unit * $fortitude-index);
73
- }
74
- &-mbh-#{$fortitude-index},
75
- &-mh-#{$fortitude-index},
76
- &-mtbh-#{$fortitude-index} {
77
- margin-bottom: -($fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit));
78
- }
79
- &-ml-#{$fortitude-index},
80
- &-m-#{$fortitude-index},
81
- &-mrl-#{$fortitude-index} {
82
- margin-left: -($fortitude-base-spacing-unit * $fortitude-index);
83
- }
84
- &-mlh-#{$fortitude-index},
85
- &-mh-#{$fortitude-index},
86
- &-mrlh-#{$fortitude-index} {
87
- margin-left: -($fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit));
88
- }
89
- }
90
- &-mrlauto {
91
- margin-right: auto;
92
- margin-left: auto;
4
+ @include fortitude-breakpoint-classes {
5
+ @for $fortitude-index from 0 through $fortitude-responsive-margin-unit-total {
6
+ &-mt#{$fortitude-index},
7
+ &-m#{$fortitude-index},
8
+ &-mtb#{$fortitude-index} {
9
+ margin-top: $fortitude-base-spacing-unit * $fortitude-index !important;
93
10
  }
11
+ &-mth#{$fortitude-index},
12
+ &-mh#{$fortitude-index},
13
+ &-mtbh#{$fortitude-index} {
14
+ margin-top: $fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit) !important;
15
+ }
16
+ &-mr#{$fortitude-index},
17
+ &-m#{$fortitude-index},
18
+ &-mrl#{$fortitude-index} {
19
+ margin-right: $fortitude-base-spacing-unit * $fortitude-index !important;
20
+ }
21
+ &-mrh#{$fortitude-index},
22
+ &-mh#{$fortitude-index},
23
+ &-mrlh#{$fortitude-index} {
24
+ margin-right: $fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit) !important;
25
+ }
26
+ &-mb#{$fortitude-index},
27
+ &-m#{$fortitude-index},
28
+ &-mtb#{$fortitude-index} {
29
+ margin-bottom: $fortitude-base-spacing-unit * $fortitude-index !important;
30
+ }
31
+ &-mbh#{$fortitude-index},
32
+ &-mh#{$fortitude-index},
33
+ &-mtbh#{$fortitude-index} {
34
+ margin-bottom: $fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit) !important;
35
+ }
36
+ &-ml#{$fortitude-index},
37
+ &-m#{$fortitude-index},
38
+ &-mrl#{$fortitude-index} {
39
+ margin-left: $fortitude-base-spacing-unit * $fortitude-index !important;
40
+ }
41
+ &-mlh#{$fortitude-index},
42
+ &-mh#{$fortitude-index},
43
+ &-mrlh#{$fortitude-index} {
44
+ margin-left: $fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit) !important;
45
+ }
46
+ }
47
+ @for $fortitude-index from 0 through $fortitude-responsive-negative-margin-unit-total {
48
+ &-mt-#{$fortitude-index},
49
+ &-m-#{$fortitude-index},
50
+ &-mtb-#{$fortitude-index} {
51
+ margin-top: -($fortitude-base-spacing-unit * $fortitude-index) !important;
52
+ }
53
+ &-mth-#{$fortitude-index},
54
+ &-mh-#{$fortitude-index},
55
+ &-mtbh-#{$fortitude-index} {
56
+ margin-top: -($fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit)) !important;
57
+ }
58
+ &-mr-#{$fortitude-index},
59
+ &-m-#{$fortitude-index},
60
+ &-mrl-#{$fortitude-index} {
61
+ margin-right: -($fortitude-base-spacing-unit * $fortitude-index) !important;
62
+ }
63
+ &-mrh-#{$fortitude-index},
64
+ &-mh-#{$fortitude-index},
65
+ &-mrlh-#{$fortitude-index} {
66
+ margin-right: -($fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit)) !important;
67
+ }
68
+ &-mb-#{$fortitude-index},
69
+ &-m-#{$fortitude-index},
70
+ &-mtb-#{$fortitude-index} {
71
+ margin-bottom: -($fortitude-base-spacing-unit * $fortitude-index) !important;
72
+ }
73
+ &-mbh-#{$fortitude-index},
74
+ &-mh-#{$fortitude-index},
75
+ &-mtbh-#{$fortitude-index} {
76
+ margin-bottom: -($fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit)) !important;
77
+ }
78
+ &-ml-#{$fortitude-index},
79
+ &-m-#{$fortitude-index},
80
+ &-mrl-#{$fortitude-index} {
81
+ margin-left: -($fortitude-base-spacing-unit * $fortitude-index) !important;
82
+ }
83
+ &-mlh-#{$fortitude-index},
84
+ &-mh-#{$fortitude-index},
85
+ &-mrlh-#{$fortitude-index} {
86
+ margin-left: -($fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit)) !important;
87
+ }
88
+ }
89
+ &-mrlauto {
90
+ margin-right: auto !important;
91
+ margin-left: auto !important;
94
92
  }
95
93
  }
@@ -1,48 +1,46 @@
1
1
  $fortitude-responsive-padding-unit-total: 10 !default;
2
2
 
3
- @include fortitude-utility-class {
4
- @include fortitude-breakpoint-classes {
5
- @for $fortitude-index from 0 through $fortitude-responsive-padding-unit-total {
6
- &-pt#{$fortitude-index},
7
- &-p#{$fortitude-index},
8
- &-ptb#{$fortitude-index} {
9
- padding-top: $fortitude-base-spacing-unit * $fortitude-index;
10
- }
11
- &-pth#{$fortitude-index},
12
- &-ph#{$fortitude-index},
13
- &-ptbh#{$fortitude-index} {
14
- padding-top: $fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit);
15
- }
16
- &-pr#{$fortitude-index},
17
- &-p#{$fortitude-index},
18
- &-prl#{$fortitude-index} {
19
- padding-right: $fortitude-base-spacing-unit * $fortitude-index;
20
- }
21
- &-prh#{$fortitude-index},
22
- &-ph#{$fortitude-index},
23
- &-prlh#{$fortitude-index} {
24
- padding-right: $fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit);
25
- }
26
- &-pb#{$fortitude-index},
27
- &-p#{$fortitude-index},
28
- &-ptb#{$fortitude-index} {
29
- padding-bottom: $fortitude-base-spacing-unit * $fortitude-index;
30
- }
31
- &-pbh#{$fortitude-index},
32
- &-ph#{$fortitude-index},
33
- &-ptbh#{$fortitude-index} {
34
- padding-bottom: $fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit);
35
- }
36
- &-pl#{$fortitude-index},
37
- &-p#{$fortitude-index},
38
- &-prl#{$fortitude-index} {
39
- padding-left: $fortitude-base-spacing-unit * $fortitude-index;
40
- }
41
- &-plh#{$fortitude-index},
42
- &-ph#{$fortitude-index},
43
- &-prlh#{$fortitude-index} {
44
- padding-left: $fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit);
45
- }
3
+ @include fortitude-breakpoint-classes {
4
+ @for $fortitude-index from 0 through $fortitude-responsive-padding-unit-total {
5
+ &-pt#{$fortitude-index},
6
+ &-p#{$fortitude-index},
7
+ &-ptb#{$fortitude-index} {
8
+ padding-top: $fortitude-base-spacing-unit * $fortitude-index !important;
9
+ }
10
+ &-pth#{$fortitude-index},
11
+ &-ph#{$fortitude-index},
12
+ &-ptbh#{$fortitude-index} {
13
+ padding-top: $fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit) !important;
14
+ }
15
+ &-pr#{$fortitude-index},
16
+ &-p#{$fortitude-index},
17
+ &-prl#{$fortitude-index} {
18
+ padding-right: $fortitude-base-spacing-unit * $fortitude-index !important;
19
+ }
20
+ &-prh#{$fortitude-index},
21
+ &-ph#{$fortitude-index},
22
+ &-prlh#{$fortitude-index} {
23
+ padding-right: $fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit) !important;
24
+ }
25
+ &-pb#{$fortitude-index},
26
+ &-p#{$fortitude-index},
27
+ &-ptb#{$fortitude-index} {
28
+ padding-bottom: $fortitude-base-spacing-unit * $fortitude-index !important;
29
+ }
30
+ &-pbh#{$fortitude-index},
31
+ &-ph#{$fortitude-index},
32
+ &-ptbh#{$fortitude-index} {
33
+ padding-bottom: $fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit) !important;
34
+ }
35
+ &-pl#{$fortitude-index},
36
+ &-p#{$fortitude-index},
37
+ &-prl#{$fortitude-index} {
38
+ padding-left: $fortitude-base-spacing-unit * $fortitude-index !important;
39
+ }
40
+ &-plh#{$fortitude-index},
41
+ &-ph#{$fortitude-index},
42
+ &-prlh#{$fortitude-index} {
43
+ padding-left: $fortitude-base-spacing-unit * $fortitude-index + halve($fortitude-base-spacing-unit) !important;
46
44
  }
47
45
  }
48
46
  }
@@ -1,16 +1,14 @@
1
- @include fortitude-utility-class {
2
- @include fortitude-breakpoint-classes {
3
- &-text-left {
4
- text-align: left;
5
- }
6
- &-text-center {
7
- text-align: center;
8
- }
9
- &-text-right {
10
- text-align: right;
11
- }
12
- &-text-justify {
13
- text-align: justify;
14
- }
1
+ @include fortitude-breakpoint-classes {
2
+ &-text-left {
3
+ text-align: left !important;
4
+ }
5
+ &-text-center {
6
+ text-align: center !important;
7
+ }
8
+ &-text-right {
9
+ text-align: right !important;
10
+ }
11
+ &-text-justify {
12
+ text-align: justify !important;
15
13
  }
16
14
  }
@@ -1,6 +1,6 @@
1
- ##{$fortitude-app-id}.html--is-locked {
2
- overflow: hidden;
1
+ .html--is-locked {
2
+ overflow: hidden !important;
3
3
  body {
4
- overflow: hidden;
4
+ overflow: hidden !important;
5
5
  }
6
6
  }
data/bower.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "fortitude-sass",
3
3
  "homepage": "http://fortitude.io/",
4
- "version": "0.5.5",
4
+ "version": "0.6.0",
5
5
  "main": [
6
6
  "app/assets/stylesheets/fortitude/tools/_functions.scss",
7
7
  "app/assets/stylesheets/fortitude/tools/_mixins.scss",
@@ -1,3 +1,3 @@
1
1
  module Fortitude
2
- VERSION = '0.5.5'
2
+ VERSION = '0.6.0'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fortitude-sass
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.5
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Reisman
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-03 00:00:00.000000000 Z
11
+ date: 2015-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass