compass-aurora 3.0.8 → 3.0.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -7
- data/lib/aurora.rb +2 -2
- data/templates/bower/manifest.rb +2 -2
- data/templates/corona/CORONA.md +154 -0
- data/templates/corona/config/_config.scss +25 -0
- data/templates/corona/{partials → config}/_variables.scss +1 -1
- data/templates/corona/{partials/global → global}/_forms.scss +4 -4
- data/templates/corona/global/_normalize.css.scss +16 -0
- data/templates/corona/{partials/global → global}/_type.scss +0 -0
- data/templates/corona/maintenance.scss +6 -7
- data/templates/corona/manifest.rb +3 -4
- data/templates/corona/print.scss +7 -2
- data/templates/corona/style.scss +22 -7
- data/templates/shared/Gemfile.txt +8 -8
- data/templates/shared/{component.json.erb → bower.json.erb} +0 -0
- data/templates/shared/config.rb.erb +5 -1
- data/templates/shared/template.php.erb +8 -24
- metadata +122 -79
- data/templates/corona/partials/_base.scss +0 -31
- data/templates/corona/partials/design/_design.scss +0 -4
- data/templates/corona/partials/global/_defaults.scss +0 -3
- data/templates/corona/partials/global/_global.scss +0 -11
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
5
|
-
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 2ac21c94d1ebe57ea7209814d52fddd9189ea12a
|
4
|
+
data.tar.gz: 438488b38defd8ab1185921a15851ee4cbdf3b5b
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b68b130cf24fd78ae98ee74e3166488d636169fc954fc67e3797c0c66d6d716dc6530e070da5ac6b20f6c8d0ba2104115a638a05f76e5387d3b9ea714de60d01
|
7
|
+
data.tar.gz: 0f47776d23a3899d97e1aab4daf90037b30f8d0ac8458a46bb0f0384f018ca8e2fa7b8ed86fe40b8a8bddb74efba220e4ad00d2a942e4ebe32519464d7397c04
|
data/lib/aurora.rb
CHANGED
data/templates/bower/manifest.rb
CHANGED
@@ -3,7 +3,7 @@ no_configuration_file!
|
|
3
3
|
|
4
4
|
# Bower's for the Birds
|
5
5
|
file '../shared/bowerrc.txt', :to => '.bowerrc'
|
6
|
-
file '../shared/
|
6
|
+
file '../shared/bower.json.erb', :to => 'bower.json', :erb => true
|
7
7
|
|
8
8
|
help %Q{
|
9
9
|
Please contact Sam Richard with questions:
|
@@ -17,4 +17,4 @@ welcome_message %Q{
|
|
17
17
|
See http://snugug.github.io/Aurora/ for full documentation.
|
18
18
|
|
19
19
|
Now run `bower install` to install your Bower dependencies.
|
20
|
-
}
|
20
|
+
}
|
@@ -0,0 +1,154 @@
|
|
1
|
+
CORONA: THEME TEMPLATE
|
2
|
+
----------------------
|
3
|
+
|
4
|
+
Welcome to the Corona sub-theme template for Aurora. This was meant to be a
|
5
|
+
general starting guide for you to jumpstart your theme development. Below are
|
6
|
+
some of the general ideas behind this template, and why it was made how it was.
|
7
|
+
Certainly, you can use or keep the partial structure, it is entirely up to you.
|
8
|
+
|
9
|
+
Good luck!
|
10
|
+
|
11
|
+
## Partial Structure
|
12
|
+
|
13
|
+
There are a few key ideas behind the partial structure that are important to
|
14
|
+
understand the thinking behind Corona.
|
15
|
+
|
16
|
+
### 1. All imports (except for config) happen in the main style.css
|
17
|
+
|
18
|
+
This is done so that the cascade can easily be kept in a specific order in one
|
19
|
+
place. It will also allow for less little files devoted only to importing more
|
20
|
+
files from mucking up your code base. We ignore this for _config.scss because
|
21
|
+
that one folder should be imported into every .css file we want to make. The
|
22
|
+
order of the cascade will not matter within the config, as no CSS will be output
|
23
|
+
directly from there.
|
24
|
+
|
25
|
+
### 2. Our main folders are config, global, layouts, and components.
|
26
|
+
|
27
|
+
Unless specific needs require it, the cascade should remain in that order as
|
28
|
+
well. The config folder has no CSS output, and is just variables, compass
|
29
|
+
extensions, functions, and mixins. The global folder are global elements that
|
30
|
+
are site-wide. A better way to think of it are elements that span multiple
|
31
|
+
compontents, such as forms, typeface and normalize.css. This folder also
|
32
|
+
includes the extendables, as they are global but unlike mixins actually spit out
|
33
|
+
CSS. Layouts then have large layout partials. This is more important in Drupal
|
34
|
+
where you have panel layouts that are side-wide, and helps to keep them
|
35
|
+
seperate. The final folder is compontents, which should house reusable
|
36
|
+
components, such as buttons or menu-items. Other folders can be added, if they
|
37
|
+
are needed but this is a good starting point.
|
38
|
+
|
39
|
+
### 3. Our main files are style.css, maintenance.css and print.css.
|
40
|
+
|
41
|
+
Style.css will be everything for your site. It will be 95% of your code.
|
42
|
+
Maintenance.css is for the Drupal maintenance page, in case you have specific
|
43
|
+
styling you do not want on it. This will help the site load faster. You can, and
|
44
|
+
should import in specific partial files that you will need on this page.
|
45
|
+
Print.css is to be conditionally loaded for print stylesheets. It should stay a
|
46
|
+
seperate file as for most browsers it isn't loaded unless needed. Note: I did
|
47
|
+
not add an IE.css file, as there are serveral methods to handle internet
|
48
|
+
explorer fallbacks, each with its own reasons. Depending if you use breakpoint
|
49
|
+
or not, that may determine if you want a seperate file.
|
50
|
+
|
51
|
+
### 4. Reusable components, with expectation to extend should always have silent selectors.
|
52
|
+
|
53
|
+
When you create a component, such as a button. Use both a class and a silent
|
54
|
+
selector. Here is an example:
|
55
|
+
|
56
|
+
```sass
|
57
|
+
.button,
|
58
|
+
%button {
|
59
|
+
margin: 10px;
|
60
|
+
}
|
61
|
+
|
62
|
+
.button-2 {
|
63
|
+
@extend %button;
|
64
|
+
}
|
65
|
+
|
66
|
+
```
|
67
|
+
|
68
|
+
|
69
|
+
Adding the silent selector is vital to avoid the following issue.
|
70
|
+
|
71
|
+
```sass
|
72
|
+
.button {
|
73
|
+
margin: 10px;
|
74
|
+
}
|
75
|
+
|
76
|
+
.login-page {
|
77
|
+
.button {
|
78
|
+
background-color: blue;
|
79
|
+
}
|
80
|
+
}
|
81
|
+
|
82
|
+
.button-2 {
|
83
|
+
@extend .button;
|
84
|
+
border: 1px solid grey;
|
85
|
+
}
|
86
|
+
|
87
|
+
```
|
88
|
+
without the silent selctor, you can get unintended CSS being outputted.
|
89
|
+
|
90
|
+
```css
|
91
|
+
.button, .button-2 {
|
92
|
+
margin: 10px;
|
93
|
+
}
|
94
|
+
|
95
|
+
.login-page .button, .login-page .button-2 {
|
96
|
+
background-color: blue;
|
97
|
+
}
|
98
|
+
|
99
|
+
.button-2 {
|
100
|
+
border: 1px solid grey;
|
101
|
+
}
|
102
|
+
```
|
103
|
+
|
104
|
+
Notice how .button-2 is also added to the .login-page .button selector, which
|
105
|
+
may not be desired. On larger codebases, this will become an issue.
|
106
|
+
|
107
|
+
|
108
|
+
### 5. Remember, do not have your selectors go too deep.
|
109
|
+
|
110
|
+
After about three selectors deep, performance could start to be affected. This
|
111
|
+
is far too easy with Sass, so be mindful. You do not need to have the styling
|
112
|
+
for your page to imitate the DOM, in fact it is better if you do not.
|
113
|
+
|
114
|
+
For example this:
|
115
|
+
|
116
|
+
```sass
|
117
|
+
.login-page {
|
118
|
+
form {
|
119
|
+
.buttons {
|
120
|
+
.return-link {
|
121
|
+
a {
|
122
|
+
}
|
123
|
+
}
|
124
|
+
}
|
125
|
+
}
|
126
|
+
}
|
127
|
+
|
128
|
+
```
|
129
|
+
|
130
|
+
should probably be more like this:
|
131
|
+
|
132
|
+
|
133
|
+
```sass
|
134
|
+
.login-page {
|
135
|
+
form {
|
136
|
+
}
|
137
|
+
|
138
|
+
.buttons {
|
139
|
+
}
|
140
|
+
|
141
|
+
.return-link {
|
142
|
+
a {
|
143
|
+
}
|
144
|
+
}
|
145
|
+
}
|
146
|
+
|
147
|
+
```
|
148
|
+
|
149
|
+
|
150
|
+
## Happy theming!
|
151
|
+
|
152
|
+
Good luck! This was made to be a starter for Drupal projects, but if you just
|
153
|
+
need a partial structure, you can use this too--- just remove the tpl folder,
|
154
|
+
template.php and the .info file.
|
@@ -0,0 +1,25 @@
|
|
1
|
+
// Base Partials
|
2
|
+
//
|
3
|
+
// These files will be shared across all three of your output CSS files.
|
4
|
+
// Generally included here are only Compass Extension imports and imports
|
5
|
+
// for variables, functions, mixins, and extendables.
|
6
|
+
|
7
|
+
// Compass Extensions
|
8
|
+
//
|
9
|
+
// Put an extra compass extensions here. Aurora already puts in respond-to,
|
10
|
+
// susy, toolkit, breakpoint, sassy-buttons, and compass-normalize
|
11
|
+
|
12
|
+
@import 'compass';
|
13
|
+
@import 'singularitygs';
|
14
|
+
@import 'breakpoint';
|
15
|
+
@import 'toolkit-no-css';
|
16
|
+
|
17
|
+
// Private Imports
|
18
|
+
//
|
19
|
+
// Any other imports to add. Normally, these do not include any css, but just
|
20
|
+
// functions, variables, etc. to be used by other files.
|
21
|
+
|
22
|
+
@import "variables";
|
23
|
+
@import "functions";
|
24
|
+
@import "mixins";
|
25
|
+
|
@@ -0,0 +1,16 @@
|
|
1
|
+
////////////////////////
|
2
|
+
//
|
3
|
+
// Normalization functions.
|
4
|
+
//
|
5
|
+
////////////////////////
|
6
|
+
|
7
|
+
|
8
|
+
////////////////////////
|
9
|
+
// Importing Compass-normalize. Alternatively, you can copy/paste normalize.css
|
10
|
+
// into this file, and edit it as you need. This method is actually recommended
|
11
|
+
// although not always needed.
|
12
|
+
////////////////////////
|
13
|
+
@import "normalize";
|
14
|
+
|
15
|
+
// Add in our border-box styling from toolkit.
|
16
|
+
@import 'toolkit/border-box';
|
File without changes
|
@@ -7,14 +7,13 @@
|
|
7
7
|
////////////////////////
|
8
8
|
|
9
9
|
////////////////////////
|
10
|
-
//
|
10
|
+
// Configuration, no CSS output.
|
11
|
+
// variables
|
12
|
+
// mixins
|
13
|
+
// functions
|
14
|
+
// compass extensions
|
11
15
|
////////////////////////
|
12
|
-
@import '
|
13
|
-
|
14
|
-
////////////////////////
|
15
|
-
// Other partial import
|
16
|
-
////////////////////////
|
17
|
-
@import 'partials/global/global';
|
16
|
+
@import 'config/config';
|
18
17
|
|
19
18
|
|
20
19
|
// Code specifically for the maintenance page.
|
@@ -6,7 +6,6 @@ file '../shared/config.rb.erb', :to => "config.rb", :erb => true
|
|
6
6
|
|
7
7
|
# Add in README
|
8
8
|
file '../shared/README-Sass.md', :like => :stylesheet, :to => 'README.md'
|
9
|
-
file '../shared/README-Partials.md', :like => :stylesheet, :to => 'partials/README.md'
|
10
9
|
file '../shared/README-templates.md', :to => "templates/README.md"
|
11
10
|
|
12
11
|
# ERB ALL the Drupal files!
|
@@ -17,10 +16,10 @@ file '../shared/template.php.erb', :to => "template.php", :erb => true
|
|
17
16
|
# Stylesheets
|
18
17
|
discover :stylesheets
|
19
18
|
|
20
|
-
file '../shared/_functions.scss', :like => :stylesheet, :to => '
|
21
|
-
file '../shared/_mixins.scss', :like => :stylesheet, :to => '
|
19
|
+
file '../shared/_functions.scss', :like => :stylesheet, :to => 'config/_functions.scss'
|
20
|
+
file '../shared/_mixins.scss', :like => :stylesheet, :to => 'config/_mixins.scss'
|
22
21
|
|
23
|
-
file '../shared/_extendables.scss', :like => :stylesheet, :to => '
|
22
|
+
file '../shared/_extendables.scss', :like => :stylesheet, :to => 'global/_extendables.scss'
|
24
23
|
|
25
24
|
# Developer Consistency
|
26
25
|
file '../shared/Gemfile.txt', :to => 'Gemfile'
|
data/templates/corona/print.scss
CHANGED
@@ -5,10 +5,15 @@
|
|
5
5
|
// This file is styles specific to Printed files.
|
6
6
|
////////////////////////
|
7
7
|
|
8
|
+
|
8
9
|
////////////////////////
|
9
|
-
//
|
10
|
+
// Configuration, no CSS output.
|
11
|
+
// variables
|
12
|
+
// mixins
|
13
|
+
// functions
|
14
|
+
// compass extensions
|
10
15
|
////////////////////////
|
11
|
-
@import '
|
16
|
+
@import 'config/config';
|
12
17
|
|
13
18
|
|
14
19
|
////////////////////////
|
data/templates/corona/style.scss
CHANGED
@@ -1,21 +1,36 @@
|
|
1
1
|
////////////////////////
|
2
2
|
// Style File
|
3
3
|
//
|
4
|
-
// This file gets turned into style.css. This file should really
|
4
|
+
// This file gets turned into style.css. This file should really
|
5
|
+
// hold nothing except for imports of your base, layout, and design
|
6
|
+
// partials.
|
5
7
|
////////////////////////
|
6
8
|
|
7
9
|
////////////////////////
|
8
|
-
//
|
10
|
+
// Configuration, no CSS output.
|
11
|
+
// variables
|
12
|
+
// mixins
|
13
|
+
// functions
|
14
|
+
// compass extensions
|
9
15
|
////////////////////////
|
10
|
-
@import '
|
16
|
+
@import 'config/config';
|
11
17
|
|
12
18
|
////////////////////////
|
13
|
-
// Import
|
19
|
+
// Import global elements
|
14
20
|
////////////////////////
|
15
|
-
@import '
|
21
|
+
@import 'global/normalize.css';
|
22
|
+
@import 'global/extendables';
|
23
|
+
@import 'global/type';
|
24
|
+
@import 'global/forms';
|
16
25
|
|
17
26
|
////////////////////////
|
18
|
-
// Import
|
27
|
+
// Import layouts
|
19
28
|
////////////////////////
|
20
|
-
|
29
|
+
//@import 'layout/header';
|
30
|
+
//@import 'layout/panel-page-x';
|
21
31
|
|
32
|
+
////////////////////////
|
33
|
+
// Import compontents
|
34
|
+
////////////////////////
|
35
|
+
//@import 'components/tabs';
|
36
|
+
//@import 'components/button';
|
@@ -1,13 +1,13 @@
|
|
1
1
|
# Pull gems from RubyGems
|
2
2
|
source 'https://rubygems.org'
|
3
3
|
|
4
|
-
#
|
5
|
-
gem 'compass-aurora', '
|
6
|
-
gem 'toolkit', '
|
7
|
-
gem 'singularitygs', '
|
8
|
-
gem 'breakpoint', '
|
9
|
-
gem 'sassy-buttons', '
|
10
|
-
gem 'compass-normalize', '
|
4
|
+
# We declare depdendencies at less than their next full version to ensure we don't get any breaking changes.
|
5
|
+
gem 'compass-aurora', '<4.0.0'
|
6
|
+
gem 'toolkit', '<2.0.0'
|
7
|
+
gem 'singularitygs', '<2.0.0'
|
8
|
+
gem 'breakpoint', '<3.0.0'
|
9
|
+
gem 'sassy-buttons', '<1.0.0'
|
10
|
+
gem 'compass-normalize', '<2.0.0'
|
11
11
|
gem 'css_parser', '~>1.3.4'
|
12
12
|
|
13
|
-
# Now that you're using Bundler, you need to run `bundle exec compass watch` instead of simply `compass watch`.
|
13
|
+
# Now that you're using Bundler, you need to run `bundle exec compass watch` instead of simply `compass watch`.
|
File without changes
|
@@ -1,5 +1,9 @@
|
|
1
1
|
<% project_name = File.basename(Compass.configuration.project_path) %><% project_js = Compass.configuration.javascripts_dir %><% project_css = Compass.configuration.css_dir %><% project_sass = Compass.configuration.sass_dir %><% project_img = Compass.configuration.images_dir %><% project_fonts = Compass.configuration.fonts_dir %># Require any additional compass plugins here.
|
2
|
-
require '
|
2
|
+
require 'compass'
|
3
|
+
require 'singularitygs'
|
4
|
+
require 'breakpoint'
|
5
|
+
require 'toolkit'
|
6
|
+
require 'compass-normalize'
|
3
7
|
|
4
8
|
# Set this to the root of your project when deployed:
|
5
9
|
http_path = "/sites/all/themes/<%= project_name %>"
|
@@ -5,15 +5,13 @@
|
|
5
5
|
*
|
6
6
|
* @param $vars
|
7
7
|
* An array of variables to pass to the theme template.
|
8
|
-
* @param $hook
|
9
|
-
* The name of the template being rendered ("maintenance_page" in this case.)
|
10
8
|
*/
|
11
|
-
function <%= project_name %>_preprocess_maintenance_page(&$vars
|
9
|
+
function <%= project_name %>_preprocess_maintenance_page(&$vars) {
|
12
10
|
// When a variable is manipulated or added in preprocess_html or
|
13
11
|
// preprocess_page, that same work is probably needed for the maintenance page
|
14
12
|
// as well, so we can just re-use those functions to do that work here.
|
15
|
-
// <%= project_name %>_preprocess_html($
|
16
|
-
// <%= project_name %>_preprocess_page($
|
13
|
+
// <%= project_name %>_preprocess_html($vars);
|
14
|
+
// <%= project_name %>_preprocess_page($vars);
|
17
15
|
|
18
16
|
// This preprocessor will also be used if the db is inactive. To ensure your
|
19
17
|
// theme is used, add the following line to your settings.php file:
|
@@ -37,8 +35,6 @@ function <%= project_name %>_modernizr_load_alter(&$load) {
|
|
37
35
|
*
|
38
36
|
* @param $vars
|
39
37
|
* An array of variables to pass to the theme template.
|
40
|
-
* @param $hook
|
41
|
-
* The name of the template being rendered ("html" in this case.)
|
42
38
|
*/
|
43
39
|
/* -- Delete this line if you want to use this function
|
44
40
|
function <%= project_name %>_preprocess_html(&$vars) {
|
@@ -50,8 +46,6 @@ function <%= project_name %>_preprocess_html(&$vars) {
|
|
50
46
|
*
|
51
47
|
* @param $vars
|
52
48
|
* An array of variables to pass to the theme template.
|
53
|
-
* @param $hook
|
54
|
-
* The name of the template being rendered ("page" in this case.)
|
55
49
|
*/
|
56
50
|
/* -- Delete this line if you want to use this function
|
57
51
|
function <%= project_name %>_preprocess_page(&$vars) {
|
@@ -63,11 +57,9 @@ function <%= project_name %>_preprocess_page(&$vars) {
|
|
63
57
|
*
|
64
58
|
* @param $vars
|
65
59
|
* An array of variables to pass to the theme template.
|
66
|
-
* @param $hook
|
67
|
-
* The name of the template being rendered ("region" in this case.)
|
68
60
|
*/
|
69
61
|
/* -- Delete this line if you want to use this function
|
70
|
-
function <%= project_name %>_preprocess_region(&$vars
|
62
|
+
function <%= project_name %>_preprocess_region(&$vars) {
|
71
63
|
|
72
64
|
}
|
73
65
|
// */
|
@@ -77,11 +69,9 @@ function <%= project_name %>_preprocess_region(&$vars, $hook) {
|
|
77
69
|
*
|
78
70
|
* @param $vars
|
79
71
|
* An array of variables to pass to the theme template.
|
80
|
-
* @param $hook
|
81
|
-
* The name of the template being rendered ("block" in this case.)
|
82
72
|
*/
|
83
73
|
/* -- Delete this line if you want to use this function
|
84
|
-
function <%= project_name %>_preprocess_block(&$vars
|
74
|
+
function <%= project_name %>_preprocess_block(&$vars) {
|
85
75
|
|
86
76
|
}
|
87
77
|
// */
|
@@ -91,11 +81,9 @@ function <%= project_name %>_preprocess_block(&$vars, $hook) {
|
|
91
81
|
*
|
92
82
|
* @param $vars
|
93
83
|
* An array of variables to pass to the theme template.
|
94
|
-
* @param $hook
|
95
|
-
* The name of the template being rendered ("entity" in this case.)
|
96
84
|
*/
|
97
85
|
/* -- Delete this line if you want to use this function
|
98
|
-
function <%= project_name %>_preprocess_entity(&$vars
|
86
|
+
function <%= project_name %>_preprocess_entity(&$vars) {
|
99
87
|
|
100
88
|
}
|
101
89
|
// */
|
@@ -105,11 +93,9 @@ function <%= project_name %>_preprocess_entity(&$vars, $hook) {
|
|
105
93
|
*
|
106
94
|
* @param $vars
|
107
95
|
* An array of variables to pass to the theme template.
|
108
|
-
* @param $hook
|
109
|
-
* The name of the template being rendered ("node" in this case.)
|
110
96
|
*/
|
111
97
|
/* -- Delete this line if you want to use this function
|
112
|
-
function <%= project_name %>_preprocess_node(&$vars
|
98
|
+
function <%= project_name %>_preprocess_node(&$vars) {
|
113
99
|
$node = $vars['node'];
|
114
100
|
}
|
115
101
|
// */
|
@@ -133,11 +119,9 @@ function <%= project_name %>_preprocess_field(&$vars, $hook) {
|
|
133
119
|
*
|
134
120
|
* @param $vars
|
135
121
|
* An array of variables to pass to the theme template.
|
136
|
-
* @param $hook
|
137
|
-
* The name of the template being rendered ("comment" in this case.)
|
138
122
|
*/
|
139
123
|
/* -- Delete this line if you want to use this function
|
140
|
-
function <%= project_name %>_preprocess_comment(&$vars
|
124
|
+
function <%= project_name %>_preprocess_comment(&$vars) {
|
141
125
|
$comment = $vars['comment'];
|
142
126
|
}
|
143
127
|
// */
|
metadata
CHANGED
@@ -1,88 +1,136 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass-aurora
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 3.0.9
|
5
5
|
platform: ruby
|
6
|
-
authors:
|
6
|
+
authors:
|
7
7
|
- Sam Richard
|
8
8
|
- Ian Carrico
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
12
|
+
date: 2014-01-28 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: sass
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
requirements:
|
18
|
+
- - ~>
|
19
|
+
- !ruby/object:Gem::Version
|
20
|
+
version: 3.2.14
|
21
|
+
type: :runtime
|
17
22
|
prerelease: false
|
18
|
-
|
19
|
-
requirements:
|
20
|
-
- -
|
21
|
-
- !ruby/object:Gem::Version
|
23
|
+
version_requirements: !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ~>
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
version: 3.2.14
|
28
|
+
- !ruby/object:Gem::Dependency
|
29
|
+
name: compass
|
30
|
+
requirement: !ruby/object:Gem::Requirement
|
31
|
+
requirements:
|
32
|
+
- - ~>
|
33
|
+
- !ruby/object:Gem::Version
|
22
34
|
version: 0.12.2
|
23
35
|
type: :runtime
|
24
|
-
|
25
|
-
|
36
|
+
prerelease: false
|
37
|
+
version_requirements: !ruby/object:Gem::Requirement
|
38
|
+
requirements:
|
39
|
+
- - ~>
|
40
|
+
- !ruby/object:Gem::Version
|
41
|
+
version: 0.12.2
|
42
|
+
- !ruby/object:Gem::Dependency
|
26
43
|
name: toolkit
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ~>
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: 1.2.2
|
49
|
+
type: :runtime
|
27
50
|
prerelease: false
|
28
|
-
|
29
|
-
requirements:
|
30
|
-
- -
|
31
|
-
- !ruby/object:Gem::Version
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - ~>
|
54
|
+
- !ruby/object:Gem::Version
|
32
55
|
version: 1.2.2
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: breakpoint
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ~>
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: 2.0.1
|
33
63
|
type: :runtime
|
34
|
-
|
35
|
-
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - ~>
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: 2.0.1
|
70
|
+
- !ruby/object:Gem::Dependency
|
36
71
|
name: sassy-buttons
|
72
|
+
requirement: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ~>
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: 0.2.0
|
77
|
+
type: :runtime
|
37
78
|
prerelease: false
|
38
|
-
|
39
|
-
requirements:
|
40
|
-
- -
|
41
|
-
- !ruby/object:Gem::Version
|
79
|
+
version_requirements: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ~>
|
82
|
+
- !ruby/object:Gem::Version
|
42
83
|
version: 0.2.0
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
name: singularitygs
|
86
|
+
requirement: !ruby/object:Gem::Requirement
|
87
|
+
requirements:
|
88
|
+
- - ~>
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
version: 1.1.2
|
43
91
|
type: :runtime
|
44
|
-
version_requirements: *id003
|
45
|
-
- !ruby/object:Gem::Dependency
|
46
|
-
name: compass-normalize
|
47
92
|
prerelease: false
|
48
|
-
|
49
|
-
requirements:
|
50
|
-
- -
|
51
|
-
- !ruby/object:Gem::Version
|
93
|
+
version_requirements: !ruby/object:Gem::Requirement
|
94
|
+
requirements:
|
95
|
+
- - ~>
|
96
|
+
- !ruby/object:Gem::Version
|
97
|
+
version: 1.1.2
|
98
|
+
- !ruby/object:Gem::Dependency
|
99
|
+
name: compass-normalize
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - ~>
|
103
|
+
- !ruby/object:Gem::Version
|
52
104
|
version: 1.4.3
|
53
105
|
type: :runtime
|
54
|
-
version_requirements: *id004
|
55
|
-
- !ruby/object:Gem::Dependency
|
56
|
-
name: bundler
|
57
106
|
prerelease: false
|
58
|
-
|
59
|
-
requirements:
|
60
|
-
- -
|
61
|
-
- !ruby/object:Gem::Version
|
107
|
+
version_requirements: !ruby/object:Gem::Requirement
|
108
|
+
requirements:
|
109
|
+
- - ~>
|
110
|
+
- !ruby/object:Gem::Version
|
111
|
+
version: 1.4.3
|
112
|
+
- !ruby/object:Gem::Dependency
|
113
|
+
name: bundler
|
114
|
+
requirement: !ruby/object:Gem::Requirement
|
115
|
+
requirements:
|
116
|
+
- - '>='
|
117
|
+
- !ruby/object:Gem::Version
|
62
118
|
version: 1.3.5
|
63
119
|
type: :runtime
|
64
|
-
version_requirements: *id005
|
65
|
-
- !ruby/object:Gem::Dependency
|
66
|
-
name: css_parser
|
67
120
|
prerelease: false
|
68
|
-
|
69
|
-
requirements:
|
70
|
-
- -
|
71
|
-
- !ruby/object:Gem::Version
|
72
|
-
version: 1.3.
|
73
|
-
type: :runtime
|
74
|
-
version_requirements: *id006
|
121
|
+
version_requirements: !ruby/object:Gem::Requirement
|
122
|
+
requirements:
|
123
|
+
- - '>='
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: 1.3.5
|
75
126
|
description: Aurora Subthemes!
|
76
|
-
email:
|
127
|
+
email:
|
77
128
|
- snugug@gmail.com
|
78
|
-
-
|
129
|
+
- github@iancarrico.com
|
79
130
|
executables: []
|
80
|
-
|
81
131
|
extensions: []
|
82
|
-
|
83
132
|
extra_rdoc_files: []
|
84
|
-
|
85
|
-
files:
|
133
|
+
files:
|
86
134
|
- lib/aurora.rb
|
87
135
|
- stylesheets/_aurora.scss
|
88
136
|
- stylesheets/aurora/_singularity-grid.scss
|
@@ -95,15 +143,14 @@ files:
|
|
95
143
|
- templates/box-sizing/behaviors/box-sizing/boxsizing.php
|
96
144
|
- templates/box-sizing/manifest.rb
|
97
145
|
- templates/box-sizing/README-behaviors.md
|
146
|
+
- templates/corona/config/_config.scss
|
147
|
+
- templates/corona/config/_variables.scss
|
148
|
+
- templates/corona/CORONA.md
|
149
|
+
- templates/corona/global/_forms.scss
|
150
|
+
- templates/corona/global/_normalize.css.scss
|
151
|
+
- templates/corona/global/_type.scss
|
98
152
|
- templates/corona/maintenance.scss
|
99
153
|
- templates/corona/manifest.rb
|
100
|
-
- templates/corona/partials/_base.scss
|
101
|
-
- templates/corona/partials/_variables.scss
|
102
|
-
- templates/corona/partials/design/_design.scss
|
103
|
-
- templates/corona/partials/global/_defaults.scss
|
104
|
-
- templates/corona/partials/global/_forms.scss
|
105
|
-
- templates/corona/partials/global/_global.scss
|
106
|
-
- templates/corona/partials/global/_type.scss
|
107
154
|
- templates/corona/print.scss
|
108
155
|
- templates/corona/style.scss
|
109
156
|
- templates/grunt/manifest.rb
|
@@ -127,8 +174,8 @@ files:
|
|
127
174
|
- templates/shared/_mixins.scss
|
128
175
|
- templates/shared/_variables.scss
|
129
176
|
- templates/shared/aurora.info.erb
|
177
|
+
- templates/shared/bower.json.erb
|
130
178
|
- templates/shared/bowerrc.txt
|
131
|
-
- templates/shared/component.json.erb
|
132
179
|
- templates/shared/config.rb.erb
|
133
180
|
- templates/shared/editorconfig.txt
|
134
181
|
- templates/shared/Gemfile.txt
|
@@ -141,31 +188,27 @@ files:
|
|
141
188
|
- templates/shared/README-templates.md
|
142
189
|
- templates/shared/template.php.erb
|
143
190
|
homepage: http://drupal.org/project/aurora
|
144
|
-
licenses:
|
191
|
+
licenses:
|
145
192
|
- GPL
|
146
193
|
metadata: {}
|
147
|
-
|
148
194
|
post_install_message:
|
149
195
|
rdoc_options: []
|
150
|
-
|
151
|
-
require_paths:
|
196
|
+
require_paths:
|
152
197
|
- lib
|
153
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
154
|
-
requirements:
|
155
|
-
- -
|
156
|
-
- !ruby/object:Gem::Version
|
157
|
-
version:
|
158
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
159
|
-
requirements:
|
160
|
-
- -
|
161
|
-
- !ruby/object:Gem::Version
|
162
|
-
version:
|
198
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
199
|
+
requirements:
|
200
|
+
- - '>='
|
201
|
+
- !ruby/object:Gem::Version
|
202
|
+
version: '0'
|
203
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
204
|
+
requirements:
|
205
|
+
- - '>='
|
206
|
+
- !ruby/object:Gem::Version
|
207
|
+
version: '1.2'
|
163
208
|
requirements: []
|
164
|
-
|
165
209
|
rubyforge_project: compass-aurora
|
166
210
|
rubygems_version: 2.0.3
|
167
211
|
signing_key:
|
168
212
|
specification_version: 4
|
169
213
|
summary: The companion gem for the Drupal Aurora base theme.
|
170
214
|
test_files: []
|
171
|
-
|
@@ -1,31 +0,0 @@
|
|
1
|
-
////////////////////////
|
2
|
-
// Base Partials
|
3
|
-
//
|
4
|
-
// These files will be shared across all three of your output
|
5
|
-
// CSS files. Generally included here are only Compass Extension
|
6
|
-
// imports and imports for variables, functions, mixins, and extendables.
|
7
|
-
//
|
8
|
-
// Toolkit imports all of Compass, so there is no need to import it separately.
|
9
|
-
////////////////////////
|
10
|
-
|
11
|
-
////////////////////////
|
12
|
-
// Compass Extensions
|
13
|
-
//
|
14
|
-
// Note: normalize.css is imported in partials/global/_global.scss. We do this
|
15
|
-
// so that it pulls in the variables set within the variables partial.
|
16
|
-
////////////////////////
|
17
|
-
@import 'singularitygs';
|
18
|
-
@import 'toolkit';
|
19
|
-
@import 'sassy-buttons';
|
20
|
-
|
21
|
-
|
22
|
-
////////////////////////
|
23
|
-
// Private Imports
|
24
|
-
//
|
25
|
-
// Any other imports to add. Normally, these do not include any css, but just
|
26
|
-
// functions, variables, etc. to be used by other files.
|
27
|
-
////////////////////////
|
28
|
-
|
29
|
-
@import 'variables';
|
30
|
-
@import 'functions';
|
31
|
-
@import 'mixins';
|
@@ -1,11 +0,0 @@
|
|
1
|
-
/**
|
2
|
-
* Global partials: Typography, forms, site-wide changes.
|
3
|
-
*/
|
4
|
-
|
5
|
-
// We import normalize.css here, so that it inherits the variables already set.
|
6
|
-
@import 'normalize';
|
7
|
-
|
8
|
-
@import 'extendables';
|
9
|
-
@import 'defaults';
|
10
|
-
@import 'type';
|
11
|
-
@import 'forms';
|