edge_framework 1.2.6 → 1.2.7
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 +8 -8
- data/README.md +10 -3
- data/assets/sass/edge.scss +1 -1
- data/assets/sass/edge/_base.scss +2 -0
- data/assets/sass/edge/components/_grid.scss +1 -1
- data/assets/sass/kitchen-sink.scss +10 -0
- data/lib/edge/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YzBjYjA2NmU2YjViMzk3ZmIzOWU3ZGNmZmFjZGM5YjYwYzYxYWZmZA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZGIwMjFkMTYzNTFlM2QxMzRhMzJiNTYwZGIyM2ZjYjg5ODdhZWI3MQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NTM3MmI3MjJhMzU0YWY5ZjIyNTUwODJlNjY4Y2E3YjQwNzMxNDBiZmRiOTQy
|
10
|
+
NDA5MTE2Mjk0ZTBjYWQyNDEyZDIwY2Q4NmZkNTYzMjhjNzJkOTM2MTM4ZjYx
|
11
|
+
Yjc3OGVmMTk4ODk0MTNmMGJmN2E4YzA3MDg0MGI4YWViZDAyNTk=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MWRmZDU1NjVlZTYzNDllMjQzZTNlMGYxMjc3ZThjODc0YzIxNDhhMzc2ZDFi
|
14
|
+
NjhlMjUxMmI2ZTVkNzJmZWIzM2NjM2RkNWRmYTU1ZTk0MDdjOTg0OTAxOTNk
|
15
|
+
MWQ2MTc4NmRhNDRiY2QxZjkzNDQ2ZWRkZTFkZmM3YWYxYjM5ZmY=
|
data/README.md
CHANGED
@@ -467,7 +467,7 @@ Custom grid makes the markup cleaner and easier to change.
|
|
467
467
|
|
468
468
|
**Convention**:
|
469
469
|
|
470
|
-
-
|
470
|
+
- Custom column must be applied to the element that has `column` class. The same goes to custom row.
|
471
471
|
|
472
472
|
### GUTTER
|
473
473
|
|
@@ -648,6 +648,13 @@ The command will give you Edge's SCSS files and append the pipeline.
|
|
648
648
|
FAQ
|
649
649
|
===============
|
650
650
|
|
651
|
-
1.
|
651
|
+
1. Why should I use Edge over leading frameworks like Boostrap or Foundation?
|
652
|
+
|
653
|
+
Edge leans toward those who create website based on designer's wireframe/mockup.
|
654
|
+
|
655
|
+
Bootstrap and Foundation offer pre-styled elements which are great for quick prototyping. But when you are working with a designer, you won't use any of those styling.
|
656
|
+
|
657
|
+
2. Is Edge a mobile-first framework?
|
658
|
+
|
659
|
+
No it is not.
|
652
660
|
|
653
|
-
No it is not.
|
data/assets/sass/edge.scss
CHANGED
data/assets/sass/edge/_base.scss
CHANGED
@@ -201,11 +201,13 @@ $retina-screen : 192dpi !default;
|
|
201
201
|
}
|
202
202
|
|
203
203
|
@mixin between($smaller-size, $larger-size) {
|
204
|
+
$is-in-media: true;
|
204
205
|
$smaller-size: translateSize($smaller-size);
|
205
206
|
$larger-size: translateSize($larger-size);
|
206
207
|
@media only screen and (min-width: $smaller-size) and (max-width: $larger-size) {
|
207
208
|
@content;
|
208
209
|
}
|
210
|
+
$is-in-media: false;
|
209
211
|
}
|
210
212
|
|
211
213
|
// ------------
|
@@ -210,7 +210,7 @@ $column-gutter : 20px !default;
|
|
210
210
|
@include below(small) {
|
211
211
|
@include base-column($size:$small, $total:$total);
|
212
212
|
}
|
213
|
-
} @else if $responsive { // else, become 100% width on small screen (if responsive)
|
213
|
+
} @else if $responsive and not $is-in-media { // else, become 100% width on small screen (if responsive)
|
214
214
|
@include below(small) {
|
215
215
|
@include base-column($size:$total, $total:$total);
|
216
216
|
}
|
data/lib/edge/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: edge_framework
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Henner Setyono
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-07-
|
11
|
+
date: 2014-07-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sass
|