gridstrap 1.1.1 → 1.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/stylesheets/inc/_mixins.scss +24 -24
  3. metadata +16 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e795d0087aadfc132adc0142698560db32ccbdae
4
- data.tar.gz: 21ac57e3a3a1715bec596f79adc77f7fde434e82
3
+ metadata.gz: 8c6944d76f90c523867ce46c37a05aaad0116ff8
4
+ data.tar.gz: 5dc8378e9137eef0b8454efde8b82a769fbe9be8
5
5
  SHA512:
6
- metadata.gz: 05906770ac2093b503510fd398ed13308f5231df95796ef36e2cc004249de7e82109051ccc3b3251216ce7595405adebaecbaeee4618c4e1ee6460fb639cbf4a
7
- data.tar.gz: 303a63f960b48f32c2ce9dc84bc1726b1735b0f7aacca4ecadcb7e6de5ad2c2ab28080b62cccede5bd70ac199fd06b0ef4fe702fa2bd3be84283aab7f8347d1e
6
+ metadata.gz: 559a2068637c2d40d3a54bf77028e030d28d83294ab8037c300f63dcad2faa64a12dd9d0bb42b6ad4d1ab43a2a656752c91c737ee7a3e494f184fb5658767446
7
+ data.tar.gz: 534f9c276d737bae2b319f42d0d0b074733c203fa1140fe0808bc7ebb286ae2cb8dcc269b9ef89f4622d1a17d171ec396844ac3471172e52a2856ae947b75dea
@@ -16,42 +16,42 @@
16
16
 
17
17
  @mixin gridstrap-use($uses...) {
18
18
  // Default all to false
19
- $gridstrap-use-span: false;
20
- $gridstrap-use-of: false;
21
- $gridstrap-use-colof: false;
22
- $gridstrap-use-offset: false;
23
- $gridstrap-use-push: false;
24
- $gridstrap-use-pull: false;
25
- $gridstrap-use-rtl: false;
19
+ $gridstrap-use-span: false !global;
20
+ $gridstrap-use-of: false !global;
21
+ $gridstrap-use-colof: false !global;
22
+ $gridstrap-use-offset: false !global;
23
+ $gridstrap-use-push: false !global;
24
+ $gridstrap-use-pull: false !global;
25
+ $gridstrap-use-rtl: false !global;
26
26
 
27
27
  // If first $use isn"t "all"...
28
28
  @if nth($uses, 1) != "all" {
29
29
  // Loop through and set matched options to true
30
30
  @each $use in $uses {
31
31
  @if $use == "span" {
32
- $gridstrap-use-span: true;
32
+ $gridstrap-use-span: true !global;
33
33
  } @else if $use == "of" {
34
- $gridstrap-use-of: true;
34
+ $gridstrap-use-of: true !global;
35
35
  } @else if $use == "colof" {
36
- $gridstrap-use-colof: true;
36
+ $gridstrap-use-colof: true !global;
37
37
  } @else if $use == "offset" {
38
- $gridstrap-use-offset: true;
38
+ $gridstrap-use-offset: true !global;
39
39
  } @else if $use == "move" {
40
- $gridstrap-use-push: true;
41
- $gridstrap-use-pull: true;
40
+ $gridstrap-use-push: true !global;
41
+ $gridstrap-use-pull: true !global;
42
42
  } @else if $use == "rtl" {
43
- $gridstrap-use-rtl: true;
43
+ $gridstrap-use-rtl: true !global;
44
44
  }
45
45
  }
46
46
  } @else {
47
47
  // Make all true
48
- $gridstrap-use-span: true;
49
- $gridstrap-use-of: true;
50
- $gridstrap-use-colof: true;
51
- $gridstrap-use-offset: true;
52
- $gridstrap-use-push: true;
53
- $gridstrap-use-pull: true;
54
- $gridstrap-use-rtl: true;
48
+ $gridstrap-use-span: true !global;
49
+ $gridstrap-use-of: true !global;
50
+ $gridstrap-use-colof: true !global;
51
+ $gridstrap-use-offset: true !global;
52
+ $gridstrap-use-push: true !global;
53
+ $gridstrap-use-pull: true !global;
54
+ $gridstrap-use-rtl: true !global;
55
55
  }
56
56
  }
57
57
 
@@ -65,13 +65,13 @@
65
65
 
66
66
  @mixin gridstrap-sizes($sm: 0, $md: 0, $lg: 0) {
67
67
  @if $sm != 0{
68
- $gridstrap-container-sm: $sm;
68
+ $gridstrap-container-sm: $sm !global;
69
69
  }
70
70
  @if $md != 0{
71
- $gridstrap-container-md: $md;
71
+ $gridstrap-container-md: $md !global;
72
72
  }
73
73
  @if $lg != 0{
74
- $gridstrap-container-lg: $lg;
74
+ $gridstrap-container-lg: $lg !global;
75
75
  }
76
76
  }
77
77
 
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gridstrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Doug Wollison
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-07 00:00:00.000000000 Z
11
+ date: 2015-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: sass
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 3.4.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 3.4.0
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: compass
15
29
  requirement: !ruby/object:Gem::Requirement