gridle 1.0.9 → 1.0.9.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.
- checksums.yaml +7 -0
- data/lib/gridle.rb +2 -2
- data/stylesheets/gridle/_gridle.scss +22 -31
- metadata +47 -65
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 0ca28a9212c57096a088e53569a12a0452b66ec9
|
4
|
+
data.tar.gz: c5df5100d76ff651da62cccd9f7ff909aa3eee7a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: d19d4397384dc6fb539773252a07ee2e35d8c0c56ff323477605af322f39fd1de086f9931f7d091820aa790dbb87617bd49a559cbdfd0abf18c3c040f7183138
|
7
|
+
data.tar.gz: 3b7e830421acb60e7a34114a256a5c6c3fa9226bafb996ac614e6b01078e0d99b9eddaecf5a130d8a0895ea6b9c83b3948476c5ba366a7790cadcbefb449a9a2
|
data/lib/gridle.rb
CHANGED
@@ -17,8 +17,8 @@ Compass::Frameworks.register('gridle', :path => extension_path)
|
|
17
17
|
# a prerelease version
|
18
18
|
# Date is in the form of YYYY-MM-DD
|
19
19
|
module Extension
|
20
|
-
VERSION = "1.0.9"
|
21
|
-
DATE = "2013-11-
|
20
|
+
VERSION = "1.0.9.2"
|
21
|
+
DATE = "2013-11-20"
|
22
22
|
end
|
23
23
|
|
24
24
|
# This is where any custom SassScript should be placed. The functions will be
|
@@ -29,9 +29,9 @@
|
|
29
29
|
// |------------------------------------------------------
|
30
30
|
// |------------------------------------------------------
|
31
31
|
// @created 25.03.13
|
32
|
-
// @updated
|
32
|
+
// @updated 20.11.13
|
33
33
|
// @author Olivier Bossel <olivier.bossel@gmail.com>
|
34
|
-
// @version 1.0.9
|
34
|
+
// @version 1.0.9.2
|
35
35
|
// |------------------------------------------------------
|
36
36
|
// |------------------------------------------------------
|
37
37
|
|
@@ -210,14 +210,14 @@ $_gridle-state-15-classes : true !default;
|
|
210
210
|
-moz-box-sizing: border-box;
|
211
211
|
box-sizing: border-box;
|
212
212
|
|
213
|
-
@extend gridle-clearfix;
|
213
|
+
@extend %gridle-clearfix;
|
214
214
|
}
|
215
215
|
%gridle-parent-common {
|
216
216
|
-webkit-box-sizing: border-box;
|
217
217
|
-moz-box-sizing: border-box;
|
218
218
|
box-sizing: border-box;
|
219
219
|
|
220
|
-
@extend gridle-clearfix;
|
220
|
+
@extend %gridle-clearfix !optional;
|
221
221
|
}
|
222
222
|
%gridle-container-debug-common {
|
223
223
|
background-color:#f5f5f5;
|
@@ -1120,11 +1120,11 @@ $_gridle-state-15-classes : true !default;
|
|
1120
1120
|
}
|
1121
1121
|
}
|
1122
1122
|
@mixin _gridle_centered() {
|
1123
|
-
display:block;
|
1124
|
-
float:none;
|
1125
|
-
margin-left:auto;
|
1126
|
-
margin-right:auto;
|
1127
|
-
clear:both;
|
1123
|
+
display:block !important;
|
1124
|
+
float:none !important;
|
1125
|
+
margin-left:auto !important;
|
1126
|
+
margin-right:auto !important;
|
1127
|
+
clear:both !important;
|
1128
1128
|
}
|
1129
1129
|
|
1130
1130
|
|
@@ -1141,10 +1141,9 @@ $_gridle-state-15-classes : true !default;
|
|
1141
1141
|
}
|
1142
1142
|
}
|
1143
1143
|
@mixin _gridle_parent() {
|
1144
|
-
@extend gridle-parent-common;
|
1144
|
+
@extend %gridle-parent-common;
|
1145
1145
|
|
1146
|
-
|
1147
|
-
padding-right:0 !important;
|
1146
|
+
@include gridle_no_gutter();
|
1148
1147
|
}
|
1149
1148
|
|
1150
1149
|
|
@@ -1266,7 +1265,7 @@ $_gridle-state-15-classes : true !default;
|
|
1266
1265
|
// @param String $side The side to clear
|
1267
1266
|
// @param String $state The state
|
1268
1267
|
@mixin gridle_no_gutter(
|
1269
|
-
$side :
|
1268
|
+
$side : left right,
|
1270
1269
|
$state : null
|
1271
1270
|
) {
|
1272
1271
|
@if $state {
|
@@ -1278,20 +1277,16 @@ $_gridle-state-15-classes : true !default;
|
|
1278
1277
|
}
|
1279
1278
|
}
|
1280
1279
|
@mixin gridle_no_margin(
|
1281
|
-
$side :
|
1280
|
+
$side : left right,
|
1282
1281
|
$state : null
|
1283
1282
|
) {
|
1284
1283
|
@include gridle_no_gutter($side, $state);
|
1285
1284
|
}
|
1286
1285
|
@mixin _gridle_no_gutter(
|
1287
|
-
$side :
|
1286
|
+
$side : left right
|
1288
1287
|
) {
|
1289
|
-
@
|
1290
|
-
padding : 0 !important;
|
1291
|
-
} @else {
|
1292
|
-
@each $s in $side {
|
1293
|
-
padding-#{$s} : 0 !important;
|
1294
|
-
}
|
1288
|
+
@each $s in $side {
|
1289
|
+
padding-#{$s} : 0 !important;
|
1295
1290
|
}
|
1296
1291
|
}
|
1297
1292
|
|
@@ -1300,7 +1295,7 @@ $_gridle-state-15-classes : true !default;
|
|
1300
1295
|
// @param String $side The side to clear
|
1301
1296
|
// @param String $state The state
|
1302
1297
|
@mixin gridle_gutter(
|
1303
|
-
$side :
|
1298
|
+
$side : left right,
|
1304
1299
|
$state : null
|
1305
1300
|
) {
|
1306
1301
|
@if $state {
|
@@ -1313,20 +1308,16 @@ $_gridle-state-15-classes : true !default;
|
|
1313
1308
|
}
|
1314
1309
|
// shortcut :
|
1315
1310
|
@mixin gridle_margin(
|
1316
|
-
$side :
|
1311
|
+
$side : left right,
|
1317
1312
|
$state : null
|
1318
1313
|
) {
|
1319
1314
|
@include gridle_gutter($side, $state);
|
1320
1315
|
}
|
1321
1316
|
@mixin _gridle_gutter(
|
1322
|
-
$side :
|
1317
|
+
$side : left right
|
1323
1318
|
) {
|
1324
|
-
@
|
1325
|
-
padding : $gridle-gutter-width / 2
|
1326
|
-
} @else {
|
1327
|
-
@each $s in $side {
|
1328
|
-
padding-#{$s} : $gridle-gutter-width / 2 !important;
|
1329
|
-
}
|
1319
|
+
@each $s in $side {
|
1320
|
+
padding-#{$s} : $gridle-gutter-width / 2;
|
1330
1321
|
}
|
1331
1322
|
}
|
1332
1323
|
|
@@ -1415,7 +1406,7 @@ $_gridle-state-15-classes : true !default;
|
|
1415
1406
|
#{_gridle_prefixed_class("centered#{$media}")} {
|
1416
1407
|
@include gridle_centered(null);
|
1417
1408
|
}
|
1418
|
-
|
1409
|
+
#{_gridle_prefixed_class("parent#{$media}")} {
|
1419
1410
|
@include gridle_parent(null);
|
1420
1411
|
}
|
1421
1412
|
|
metadata
CHANGED
@@ -1,60 +1,51 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: gridle
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
segments:
|
6
|
-
- 1
|
7
|
-
- 0
|
8
|
-
- 9
|
9
|
-
version: 1.0.9
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.9.2
|
10
5
|
platform: ruby
|
11
|
-
authors:
|
6
|
+
authors:
|
12
7
|
- Olivier Bossel
|
13
8
|
autorequire:
|
14
9
|
bindir: bin
|
15
10
|
cert_chain: []
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
dependencies:
|
20
|
-
- !ruby/object:Gem::Dependency
|
11
|
+
date: 2013-11-20 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
21
14
|
name: sass
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
- !ruby/object:Gem::Version
|
27
|
-
segments:
|
28
|
-
- 3
|
29
|
-
- 2
|
30
|
-
- 0
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
31
19
|
version: 3.2.0
|
32
20
|
type: :runtime
|
33
|
-
version_requirements: *id001
|
34
|
-
- !ruby/object:Gem::Dependency
|
35
|
-
name: compass
|
36
21
|
prerelease: false
|
37
|
-
|
38
|
-
requirements:
|
39
|
-
- -
|
40
|
-
- !ruby/object:Gem::Version
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 3.2.0
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: compass
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
45
33
|
version: 0.12.1
|
46
34
|
type: :runtime
|
47
|
-
|
48
|
-
|
49
|
-
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: 0.12.1
|
41
|
+
description: Gridle is a set of complete and simple settings, mixins and classes that
|
42
|
+
make the creation and usage of grid systems (even complex ones) really simple.
|
43
|
+
email:
|
50
44
|
- olivier.bossel@gmail.com
|
51
45
|
executables: []
|
52
|
-
|
53
46
|
extensions: []
|
54
|
-
|
55
47
|
extra_rdoc_files: []
|
56
|
-
|
57
|
-
files:
|
48
|
+
files:
|
58
49
|
- lib/gridle.rb
|
59
50
|
- stylesheets/_gridle.scss
|
60
51
|
- stylesheets/gridle/_12-columns-classes.scss
|
@@ -78,37 +69,28 @@ files:
|
|
78
69
|
- stylesheets/gridle/_unsementic-responsive-classes.scss
|
79
70
|
- stylesheets/gridle/_unsementic-responsive.scss
|
80
71
|
- stylesheets/gridle/_unsementic.scss
|
81
|
-
has_rdoc: true
|
82
72
|
homepage: http://gridle.org
|
83
73
|
licenses: []
|
84
|
-
|
74
|
+
metadata: {}
|
85
75
|
post_install_message:
|
86
76
|
rdoc_options: []
|
87
|
-
|
88
|
-
require_paths:
|
77
|
+
require_paths:
|
89
78
|
- lib
|
90
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
91
|
-
requirements:
|
92
|
-
- -
|
93
|
-
- !ruby/object:Gem::Version
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
- - ">="
|
100
|
-
- !ruby/object:Gem::Version
|
101
|
-
segments:
|
102
|
-
- 1
|
103
|
-
- 3
|
104
|
-
- 6
|
79
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - '>='
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
version: '0'
|
84
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - '>='
|
87
|
+
- !ruby/object:Gem::Version
|
105
88
|
version: 1.3.6
|
106
89
|
requirements: []
|
107
|
-
|
108
90
|
rubyforge_project: gridle
|
109
|
-
rubygems_version:
|
91
|
+
rubygems_version: 2.0.3
|
110
92
|
signing_key:
|
111
|
-
specification_version:
|
112
|
-
summary: Gridle is a set of complete and simple settings, mixins and classes that
|
93
|
+
specification_version: 4
|
94
|
+
summary: Gridle is a set of complete and simple settings, mixins and classes that
|
95
|
+
make the creation and usage of grid systems (even complex ones) really simple.
|
113
96
|
test_files: []
|
114
|
-
|