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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MWZkYmUyYTQ1MDAwNzBlYjVmZjkyYjFkZDNlNWZlYjNhN2E0MzE4NA==
4
+ YzBjYjA2NmU2YjViMzk3ZmIzOWU3ZGNmZmFjZGM5YjYwYzYxYWZmZA==
5
5
  data.tar.gz: !binary |-
6
- MWVjNTg5NTZjNmUxMGE0OGViMDhkNmMzMTIxZDRmMzg1YWUzMzU1Zg==
6
+ ZGIwMjFkMTYzNTFlM2QxMzRhMzJiNTYwZGIyM2ZjYjg5ODdhZWI3MQ==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- OGMyN2U0MGQ3MDZmNjBhODM0YmJhNDRmZjcxYmY4YjJlODViOWJhMzNmOGE3
10
- Y2I3YWIxYWIwYWYxOWFmYjFmZWEwNjdlNmVlOTc1OTEyOGYxYmQ0NGZiNmM0
11
- MWY5ZGQ4OTgwMDQ1ZTk5MDVmOTQyMWZlMDg1NDc1MDM1MmFjNTk=
9
+ NTM3MmI3MjJhMzU0YWY5ZjIyNTUwODJlNjY4Y2E3YjQwNzMxNDBiZmRiOTQy
10
+ NDA5MTE2Mjk0ZTBjYWQyNDEyZDIwY2Q4NmZkNTYzMjhjNzJkOTM2MTM4ZjYx
11
+ Yjc3OGVmMTk4ODk0MTNmMGJmN2E4YzA3MDg0MGI4YWViZDAyNTk=
12
12
  data.tar.gz: !binary |-
13
- OWEzNDczMDdjNjRkMDEwMGViZGM3OGJmNGM3NTE1NTQyMzE5NWE3NmM2ZDZm
14
- ZDE2YTA1NjZjYzNlM2IyYTdlZWM5YTNjMGM2NmFlYmRjZjk3YzI5ZmM1NTE5
15
- NGEzNzUyMmFlMTA4MmRkZjI1YzY1NDRkOGMwYzQ3OTEwYjdiMTA=
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
- - We need to include the base class in the markup (`.row` and `.column`).
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. Is Edge a mobile-first framework?
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.
@@ -1,6 +1,6 @@
1
1
  /* ------------------------------------------
2
2
  - EDGE Framework - github.com/HennerS/Edge
3
- - v1.2.6 (Ezalor)
3
+ - v1.2.7 (Ezalor)
4
4
  ------------------------------------------ */
5
5
 
6
6
  @import "edge/base";
@@ -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
  }
@@ -6,6 +6,16 @@
6
6
  @include column(3);
7
7
  }
8
8
 
9
+ .custom-gridx {
10
+ @include between(mini, small) {
11
+ @include column(4);
12
+ }
13
+
14
+ @include below(small) {
15
+ @include column(5);
16
+ }
17
+ }
18
+
9
19
  [data-page="animate"] {
10
20
  .box1 {
11
21
  background: red;
data/lib/edge/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Edge
2
- VERSION = "1.2.6"
2
+ VERSION = "1.2.7"
3
3
  CODENAME = "Ezalor"
4
4
  end
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.6
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-09 00:00:00.000000000 Z
11
+ date: 2014-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass