droidcss 1.2.2 → 1.2.3

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: b46b0d93bcd348f5e7975c4003aeb5ee7b5a95bd
4
- data.tar.gz: ba2fc90c69de843941226c02cd7a12df32d0e52e
3
+ metadata.gz: 4ca24e62e814cbb99915b85e7178cb64134bcc61
4
+ data.tar.gz: 53475601d82d66d5e09a1257259ef2a728cdcfd5
5
5
  SHA512:
6
- metadata.gz: 6d76ad4d385b6a6c44568a2e771fd1eadd7361cd2788d2c6ff8c041de086fb78b73212777411d20639ea47a27a1dab8f454214db0b18026b9c9da1c07fd5ad52
7
- data.tar.gz: 120201054443881040d8f939db8857dad504d5bb0665493ce3642c2befe1a58e3ac3714ea1cceda5c31271184284fc9d1851cf1e5ad2e4dbe3eb65c5f47c9645
6
+ metadata.gz: 8bee6ce1962e03f051df1d2def91b42bd92e1eefc5be501e31f4ace12bd3937b712dcf2c645334f3af0dab80c9d114f9cec13110bc9bff02a557dacfcf07d10b
7
+ data.tar.gz: b3cfa5721998f55c227a99a97837359f418ff8e2fa26778bd9f650176259e8b3fda0add8cd618265b3a6e4146b83d71fb1a387bbeb0ab46704574557799f3328
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 1.2.3 (14 February 2014)
2
+ * Breaking changes! Columns now uses inline-block instead of float
3
+ * Added push/pull for tablets and mobile
4
+
1
5
  ### 1.2.2 (27 January 2014)
2
6
  * Fixes for offsets
3
7
 
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # DroidCSS [![Roadchange](http://roadchange.com/droidlabs/droidcss/badge.png)](http://roadchange.com/droidlabs/droidcss)
1
+ # DroidCSS [![Roadchange](https://roadchange.com/droidlabs/droidcss/badge.png)](https://roadchange.com/droidlabs/droidcss)
2
2
 
3
3
  Small responsive framework with grids and couple mixins. We've took the most used mixins from [Bourbon](https://github.com/thoughtbot/bourbon) and added [960px Grids](https://github.com/nathansmith/960-grid-system/) to it. Very light, powerful and fast CSS Grid framework for you to use.
4
4
 
@@ -255,4 +255,4 @@ Feel free to contact us regarding DroidCSS via [twitter](http://twitter.com/droi
255
255
  ## Thanks for using DroidCSS
256
256
 
257
257
  Cheers,
258
- [DroidLabs](http://droidlabs.pro).
258
+ [DroidLabs](http://droidlabs.pro).
@@ -1,3 +1,3 @@
1
1
  module DroidCss
2
- VERSION = "1.2.2"
2
+ VERSION = "1.2.3"
3
3
  end
@@ -41,8 +41,10 @@
41
41
  %grid-settings {
42
42
  #{$gutterType}-left: $gutterWidth;
43
43
  #{$gutterType}-right: $gutterWidth;
44
- float: left;
44
+ display: inline-block;
45
+ vertical-align: top;
45
46
  min-height: 1px;
47
+ zoom: 1;
46
48
  @include box-sizing(border-box);
47
49
  }
48
50
 
@@ -99,6 +101,7 @@
99
101
  }
100
102
  .prefix-tablet-0 { #{$gutterTypeTabletOffset}-left: $gutterWidth; }
101
103
  .suffix-tablet-0 { #{$gutterTypeTabletOffset}-right: $gutterWidth; }
104
+ .push-tablet-0, .pull-tablet-0 { left: 0; }
102
105
 
103
106
  @for $i from 1 through $columnsCount {
104
107
  $num: $i;
@@ -128,6 +131,7 @@
128
131
  }
129
132
  .prefix-mobile-0 { #{$gutterTypeMobileOffset}-left: $gutterWidth; }
130
133
  .suffix-mobile-0 { #{$gutterTypeMobileOffset}-right: $gutterWidth; }
134
+ .push-mobile-0, .pull-mobile-0 { left: 0; }
131
135
 
132
136
  @for $i from 1 through $columnsCount {
133
137
  $num: $i;
@@ -274,8 +274,10 @@ nav ul li {
274
274
  .grid-1, .grid-2, .grid-3, .grid-4, .grid-5, .grid-6, .grid-7, .grid-8, .grid-9, .grid-10, .grid-11, .grid-12 {
275
275
  margin-left: 1.04167%;
276
276
  margin-right: 1.04167%;
277
- float: left;
277
+ display: inline-block;
278
+ vertical-align: top;
278
279
  min-height: 1px;
280
+ zoom: 1;
279
281
  -webkit-box-sizing: border-box;
280
282
  -moz-box-sizing: border-box;
281
283
  box-sizing: border-box;
@@ -559,6 +561,10 @@ nav ul li {
559
561
  margin-right: 1.04167%;
560
562
  }
561
563
 
564
+ .push-tablet-0, .pull-tablet-0 {
565
+ left: 0;
566
+ }
567
+
562
568
  .grid-tablet-1 {
563
569
  width: 6.25%;
564
570
  }
@@ -823,6 +829,10 @@ nav ul li {
823
829
  margin-right: 1.04167%;
824
830
  }
825
831
 
832
+ .push-mobile-0, .pull-mobile-0 {
833
+ left: 0;
834
+ }
835
+
826
836
  .grid-mobile-1 {
827
837
  width: 6.25%;
828
838
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: droidcss
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.2
4
+ version: 1.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ilya Gorenburg
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-26 00:00:00.000000000 Z
11
+ date: 2014-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass