css_grid 2.6.0 → 2.6.1
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.
- data/README.md +8 -0
- data/lib/assets/stylesheets/grid.css.scss +1 -1
- data/lib/css_grid/version.rb +1 -1
- metadata +2 -2
data/README.md
CHANGED
|
@@ -649,6 +649,14 @@ Need to test it with the most commons versions of grid stylesheets (twitter boot
|
|
|
649
649
|
|
|
650
650
|
Preprend and Append are not fully handled by the GRID_CONFIG constant. Specialy prepend negative values.
|
|
651
651
|
|
|
652
|
+
## Bugfix comming soon
|
|
653
|
+
|
|
654
|
+
Prepend with negative value doesn't work.
|
|
655
|
+
|
|
656
|
+
--
|
|
657
|
+
|
|
658
|
+
class .row in the grid.css will be updated to delete 'overflow: hidden;' property
|
|
659
|
+
|
|
652
660
|
## Contributing
|
|
653
661
|
|
|
654
662
|
1. Fork it
|
|
@@ -12,7 +12,7 @@ $gutter_width: 1.041666666666;
|
|
|
12
12
|
@mixin grid($grid_width){
|
|
13
13
|
.container {
|
|
14
14
|
.row {
|
|
15
|
-
width: $grid_width; margin: 0 auto;
|
|
15
|
+
width: $grid_width; margin: 0 auto; display: table;
|
|
16
16
|
|
|
17
17
|
&.nested{ margin: 0 (-$gutter_width / 100 * $grid_width); min-width: 0; width: auto; }
|
|
18
18
|
|
data/lib/css_grid/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: css_grid
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.6.
|
|
4
|
+
version: 2.6.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2012-11-
|
|
12
|
+
date: 2012-11-23 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: railties
|