toolkit 1.3.8 → 2.0.0.alpha.1
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 +7 -7
- data/lib/toolkit.rb +1 -13
- data/stylesheets/_toolkit.scss +12 -68
- data/stylesheets/toolkit/_clearfix.scss +11 -95
- data/stylesheets/toolkit/_colors.scss +89 -1
- data/stylesheets/toolkit/_element-query.scss +13 -5
- data/stylesheets/toolkit/_fonts.scss +26 -8
- data/stylesheets/toolkit/_intrinsic-ratio.scss +15 -10
- data/stylesheets/toolkit/_kickstart.scss +14 -0
- data/stylesheets/toolkit/_nested-context.scss +8 -7
- data/stylesheets/toolkit/_pe.scss +19 -226
- data/stylesheets/toolkit/_selectors.scss +0 -25
- data/stylesheets/toolkit/_settings.scss +90 -0
- data/stylesheets/toolkit/_triangle.scss +7 -2
- data/stylesheets/toolkit/_viewport.scss +6 -16
- metadata +46 -105
- data/stylesheets/_toolkit-no-css.scss +0 -69
- data/stylesheets/toolkit/_border-box.scss +0 -6
- data/stylesheets/toolkit/_box-sizing.scss +0 -42
- data/stylesheets/toolkit/_carousel.scss +0 -155
- data/stylesheets/toolkit/_children-of-ie.scss +0 -26
- data/stylesheets/toolkit/_colours.scss +0 -102
- data/stylesheets/toolkit/_debug.scss +0 -25
- data/stylesheets/toolkit/_equal-height-columns.scss +0 -56
- data/stylesheets/toolkit/_fluid-media.scss +0 -7
- data/stylesheets/toolkit/_vertical-center.scss +0 -23
- data/templates/box-sizing/behaviors/box-sizing/boxsizing.htc +0 -399
- data/templates/box-sizing/behaviors/box-sizing/boxsizing.php +0 -23
- data/templates/box-sizing/manifest.rb +0 -4
- data/templates/project/_base.scss +0 -26
- data/templates/project/manifest.rb +0 -57
- data/templates/rwd/_base.scss +0 -27
- data/templates/rwd/manifest.rb +0 -60
- data/templates/shared/_design.scss +0 -9
- data/templates/shared/_extendables.scss +0 -6
- data/templates/shared/_functions.scss +0 -5
- data/templates/shared/_ie-design.scss +0 -9
- data/templates/shared/_ie-layout.scss +0 -9
- data/templates/shared/_layout.scss +0 -9
- data/templates/shared/_mixins.scss +0 -5
- data/templates/shared/_print-design.scss +0 -9
- data/templates/shared/_print-layout.scss +0 -9
- data/templates/shared/_style-guide.scss +0 -10
- data/templates/shared/_variables.scss +0 -5
- data/templates/shared/ie.scss +0 -32
- data/templates/shared/print.scss +0 -28
- data/templates/shared/style.scss +0 -31
@@ -1,23 +0,0 @@
|
|
1
|
-
<?php
|
2
|
-
/*
|
3
|
-
This file is a wrapper, for use in PHP environments, which serves boxsizing.htc using the
|
4
|
-
correct content-type, so that IE will recognize it as a behavior. Simply specify the
|
5
|
-
behavior property to fetch this .php file instead of the .htc directly:
|
6
|
-
|
7
|
-
//
|
8
|
-
// Reset box sizing
|
9
|
-
//
|
10
|
-
* {
|
11
|
-
margin: 0;
|
12
|
-
@include box-sizing(border-box);
|
13
|
-
*behavior: url(/sites/all/libraries/boxsizing/boxsizing.php);
|
14
|
-
}
|
15
|
-
|
16
|
-
This is only necessary when the web server is not configured to serve .htc files with
|
17
|
-
the text/x-component content-type, and cannot easily be configured to do so (as is the
|
18
|
-
case with some shared hosting providers).
|
19
|
-
*/
|
20
|
-
|
21
|
-
header( 'Content-type: text/x-component' );
|
22
|
-
include( 'boxsizing.htc' );
|
23
|
-
?>
|
@@ -1,26 +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
|
-
|
9
|
-
////////////////////////
|
10
|
-
// Compass Imports
|
11
|
-
//
|
12
|
-
// Toolkit include @import 'compass' so you don't need to.
|
13
|
-
////////////////////////
|
14
|
-
|
15
|
-
////////////////////////
|
16
|
-
// Compass Extensions
|
17
|
-
////////////////////////
|
18
|
-
@import 'toolkit';
|
19
|
-
|
20
|
-
////////////////////////
|
21
|
-
// Private Imports
|
22
|
-
////////////////////////
|
23
|
-
@import 'variables';
|
24
|
-
@import 'functions';
|
25
|
-
@import 'mixins';
|
26
|
-
@import 'extendables';
|
@@ -1,57 +0,0 @@
|
|
1
|
-
description "Toolkit Kickstart"
|
2
|
-
|
3
|
-
# Stylesheets
|
4
|
-
file '../shared/style.scss', :like => :stylesheet, :media => 'screen, projection', :to => 'style.scss'
|
5
|
-
|
6
|
-
file '_base.scss', :like => :stylesheet, :to => 'partials/global/_base.scss'
|
7
|
-
file '../shared/_variables.scss', :like => :stylesheet, :to => 'partials/global/_variables.scss'
|
8
|
-
file '../shared/_functions.scss', :like => :stylesheet, :to => 'partials/global/_functions.scss'
|
9
|
-
file '../shared/_mixins.scss', :like => :stylesheet, :to => 'partials/global/_mixins.scss'
|
10
|
-
file '../shared/_extendables.scss', :like => :stylesheet, :to => 'partials/global/_extendables.scss'
|
11
|
-
|
12
|
-
file '../shared/_style-guide.scss', :like => :stylesheet, :to => 'partials/styleguide/_style-guide.scss'
|
13
|
-
|
14
|
-
file '../shared/_layout.scss', :like => :stylesheet, :to => 'partials/layout/_layout.scss'
|
15
|
-
file '../shared/_ie-layout.scss', :like => :stylesheet, :to => 'partials/layout/_ie-layout.scss'
|
16
|
-
file '../shared/_print-layout.scss', :like => :stylesheet, :to => 'partials/layout/_print-layout.scss'
|
17
|
-
|
18
|
-
file '../shared/_design.scss', :like => :stylesheet, :to => 'partials/design/_design.scss'
|
19
|
-
file '../shared/_ie-design.scss', :like => :stylesheet, :to => 'partials/design/_ie-design.scss'
|
20
|
-
file '../shared/_print-design.scss', :like => :stylesheet, :to => 'partials/design/_print-design.scss'
|
21
|
-
|
22
|
-
file '../shared/print.scss', :like => :stylesheet, :media => 'print', :to => 'print.scss'
|
23
|
-
file '../shared/ie.scss', :like => :stylesheet, :media => 'screen, projection', :condition => "lte IE 8", :to => 'ie.scss'
|
24
|
-
|
25
|
-
help %Q{
|
26
|
-
Please contact Sam Richard or Mason Wendell with questions:
|
27
|
-
|
28
|
-
sam@snug.ug
|
29
|
-
mason@zivtech.com
|
30
|
-
}
|
31
|
-
|
32
|
-
welcome_message %Q{
|
33
|
-
|
34
|
-
Toolkit Kickstart
|
35
|
-
|
36
|
-
Welcome to Toolkit! Provided are the basic tools needed to kickstart a new Sass project tailor made to your needs! Remember, tools and best practices are always changing, so keep up to date!
|
37
|
-
|
38
|
-
The following is included in this build:
|
39
|
-
Compass Extensions:
|
40
|
-
* Toolkit
|
41
|
-
|
42
|
-
Include the following in your <head> tag:
|
43
|
-
|
44
|
-
<meta content='width=device-width, initial-scale=1.0' name='viewport' />
|
45
|
-
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible' />
|
46
|
-
<!--[if lt IE 9 ]> <script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.2/CFInstall.min.js"></script><script>window.attachEvent("onload",function(){CFInstall.check({mode:"overlay"})})</script> <![endif]-->
|
47
|
-
<!-- CSS -->
|
48
|
-
<link href='path/to/css/style.css?v=1' rel='stylesheet' />
|
49
|
-
<!-- All JavaScript at the bottom, except for Modernizr. -->
|
50
|
-
|
51
|
-
Include the following, and all other JavaScript, including any JavaScript frameworks you may be using like jQuery, right before your closing </body> tag:
|
52
|
-
|
53
|
-
<!-- Javascript at the bottom for fast page loading -->
|
54
|
-
|
55
|
-
|
56
|
-
}
|
57
|
-
|
data/templates/rwd/_base.scss
DELETED
@@ -1,27 +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
|
-
|
9
|
-
////////////////////////
|
10
|
-
// Compass Imports
|
11
|
-
//
|
12
|
-
// Toolkit include @import 'compass' so you don't need to.
|
13
|
-
////////////////////////
|
14
|
-
|
15
|
-
////////////////////////
|
16
|
-
// Compass Extensions
|
17
|
-
////////////////////////
|
18
|
-
@import 'toolkit';
|
19
|
-
@import 'singularitygs';
|
20
|
-
|
21
|
-
////////////////////////
|
22
|
-
// Private Imports
|
23
|
-
////////////////////////
|
24
|
-
@import 'variables';
|
25
|
-
@import 'functions';
|
26
|
-
@import 'mixins';
|
27
|
-
@import 'extendables';
|
data/templates/rwd/manifest.rb
DELETED
@@ -1,60 +0,0 @@
|
|
1
|
-
description "Responsive Web Design Kickstart"
|
2
|
-
|
3
|
-
# Stylesheets
|
4
|
-
file '../shared/style.scss', :like => :stylesheet, :media => 'screen, projection', :to => 'style.scss'
|
5
|
-
|
6
|
-
file '_base.scss', :like => :stylesheet, :to => 'partials/global/_base.scss'
|
7
|
-
file '../shared/_variables.scss', :like => :stylesheet, :to => 'partials/global/_variables.scss'
|
8
|
-
file '../shared/_functions.scss', :like => :stylesheet, :to => 'partials/global/_functions.scss'
|
9
|
-
file '../shared/_mixins.scss', :like => :stylesheet, :to => 'partials/global/_mixins.scss'
|
10
|
-
file '../shared/_extendables.scss', :like => :stylesheet, :to => 'partials/global/_extendables.scss'
|
11
|
-
|
12
|
-
file '../shared/_style-guide.scss', :like => :stylesheet, :to => 'partials/styleguide/_style-guide.scss'
|
13
|
-
|
14
|
-
file '../shared/_layout.scss', :like => :stylesheet, :to => 'partials/layout/_layout.scss'
|
15
|
-
file '../shared/_ie-layout.scss', :like => :stylesheet, :to => 'partials/layout/_ie-layout.scss'
|
16
|
-
file '../shared/_print-layout.scss', :like => :stylesheet, :to => 'partials/layout/_print-layout.scss'
|
17
|
-
|
18
|
-
file '../shared/_design.scss', :like => :stylesheet, :to => 'partials/design/_design.scss'
|
19
|
-
file '../shared/_ie-design.scss', :like => :stylesheet, :to => 'partials/design/_ie-design.scss'
|
20
|
-
file '../shared/_print-design.scss', :like => :stylesheet, :to => 'partials/design/_print-design.scss'
|
21
|
-
|
22
|
-
file '../shared/print.scss', :like => :stylesheet, :media => 'print', :to => 'print.scss'
|
23
|
-
file '../shared/ie.scss', :like => :stylesheet, :media => 'screen, projection', :condition => "lte IE 8", :to => 'ie.scss'
|
24
|
-
|
25
|
-
help %Q{
|
26
|
-
Please contact Sam Richard or Mason Wendell with questions:
|
27
|
-
|
28
|
-
sam@snug.ug
|
29
|
-
mason@zivtech.com
|
30
|
-
}
|
31
|
-
|
32
|
-
welcome_message %Q{
|
33
|
-
|
34
|
-
Responsive Web Design Kickstart
|
35
|
-
|
36
|
-
Welcome to Responsive Web Design Kickstart! Provided are the basic tools needed to kickstart a new Responsive Web Design project tailor made to your needs! Remember, tools and best practices are always changing, so keep up to date!
|
37
|
-
|
38
|
-
The following is included in this build:
|
39
|
-
Compass Extensions:
|
40
|
-
* Singularity
|
41
|
-
* Toolkit
|
42
|
-
|
43
|
-
Include the following in your <head> tag:
|
44
|
-
|
45
|
-
<meta content='width=device-width, initial-scale=1.0' name='viewport' />
|
46
|
-
<meta content='IE=edge,chrome=1' http-equiv='X-UA-Compatible' />
|
47
|
-
<!--[if lt IE 9 ]> <script src="//ajax.googleapis.com/ajax/libs/chrome-frame/1.0.2/CFInstall.min.js"></script><script>window.attachEvent("onload",function(){CFInstall.check({mode:"overlay"})})</script> <![endif]-->
|
48
|
-
<!-- CSS -->
|
49
|
-
<link href='path/to/css/style.css?v=1' rel='stylesheet' />
|
50
|
-
<!-- All JavaScript at the bottom, except for Modernizr. -->
|
51
|
-
|
52
|
-
|
53
|
-
Include the following, and all other JavaScript, including any JavaScript frameworks you may be using like jQuery, right before your closing </body> tag:
|
54
|
-
|
55
|
-
<!-- Javascript at the bottom for fast page loading -->
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
}
|
60
|
-
|
@@ -1,9 +0,0 @@
|
|
1
|
-
////////////////////////
|
2
|
-
// Design Partials
|
3
|
-
//
|
4
|
-
// Seperate your layout from design, building sub folders and partials
|
5
|
-
// in this folder, with everything being imported, in casading order,
|
6
|
-
// into this file.
|
7
|
-
//
|
8
|
-
// All styling, non box model properties go here
|
9
|
-
////////////////////////
|
@@ -1,9 +0,0 @@
|
|
1
|
-
////////////////////////
|
2
|
-
// IE Design Partials
|
3
|
-
//
|
4
|
-
// Seperate your layout from design, building sub folders and partials
|
5
|
-
// in this folder, with everything being imported, in casading order,
|
6
|
-
// into this file. This is for Internet Explorer's Use.
|
7
|
-
//
|
8
|
-
// All styling, non box model properties go here
|
9
|
-
////////////////////////
|
@@ -1,9 +0,0 @@
|
|
1
|
-
////////////////////////
|
2
|
-
// IE Layout Partials
|
3
|
-
//
|
4
|
-
// Seperate your layout from design, building sub folders and partials
|
5
|
-
// in this folder, with everything being imported, in casading order,
|
6
|
-
// into this file. This is for Internet Explorer's Use
|
7
|
-
//
|
8
|
-
// All box model properties go here
|
9
|
-
////////////////////////
|
@@ -1,9 +0,0 @@
|
|
1
|
-
////////////////////////
|
2
|
-
// Layout Partials
|
3
|
-
//
|
4
|
-
// Seperate your layout from design, building sub folders and partials
|
5
|
-
// in this folder, with everything being imported, in casading order,
|
6
|
-
// into this file.
|
7
|
-
//
|
8
|
-
// All box model properties go here
|
9
|
-
////////////////////////
|
@@ -1,9 +0,0 @@
|
|
1
|
-
////////////////////////
|
2
|
-
// Print Design Partials
|
3
|
-
//
|
4
|
-
// Seperate your layout from design, building sub folders and partials
|
5
|
-
// in this folder, with everything being imported, in casading order,
|
6
|
-
// into this file. This is for Printed files.
|
7
|
-
//
|
8
|
-
// All styling, non box model properties go here
|
9
|
-
////////////////////////
|
@@ -1,9 +0,0 @@
|
|
1
|
-
////////////////////////
|
2
|
-
// Print Layout Partials
|
3
|
-
//
|
4
|
-
// Seperate your layout from design, building sub folders and partials
|
5
|
-
// in this folder, with everything being imported, in casading order,
|
6
|
-
// into this file. This is for Print files.
|
7
|
-
//
|
8
|
-
// All box model properties go here
|
9
|
-
////////////////////////
|
@@ -1,10 +0,0 @@
|
|
1
|
-
////////////////////////
|
2
|
-
// Style Guide Partials
|
3
|
-
//
|
4
|
-
// Write a Style Guide for your website, building sub folders and partials
|
5
|
-
// in this folder, with everything being imported, in casading order,
|
6
|
-
// into this file.
|
7
|
-
//
|
8
|
-
// All Style Guide selectors should go in here, regardless of layout or design
|
9
|
-
// (but separating the two in here is a good idea).
|
10
|
-
////////////////////////
|
data/templates/shared/ie.scss
DELETED
@@ -1,32 +0,0 @@
|
|
1
|
-
////////////////////////
|
2
|
-
// IE File
|
3
|
-
//
|
4
|
-
// This file gets turned into ie.css. This file should really
|
5
|
-
// hold nothing except for imports of your base, layout, and design
|
6
|
-
// partials.
|
7
|
-
// This file is styles specific to IE 8 and below.
|
8
|
-
////////////////////////
|
9
|
-
$legacy-support-for-ie6: false;
|
10
|
-
$legacy-support-for-ie7: false;
|
11
|
-
$legacy-support-for-ie8: true;
|
12
|
-
$legacy-support-for-mozilla: false;
|
13
|
-
|
14
|
-
////////////////////////
|
15
|
-
// Base Import
|
16
|
-
////////////////////////
|
17
|
-
@import 'partials/global/base';
|
18
|
-
|
19
|
-
////////////////////////
|
20
|
-
// Import Style Guide
|
21
|
-
////////////////////////
|
22
|
-
@import 'partials/styleguide/style-guide';
|
23
|
-
|
24
|
-
////////////////////////
|
25
|
-
// Import Layout
|
26
|
-
////////////////////////
|
27
|
-
@import 'partials/layout/ie-layout';
|
28
|
-
|
29
|
-
////////////////////////
|
30
|
-
// Import Design
|
31
|
-
////////////////////////
|
32
|
-
@import 'partials/design/ie-design';
|
data/templates/shared/print.scss
DELETED
@@ -1,28 +0,0 @@
|
|
1
|
-
////////////////////////
|
2
|
-
// Print File
|
3
|
-
//
|
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.
|
7
|
-
// This file is styles specific to Printed files.
|
8
|
-
////////////////////////
|
9
|
-
|
10
|
-
////////////////////////
|
11
|
-
// Base Import
|
12
|
-
////////////////////////
|
13
|
-
@import 'partials/global/base';
|
14
|
-
|
15
|
-
////////////////////////
|
16
|
-
// Import Style Guide
|
17
|
-
////////////////////////
|
18
|
-
@import 'partials/styleguide/style-guide';
|
19
|
-
|
20
|
-
////////////////////////
|
21
|
-
// Import Layout
|
22
|
-
////////////////////////
|
23
|
-
@import 'partials/layout/print-layout';
|
24
|
-
|
25
|
-
////////////////////////
|
26
|
-
// Import Design
|
27
|
-
////////////////////////
|
28
|
-
@import 'partials/design/print-design';
|
data/templates/shared/style.scss
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
////////////////////////
|
2
|
-
// Style File
|
3
|
-
//
|
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.
|
7
|
-
////////////////////////
|
8
|
-
$legacy-support-for-ie6: false;
|
9
|
-
$legacy-support-for-ie7: false;
|
10
|
-
$legacy-support-for-ie8: false;
|
11
|
-
$legacy-support-for-mozilla: false;
|
12
|
-
|
13
|
-
////////////////////////
|
14
|
-
// Base Import
|
15
|
-
////////////////////////
|
16
|
-
@import 'partials/global/base';
|
17
|
-
|
18
|
-
////////////////////////
|
19
|
-
// Import Style Guide
|
20
|
-
////////////////////////
|
21
|
-
@import 'partials/styleguide/style-guide';
|
22
|
-
|
23
|
-
////////////////////////
|
24
|
-
// Import Layout
|
25
|
-
////////////////////////
|
26
|
-
@import 'partials/layout/layout';
|
27
|
-
|
28
|
-
////////////////////////
|
29
|
-
// Import Design
|
30
|
-
////////////////////////
|
31
|
-
@import 'partials/design/design';
|