compass-aurora-os 0.2.3 → 0.3.0.alpha
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/aurora-os.rb +2 -2
- data/templates/bower/manifest.rb +1 -1
- 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 +1 -3
- data/templates/shared/config.rb.erb +5 -1
- data/templates/shared/template.php.erb +8 -24
- metadata +101 -86
- 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
data/lib/aurora-os.rb
CHANGED
data/templates/bower/manifest.rb
CHANGED
@@ -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';
|
@@ -6,9 +6,7 @@ source 'https://rubygems.org'
|
|
6
6
|
gem 'compass-aurora-os', '<1.0.0'
|
7
7
|
gem 'toolkit', '<2.0.0'
|
8
8
|
gem 'singularitygs', '<2.0.0'
|
9
|
-
|
10
|
-
# we dont want right now.
|
11
|
-
gem 'breakpoint', '<2.2.0'
|
9
|
+
gem 'breakpoint', '<3.0.0'
|
12
10
|
gem 'sassy-buttons', '<1.0.0'
|
13
11
|
gem 'compass-normalize', '<2.0.0'
|
14
12
|
gem 'css_parser', '~>1.3.4'
|
@@ -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,8 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass-aurora-os
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
5
|
-
prerelease:
|
4
|
+
version: 0.3.0.alpha
|
5
|
+
prerelease: 6
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Sam Richard
|
@@ -12,7 +12,7 @@ authors:
|
|
12
12
|
autorequire:
|
13
13
|
bindir: bin
|
14
14
|
cert_chain: []
|
15
|
-
date: 2014-03-
|
15
|
+
date: 2014-03-20 00:00:00.000000000 Z
|
16
16
|
dependencies:
|
17
17
|
- !ruby/object:Gem::Dependency
|
18
18
|
name: sass
|
@@ -21,7 +21,7 @@ dependencies:
|
|
21
21
|
requirements:
|
22
22
|
- - ~>
|
23
23
|
- !ruby/object:Gem::Version
|
24
|
-
version: 3.2.
|
24
|
+
version: 3.2.14
|
25
25
|
type: :runtime
|
26
26
|
prerelease: false
|
27
27
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
requirements:
|
30
30
|
- - ~>
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.2.
|
32
|
+
version: 3.2.14
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: compass
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -51,7 +51,7 @@ dependencies:
|
|
51
51
|
requirement: !ruby/object:Gem::Requirement
|
52
52
|
none: false
|
53
53
|
requirements:
|
54
|
-
- -
|
54
|
+
- - ~>
|
55
55
|
- !ruby/object:Gem::Version
|
56
56
|
version: 1.2.2
|
57
57
|
type: :runtime
|
@@ -59,15 +59,31 @@ dependencies:
|
|
59
59
|
version_requirements: !ruby/object:Gem::Requirement
|
60
60
|
none: false
|
61
61
|
requirements:
|
62
|
-
- -
|
62
|
+
- - ~>
|
63
63
|
- !ruby/object:Gem::Version
|
64
64
|
version: 1.2.2
|
65
|
+
- !ruby/object:Gem::Dependency
|
66
|
+
name: breakpoint
|
67
|
+
requirement: !ruby/object:Gem::Requirement
|
68
|
+
none: false
|
69
|
+
requirements:
|
70
|
+
- - ~>
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: 2.0.1
|
73
|
+
type: :runtime
|
74
|
+
prerelease: false
|
75
|
+
version_requirements: !ruby/object:Gem::Requirement
|
76
|
+
none: false
|
77
|
+
requirements:
|
78
|
+
- - ~>
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: 2.0.1
|
65
81
|
- !ruby/object:Gem::Dependency
|
66
82
|
name: sassy-buttons
|
67
83
|
requirement: !ruby/object:Gem::Requirement
|
68
84
|
none: false
|
69
85
|
requirements:
|
70
|
-
- -
|
86
|
+
- - ~>
|
71
87
|
- !ruby/object:Gem::Version
|
72
88
|
version: 0.2.0
|
73
89
|
type: :runtime
|
@@ -75,49 +91,49 @@ dependencies:
|
|
75
91
|
version_requirements: !ruby/object:Gem::Requirement
|
76
92
|
none: false
|
77
93
|
requirements:
|
78
|
-
- -
|
94
|
+
- - ~>
|
79
95
|
- !ruby/object:Gem::Version
|
80
96
|
version: 0.2.0
|
81
97
|
- !ruby/object:Gem::Dependency
|
82
|
-
name:
|
98
|
+
name: singularitygs
|
83
99
|
requirement: !ruby/object:Gem::Requirement
|
84
100
|
none: false
|
85
101
|
requirements:
|
86
|
-
- -
|
102
|
+
- - ~>
|
87
103
|
- !ruby/object:Gem::Version
|
88
|
-
version: 1.
|
104
|
+
version: 1.1.2
|
89
105
|
type: :runtime
|
90
106
|
prerelease: false
|
91
107
|
version_requirements: !ruby/object:Gem::Requirement
|
92
108
|
none: false
|
93
109
|
requirements:
|
94
|
-
- -
|
110
|
+
- - ~>
|
95
111
|
- !ruby/object:Gem::Version
|
96
|
-
version: 1.
|
112
|
+
version: 1.1.2
|
97
113
|
- !ruby/object:Gem::Dependency
|
98
|
-
name:
|
114
|
+
name: compass-normalize
|
99
115
|
requirement: !ruby/object:Gem::Requirement
|
100
116
|
none: false
|
101
117
|
requirements:
|
102
|
-
- -
|
118
|
+
- - ~>
|
103
119
|
- !ruby/object:Gem::Version
|
104
|
-
version: 1.3
|
120
|
+
version: 1.4.3
|
105
121
|
type: :runtime
|
106
122
|
prerelease: false
|
107
123
|
version_requirements: !ruby/object:Gem::Requirement
|
108
124
|
none: false
|
109
125
|
requirements:
|
110
|
-
- -
|
126
|
+
- - ~>
|
111
127
|
- !ruby/object:Gem::Version
|
112
|
-
version: 1.3
|
128
|
+
version: 1.4.3
|
113
129
|
- !ruby/object:Gem::Dependency
|
114
|
-
name:
|
130
|
+
name: bundler
|
115
131
|
requirement: !ruby/object:Gem::Requirement
|
116
132
|
none: false
|
117
133
|
requirements:
|
118
134
|
- - ! '>='
|
119
135
|
- !ruby/object:Gem::Version
|
120
|
-
version: 1.3.
|
136
|
+
version: 1.3.5
|
121
137
|
type: :runtime
|
122
138
|
prerelease: false
|
123
139
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -125,11 +141,11 @@ dependencies:
|
|
125
141
|
requirements:
|
126
142
|
- - ! '>='
|
127
143
|
- !ruby/object:Gem::Version
|
128
|
-
version: 1.3.
|
144
|
+
version: 1.3.5
|
129
145
|
description: Aurora Subthemes!
|
130
146
|
email:
|
131
147
|
- snugug@gmail.com
|
132
|
-
-
|
148
|
+
- github@iancarrico.com
|
133
149
|
- eric@opensourcery.com
|
134
150
|
- anne@opensourcery.com
|
135
151
|
executables: []
|
@@ -138,81 +154,80 @@ extra_rdoc_files: []
|
|
138
154
|
files:
|
139
155
|
- lib/aurora-os.rb
|
140
156
|
- stylesheets/_aurora.scss
|
141
|
-
- stylesheets/aurora/_singularity-grid.scss
|
142
|
-
- stylesheets/aurora/_susy-grid.scss
|
143
|
-
- stylesheets/aurora/_system.scss
|
144
157
|
- stylesheets/drupal/_system.scss
|
145
158
|
- stylesheets/drupal/_vertical-tabs.scss
|
146
|
-
-
|
147
|
-
-
|
148
|
-
-
|
149
|
-
- templates/
|
150
|
-
- templates/
|
151
|
-
- templates/
|
152
|
-
- templates/
|
153
|
-
- templates/
|
154
|
-
- templates/
|
155
|
-
- templates/
|
156
|
-
- templates/
|
157
|
-
- templates/
|
158
|
-
- templates/
|
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
|
159
|
+
- stylesheets/aurora/_system.scss
|
160
|
+
- stylesheets/aurora/_susy-grid.scss
|
161
|
+
- stylesheets/aurora/_singularity-grid.scss
|
162
|
+
- templates/project/print.scss
|
163
|
+
- templates/project/partials/styleguide/_style-guide.scss
|
164
|
+
- templates/project/partials/global/_base.scss
|
165
|
+
- templates/project/partials/layout/_layout.scss
|
166
|
+
- templates/project/partials/design/_design.scss
|
167
|
+
- templates/project/style.scss
|
168
|
+
- templates/project/manifest.rb
|
169
|
+
- templates/polaris/print.scss
|
170
|
+
- templates/polaris/partials/states/_states.scss
|
171
|
+
- templates/polaris/partials/styleguide/_style-guide.scss
|
184
172
|
- templates/polaris/partials/global/_base.scss
|
185
173
|
- templates/polaris/partials/layouts/_layouts.scss
|
186
174
|
- 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
|
190
175
|
- templates/polaris/style.scss
|
191
|
-
- templates/
|
192
|
-
- templates/
|
193
|
-
- templates/
|
194
|
-
- templates/
|
195
|
-
- templates/
|
196
|
-
- templates/
|
197
|
-
- templates/project/style.scss
|
198
|
-
- templates/shared/_extendables.scss
|
176
|
+
- templates/polaris/manifest.rb
|
177
|
+
- templates/box-sizing/README-behaviors.md
|
178
|
+
- templates/box-sizing/manifest.rb
|
179
|
+
- templates/box-sizing/behaviors/box-sizing/boxsizing.htc
|
180
|
+
- templates/box-sizing/behaviors/box-sizing/boxsizing.php
|
181
|
+
- templates/shared/editorconfig.txt
|
199
182
|
- templates/shared/_functions.scss
|
183
|
+
- templates/shared/gitignore.txt
|
184
|
+
- templates/shared/README-templates.md
|
200
185
|
- templates/shared/_mixins.scss
|
201
|
-
- templates/shared/_variables.scss
|
202
|
-
- templates/shared/aurora.info.erb
|
203
|
-
- templates/shared/bower.json.erb
|
204
186
|
- templates/shared/bowerrc.txt
|
205
|
-
- templates/shared/config.rb.erb
|
206
|
-
- templates/shared/editorconfig.txt
|
207
|
-
- templates/shared/Gemfile.txt
|
208
|
-
- templates/shared/gitignore.txt
|
209
187
|
- templates/shared/Gruntfile.js.erb
|
210
|
-
- templates/shared/
|
188
|
+
- templates/shared/template.php.erb
|
189
|
+
- templates/shared/README-Sass.md
|
190
|
+
- templates/shared/_variables.scss
|
191
|
+
- templates/shared/aurora.info.erb
|
211
192
|
- templates/shared/package.json.erb
|
193
|
+
- templates/shared/jshintrc.txt
|
194
|
+
- templates/shared/bower.json.erb
|
212
195
|
- templates/shared/README-Partials.md
|
213
|
-
- templates/shared/
|
214
|
-
- templates/shared/
|
215
|
-
- templates/shared/
|
196
|
+
- templates/shared/Gemfile.txt
|
197
|
+
- templates/shared/_extendables.scss
|
198
|
+
- templates/shared/config.rb.erb
|
199
|
+
- templates/grunt/manifest.rb
|
200
|
+
- templates/corona/CORONA.md
|
201
|
+
- templates/corona/print.scss
|
202
|
+
- templates/corona/maintenance.scss
|
203
|
+
- templates/corona/config/_variables.scss
|
204
|
+
- templates/corona/config/_config.scss
|
205
|
+
- templates/corona/style.scss
|
206
|
+
- templates/corona/manifest.rb
|
207
|
+
- templates/corona/global/_forms.scss
|
208
|
+
- templates/corona/global/_type.scss
|
209
|
+
- templates/corona/global/_normalize.css.scss
|
210
|
+
- templates/arcturus/tpls/field--field-slideshow-slide.tpl.php.txt
|
211
|
+
- templates/arcturus/tpls/page.tpl.php.txt
|
212
|
+
- templates/arcturus/tpls/views-view.tpl.php.txt
|
213
|
+
- templates/arcturus/tpls/field--field-slideshow-slide-body-text.tpl.php.txt
|
214
|
+
- templates/arcturus/tpls/field--field-slideshow-slide-link.tpl.php.txt
|
215
|
+
- templates/arcturus/gitignore.txt
|
216
|
+
- templates/arcturus/print.scss
|
217
|
+
- templates/arcturus/arcturus.info.erb
|
218
|
+
- templates/arcturus/partials/states/_states.scss
|
219
|
+
- templates/arcturus/partials/styleguide/_style-guide.scss
|
220
|
+
- templates/arcturus/partials/global/_base.scss
|
221
|
+
- templates/arcturus/partials/global/_functions.scss
|
222
|
+
- templates/arcturus/partials/global/_mixins.scss
|
223
|
+
- templates/arcturus/partials/global/_variables.scss
|
224
|
+
- templates/arcturus/partials/global/_extendables.scss
|
225
|
+
- templates/arcturus/partials/layouts/_layouts.scss
|
226
|
+
- templates/arcturus/partials/modules/_modules.scss
|
227
|
+
- templates/arcturus/template.php.erb
|
228
|
+
- templates/arcturus/style.scss
|
229
|
+
- templates/arcturus/manifest.rb
|
230
|
+
- templates/bower/manifest.rb
|
216
231
|
homepage: http://opensourcery.com
|
217
232
|
licenses:
|
218
233
|
- GPL
|
@@ -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';
|