eleven40_16 1.2.1 → 1.2.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.
- data/lib/eleven40_16.rb +2 -0
- data/stylesheets/_eleven40.scss +2 -2
- data/stylesheets/{eleven40 → eleven40_16}/_base.scss +0 -0
- data/stylesheets/{eleven40 → eleven40_16}/_ie.scss +0 -0
- data/stylesheets/{eleven40 → eleven40_16}/_mobile.scss +0 -0
- data/stylesheets/{eleven40 → eleven40_16}/_reset.scss +0 -0
- data/stylesheets/{eleven40 → eleven40_16}/_smallscreen.scss +0 -0
- data/stylesheets/{eleven40 → eleven40_16}/_typography.scss +0 -0
- data/stylesheets/{eleven40 → eleven40_16}/reset/_utilities.scss +0 -0
- metadata +11 -17
- data/lib/eleven40.rb +0 -2
- data/templates/project/ie.scss +0 -6
- data/templates/project/manifest.rb +0 -38
- data/templates/project/mobile.scss +0 -6
- data/templates/project/partials/_layout.scss +0 -12
- data/templates/project/screen.scss +0 -5
- data/templates/project/smallscreen.scss +0 -6
data/lib/eleven40_16.rb
ADDED
data/stylesheets/_eleven40.scss
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 1
|
|
7
7
|
- 2
|
|
8
|
-
-
|
|
9
|
-
version: 1.2.
|
|
8
|
+
- 2
|
|
9
|
+
version: 1.2.2
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Jeremy Bush
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date:
|
|
18
|
+
date: 2011-12-20 00:00:00 -02:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -44,21 +44,15 @@ extra_rdoc_files: []
|
|
|
44
44
|
|
|
45
45
|
files:
|
|
46
46
|
- README.md
|
|
47
|
-
- lib/
|
|
47
|
+
- lib/eleven40_16.rb
|
|
48
48
|
- stylesheets/_eleven40.scss
|
|
49
|
-
- stylesheets/
|
|
50
|
-
- stylesheets/
|
|
51
|
-
- stylesheets/
|
|
52
|
-
- stylesheets/
|
|
53
|
-
- stylesheets/
|
|
54
|
-
- stylesheets/
|
|
55
|
-
- stylesheets/
|
|
56
|
-
- templates/project/ie.scss
|
|
57
|
-
- templates/project/manifest.rb
|
|
58
|
-
- templates/project/mobile.scss
|
|
59
|
-
- templates/project/partials/_layout.scss
|
|
60
|
-
- templates/project/screen.scss
|
|
61
|
-
- templates/project/smallscreen.scss
|
|
49
|
+
- stylesheets/eleven40_16/_base.scss
|
|
50
|
+
- stylesheets/eleven40_16/_ie.scss
|
|
51
|
+
- stylesheets/eleven40_16/_mobile.scss
|
|
52
|
+
- stylesheets/eleven40_16/_reset.scss
|
|
53
|
+
- stylesheets/eleven40_16/_smallscreen.scss
|
|
54
|
+
- stylesheets/eleven40_16/_typography.scss
|
|
55
|
+
- stylesheets/eleven40_16/reset/_utilities.scss
|
|
62
56
|
has_rdoc: true
|
|
63
57
|
homepage: https://github.com/devton/eleven40-compass
|
|
64
58
|
licenses: []
|
data/lib/eleven40.rb
DELETED
data/templates/project/ie.scss
DELETED
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
description "eleven40 compass extension"
|
|
2
|
-
|
|
3
|
-
stylesheet 'partials/_layout.scss'
|
|
4
|
-
stylesheet 'screen.scss', :media => 'screen'
|
|
5
|
-
stylesheet 'ie.scss', :media => 'screen', :condition => "lt IE 8"
|
|
6
|
-
stylesheet 'mobile.scss', :media => 'handheld, only screen and (max-width: 767px)'
|
|
7
|
-
stylesheet 'smallscreen.scss', :media => 'only screen and (max-width: 1023px)'
|
|
8
|
-
|
|
9
|
-
help %Q{
|
|
10
|
-
Please see the cssgrid website for source information:
|
|
11
|
-
|
|
12
|
-
http://cssgrid.net/
|
|
13
|
-
|
|
14
|
-
This extension provides mixins to do what the classes in the original did. In general, you can follow this format:
|
|
15
|
-
|
|
16
|
-
@include eleven40-classname
|
|
17
|
-
|
|
18
|
-
For example:
|
|
19
|
-
|
|
20
|
-
@include eleven40-container
|
|
21
|
-
|
|
22
|
-
replaces the
|
|
23
|
-
|
|
24
|
-
.container
|
|
25
|
-
|
|
26
|
-
css class.
|
|
27
|
-
|
|
28
|
-
The same applies for the row class all the col classes. Make sure you use the eleven40-last mixin for the last column, just like in the css class version.
|
|
29
|
-
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
welcome_message %Q{
|
|
33
|
-
Please see the cssgrid website for source information:
|
|
34
|
-
|
|
35
|
-
http://cssgrid.net/
|
|
36
|
-
|
|
37
|
-
This extension provides mixins to do what the classes in the original did.
|
|
38
|
-
}
|