compass-aurora-os 0.2.2 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
data/lib/aurora-os.rb CHANGED
@@ -7,6 +7,6 @@ extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
7
7
  Compass::Frameworks.register('aurora-os', :path => extension_path)
8
8
 
9
9
  module Aurora_OS
10
- VERSION = "0.2.2"
11
- DATE = "2014-02-13"
10
+ VERSION = "0.2.3"
11
+ DATE = "2014-03-07"
12
12
  end
@@ -24,10 +24,6 @@ file './tpls/views-view.tpl.php.txt', :to => "templates/views-view.tpl.php"
24
24
  # Stylesheets
25
25
  discover :stylesheets
26
26
 
27
- file '../shared/_functions.scss', :like => :stylesheet, :to => 'partials/global/_functions.scss'
28
- file '../shared/_mixins.scss', :like => :stylesheet, :to => 'partials/global/_mixins.scss'
29
- file '../shared/_extendables.scss', :like => :stylesheet, :to => 'partials/global/_extendables.scss'
30
-
31
27
  # Developer Consistency
32
28
  file '../shared/Gemfile.txt', :to => 'Gemfile'
33
29
  file '../shared/editorconfig.txt', :to => '.editorconfig'
@@ -1,4 +1,4 @@
1
- ////////////////////////
1
+ ////////////////////////////////////////////////////////////////////////////////
2
2
  // Base Partials
3
3
  //
4
4
  // These files will be shared across all three of your output
@@ -6,7 +6,7 @@
6
6
  // imports and imports for variables, functions, mixins, and extendables.
7
7
  //
8
8
  // Toolkit imports all of Compass, so there is no need to import it separately.
9
- ////////////////////////
9
+ ////////////////////////////////////////////////////////////////////////////////
10
10
 
11
11
  ////////////////////////
12
12
  // Compass Extensions
@@ -0,0 +1,22 @@
1
+ ////////////////////////////////////////////////////////////////////////////////
2
+ // Extendables Partials
3
+ //
4
+ // All of your extendable classes, ids, and placeholder extendables
5
+ // should go in this file.
6
+ ////////////////////////////////////////////////////////////////////////////////
7
+
8
+ .clearfix {
9
+ @if $legacy-support-for-ie6 or $legacy-support-for-ie7 {
10
+ *zoom: 1;
11
+ }
12
+
13
+ &:before,
14
+ &:after {
15
+ display: table;
16
+ content: "";
17
+ }
18
+
19
+ &:after {
20
+ clear: both;
21
+ }
22
+ }
@@ -0,0 +1,5 @@
1
+ ////////////////////////////////////////////////////////////////////////////////
2
+ // Functions Partials
3
+ //
4
+ // All of your functions should go in this file.
5
+ ////////////////////////////////////////////////////////////////////////////////
@@ -0,0 +1,5 @@
1
+ ////////////////////////////////////////////////////////////////////////////////
2
+ // Mixins Partials
3
+ //
4
+ // All of your mixins should go in this file.
5
+ ////////////////////////////////////////////////////////////////////////////////
@@ -1,51 +1,45 @@
1
- ///////////////////////////////////////////////////////////////////////////////
1
+ ////////////////////////////////////////////////////////////////////////////////
2
2
  // Variables Partials
3
3
  //
4
4
  // All of your variables should go in this file.
5
- ///////////////////////////////////////////////////////////////////////////////
5
+ ////////////////////////////////////////////////////////////////////////////////
6
6
 
7
7
  ////////////////////////
8
8
  // Breakpoints
9
- //
10
- // Override Alphecca defaults here.
11
9
  ////////////////////////
12
- //$small: 500px;
13
- //$medium: 800px;
14
- //$large: 1100px;
15
- //$xlarge: 1400px;
10
+ $small: 500px;
11
+ $medium: 800px;
12
+ $large: 1100px;
13
+ $xlarge: 1400px;
16
14
 
17
15
  // Old IE support
18
- //$breakpoint-no-query-fallbacks: true;
19
- //$no-query: '.lt-ie9';
16
+ $breakpoint-no-query-fallbacks: true;
17
+ $no-query: '.lt-ie9';
20
18
 
21
19
  ////////////////////////
22
20
  // Grids
23
- //
24
- // Override Alphecca defaults here.
25
21
  ////////////////////////
26
- //$grids: add-grid(3);
27
- //$grids: add-grid(6 at $small);
28
- //$grids: add-grid(18 at $medium);
29
- //$grids: add-grid(30 at $large);
22
+ $grids: add-grid(3);
23
+ $grids: add-grid(6 at $small);
24
+ $grids: add-grid(18 at $medium);
25
+ $grids: add-grid(30 at $large);
30
26
 
31
- //$gutters: add-gutter(1/5);
32
- //$gutters: add-gutter(1/3 at $small);
33
- //$gutters: add-gutter(1/2 at $medium);
34
- //$gutters: add-gutter(1 at $large);
27
+ $gutters: add-gutter(1/5);
28
+ $gutters: add-gutter(1/3 at $small);
29
+ $gutters: add-gutter(1/2 at $medium);
30
+ $gutters: add-gutter(1 at $large);
35
31
 
36
- //$output: 'isolation';
32
+ $output: 'isolation';
37
33
 
38
34
  // Grid color for debugging
39
- //$background-grid-color: rgba(117, 125, 138, 1);
35
+ $background-grid-color: rgba(117, 125, 138, 1);
40
36
 
41
37
  ////////////////////////
42
38
  // Layout
43
- //
44
- // Override Alphecca defaults here.
45
39
  ////////////////////////
46
- //$container-width: 320px;
40
+ $container-width: 320px;
47
41
 
48
- //$small-container-width: 480px;
49
- //$medium-container-width: 720px;
50
- //$large-container-width: 960px;
51
- //$xlarge-container-width: 1200px;
42
+ $small-container-width: 480px;
43
+ $medium-container-width: 720px;
44
+ $large-container-width: 960px;
45
+ $xlarge-container-width: 1200px;
@@ -125,7 +125,7 @@ function <%= project_name %>_preprocess_field(&$vars) {
125
125
  drupal_add_js('jQuery(document).foundation();', array(
126
126
  'type' => 'inline',
127
127
  'scope' => 'footer',
128
- 'weight' => 10
128
+ 'weight' => 10,
129
129
  ));
130
130
  break;
131
131
  }
metadata CHANGED
@@ -1,17 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: compass-aurora-os
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - Sam Richard
9
9
  - Ian Carrico
10
10
  - Eric Paul
11
+ - Anne Sturdivant
11
12
  autorequire:
12
13
  bindir: bin
13
14
  cert_chain: []
14
- date: 2014-02-13 00:00:00.000000000 Z
15
+ date: 2014-03-07 00:00:00.000000000 Z
15
16
  dependencies:
16
17
  - !ruby/object:Gem::Dependency
17
18
  name: sass
@@ -130,84 +131,88 @@ email:
130
131
  - snugug@gmail.com
131
132
  - ian@iancarrico.com
132
133
  - eric@opensourcery.com
134
+ - anne@opensourcery.com
133
135
  executables: []
134
136
  extensions: []
135
137
  extra_rdoc_files: []
136
138
  files:
137
139
  - lib/aurora-os.rb
138
140
  - stylesheets/_aurora.scss
141
+ - stylesheets/aurora/_singularity-grid.scss
142
+ - stylesheets/aurora/_susy-grid.scss
143
+ - stylesheets/aurora/_system.scss
139
144
  - stylesheets/drupal/_system.scss
140
145
  - stylesheets/drupal/_vertical-tabs.scss
141
- - stylesheets/aurora/_system.scss
142
- - stylesheets/aurora/_susy-grid.scss
143
- - stylesheets/aurora/_singularity-grid.scss
144
- - templates/project/print.scss
145
- - templates/project/partials/styleguide/_style-guide.scss
146
- - templates/project/partials/global/_base.scss
147
- - templates/project/partials/layout/_layout.scss
148
- - templates/project/partials/design/_design.scss
149
- - templates/project/style.scss
150
- - templates/project/manifest.rb
151
- - templates/polaris/print.scss
152
- - templates/polaris/partials/states/_states.scss
153
- - templates/polaris/partials/styleguide/_style-guide.scss
146
+ - templates/arcturus/arcturus.info.erb
147
+ - templates/arcturus/gitignore.txt
148
+ - templates/arcturus/manifest.rb
149
+ - templates/arcturus/partials/global/_base.scss
150
+ - templates/arcturus/partials/global/_extendables.scss
151
+ - templates/arcturus/partials/global/_functions.scss
152
+ - templates/arcturus/partials/global/_mixins.scss
153
+ - templates/arcturus/partials/global/_variables.scss
154
+ - templates/arcturus/partials/layouts/_layouts.scss
155
+ - templates/arcturus/partials/modules/_modules.scss
156
+ - templates/arcturus/partials/states/_states.scss
157
+ - templates/arcturus/partials/styleguide/_style-guide.scss
158
+ - templates/arcturus/print.scss
159
+ - templates/arcturus/style.scss
160
+ - templates/arcturus/template.php.erb
161
+ - templates/arcturus/tpls/field--field-slideshow-slide-body-text.tpl.php.txt
162
+ - templates/arcturus/tpls/field--field-slideshow-slide-link.tpl.php.txt
163
+ - templates/arcturus/tpls/field--field-slideshow-slide.tpl.php.txt
164
+ - templates/arcturus/tpls/page.tpl.php.txt
165
+ - templates/arcturus/tpls/views-view.tpl.php.txt
166
+ - templates/bower/manifest.rb
167
+ - templates/box-sizing/behaviors/box-sizing/boxsizing.htc
168
+ - templates/box-sizing/behaviors/box-sizing/boxsizing.php
169
+ - templates/box-sizing/manifest.rb
170
+ - templates/box-sizing/README-behaviors.md
171
+ - templates/corona/maintenance.scss
172
+ - templates/corona/manifest.rb
173
+ - templates/corona/partials/_base.scss
174
+ - templates/corona/partials/_variables.scss
175
+ - templates/corona/partials/design/_design.scss
176
+ - templates/corona/partials/global/_defaults.scss
177
+ - templates/corona/partials/global/_forms.scss
178
+ - templates/corona/partials/global/_global.scss
179
+ - templates/corona/partials/global/_type.scss
180
+ - templates/corona/print.scss
181
+ - templates/corona/style.scss
182
+ - templates/grunt/manifest.rb
183
+ - templates/polaris/manifest.rb
154
184
  - templates/polaris/partials/global/_base.scss
155
185
  - templates/polaris/partials/layouts/_layouts.scss
156
186
  - templates/polaris/partials/modules/_modules.scss
187
+ - templates/polaris/partials/states/_states.scss
188
+ - templates/polaris/partials/styleguide/_style-guide.scss
189
+ - templates/polaris/print.scss
157
190
  - templates/polaris/style.scss
158
- - templates/polaris/manifest.rb
159
- - templates/box-sizing/README-behaviors.md
160
- - templates/box-sizing/manifest.rb
161
- - templates/box-sizing/behaviors/box-sizing/boxsizing.htc
162
- - templates/box-sizing/behaviors/box-sizing/boxsizing.php
163
- - templates/shared/editorconfig.txt
191
+ - templates/project/manifest.rb
192
+ - templates/project/partials/design/_design.scss
193
+ - templates/project/partials/global/_base.scss
194
+ - templates/project/partials/layout/_layout.scss
195
+ - templates/project/partials/styleguide/_style-guide.scss
196
+ - templates/project/print.scss
197
+ - templates/project/style.scss
198
+ - templates/shared/_extendables.scss
164
199
  - templates/shared/_functions.scss
165
- - templates/shared/gitignore.txt
166
- - templates/shared/README-templates.md
167
200
  - templates/shared/_mixins.scss
168
- - templates/shared/bowerrc.txt
169
- - templates/shared/Gruntfile.js.erb
170
- - templates/shared/template.php.erb
171
- - templates/shared/README-Sass.md
172
201
  - templates/shared/_variables.scss
173
202
  - templates/shared/aurora.info.erb
174
- - templates/shared/package.json.erb
175
- - templates/shared/jshintrc.txt
176
203
  - templates/shared/bower.json.erb
177
- - templates/shared/README-Partials.md
178
- - templates/shared/Gemfile.txt
179
- - templates/shared/_extendables.scss
204
+ - templates/shared/bowerrc.txt
180
205
  - templates/shared/config.rb.erb
181
- - templates/grunt/manifest.rb
182
- - templates/corona/print.scss
183
- - templates/corona/maintenance.scss
184
- - templates/corona/partials/_base.scss
185
- - templates/corona/partials/_variables.scss
186
- - templates/corona/partials/global/_global.scss
187
- - templates/corona/partials/global/_forms.scss
188
- - templates/corona/partials/global/_type.scss
189
- - templates/corona/partials/global/_defaults.scss
190
- - templates/corona/partials/design/_design.scss
191
- - templates/corona/style.scss
192
- - templates/corona/manifest.rb
193
- - templates/arcturus/tpls/field--field-slideshow-slide.tpl.php.txt
194
- - templates/arcturus/tpls/page.tpl.php.txt
195
- - templates/arcturus/tpls/views-view.tpl.php.txt
196
- - templates/arcturus/tpls/field--field-slideshow-slide-body-text.tpl.php.txt
197
- - templates/arcturus/tpls/field--field-slideshow-slide-link.tpl.php.txt
198
- - templates/arcturus/gitignore.txt
199
- - templates/arcturus/print.scss
200
- - templates/arcturus/arcturus.info.erb
201
- - templates/arcturus/partials/states/_states.scss
202
- - templates/arcturus/partials/styleguide/_style-guide.scss
203
- - templates/arcturus/partials/global/_base.scss
204
- - templates/arcturus/partials/global/_variables.scss
205
- - templates/arcturus/partials/layouts/_layouts.scss
206
- - templates/arcturus/partials/modules/_modules.scss
207
- - templates/arcturus/template.php.erb
208
- - templates/arcturus/style.scss
209
- - templates/arcturus/manifest.rb
210
- - templates/bower/manifest.rb
206
+ - templates/shared/editorconfig.txt
207
+ - templates/shared/Gemfile.txt
208
+ - templates/shared/gitignore.txt
209
+ - templates/shared/Gruntfile.js.erb
210
+ - templates/shared/jshintrc.txt
211
+ - templates/shared/package.json.erb
212
+ - templates/shared/README-Partials.md
213
+ - templates/shared/README-Sass.md
214
+ - templates/shared/README-templates.md
215
+ - templates/shared/template.php.erb
211
216
  homepage: http://opensourcery.com
212
217
  licenses:
213
218
  - GPL