compass-inuit 4.4.1 → 4.5.4
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/stylesheets/_compass-inuit.scss +0 -146
- data/stylesheets/partials/_objects.scss +1 -3
- data/stylesheets/partials/base/_images.scss +4 -2
- data/stylesheets/partials/base/_quotes.scss +59 -11
- data/stylesheets/partials/generic/_normalize.scss +1 -1
- data/stylesheets/partials/objects/_batch.scss +15 -0
- data/stylesheets/partials/objects/_sprite.scss +34 -19
- data/templates/batch/assets/batch/batch.eot +0 -0
- data/templates/batch/assets/batch/batch.svg +360 -0
- data/templates/batch/assets/batch/batch.ttf +0 -0
- data/templates/batch/assets/batch/batch.woff +0 -0
- data/templates/batch/assets/batch/batch_webfont_reference.pdf +0 -0
- data/templates/batch/manifest.rb +21 -0
- data/templates/project/manifest.rb +11 -3
- data/templates/project/sass/_vars.scss +40 -3
- data/templates/project/sass/{your-project.scss → style.scss} +0 -0
- data/templates/project/watch.sh +1 -1
- metadata +11 -4
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,21 @@
|
|
1
|
+
description "Plugin for the batch web font."
|
2
|
+
|
3
|
+
file 'assets/batch/batch.eot'
|
4
|
+
file 'assets/batch/batch.svg'
|
5
|
+
file 'assets/batch/batch.ttf'
|
6
|
+
file 'assets/batch/batch.woff'
|
7
|
+
file 'assets/batch/batch_webfont_reference.pdf'
|
8
|
+
|
9
|
+
help %Q{
|
10
|
+
First, install the plugin to get the font files and pdf symbol reference:
|
11
|
+
|
12
|
+
compass install compass-inuit/batch
|
13
|
+
|
14
|
+
Then @include "compass-inuit/objects/batch" into your project to enable the batch font.
|
15
|
+
|
16
|
+
For more information see the pdf included in assets/batch/batch_webfont_reference.pdf.
|
17
|
+
}
|
18
|
+
|
19
|
+
welcome_message %Q{
|
20
|
+
For more information see the pdf included in assets/batch/batch_webfont_reference.pdf.
|
21
|
+
}
|
@@ -1,10 +1,18 @@
|
|
1
1
|
# Make sure you list all the project template files here in the manifest.
|
2
|
+
stylesheet 'sass/style.scss', :media => 'screen, projection'
|
2
3
|
stylesheet 'sass/_vars.scss'
|
3
|
-
stylesheet 'sass/your-project.scss', :media => 'screen, projection'
|
4
4
|
html 'index.html'
|
5
5
|
file 'config.rb'
|
6
6
|
file 'watch.sh'
|
7
7
|
|
8
|
+
help %Q{
|
9
|
+
Please see the Github project for all documentation and tutorials:
|
10
|
+
|
11
|
+
http://github.com/stephenway/compass-inuit
|
12
|
+
}
|
13
|
+
|
8
14
|
welcome_message %Q{
|
9
|
-
|
10
|
-
|
15
|
+
Please see the Github project for all documentation and tutorials:
|
16
|
+
|
17
|
+
http://github.com/stephenway/compass-inuit
|
18
|
+
}
|
@@ -12,16 +12,25 @@
|
|
12
12
|
* Debug mode will visually highlight any potential markup/accessibility quirks
|
13
13
|
* in the browser. Set to `true` or `false`.
|
14
14
|
*/
|
15
|
-
$debug-mode: false;
|
15
|
+
$debug-mode: false!default;
|
16
16
|
|
17
17
|
|
18
18
|
/**
|
19
19
|
* Do you want all elements to adopt `box-sizing:border-box;` as per
|
20
20
|
* paulirish.com/2012/box-sizing-border-box-ftw ?
|
21
21
|
*/
|
22
|
-
$global-border-box: true;
|
22
|
+
$global-border-box: true!default;
|
23
23
|
|
24
24
|
|
25
|
+
/**
|
26
|
+
* Would you like to use Adam Whitcroft’s Batch icon font, as per:
|
27
|
+
* adamwhitcroft.com/batch ?
|
28
|
+
*/
|
29
|
+
$batch: false!default;
|
30
|
+
|
31
|
+
|
32
|
+
/**
|
33
|
+
|
25
34
|
/**
|
26
35
|
* Base stuff
|
27
36
|
*/
|
@@ -37,13 +46,20 @@ $brand-round: 4px!default;
|
|
37
46
|
|
38
47
|
/**
|
39
48
|
* Responsiveness?
|
40
|
-
* Tell inuit.css when breakpoints start.
|
41
49
|
*/
|
42
50
|
$responsive: true!default;
|
51
|
+
$flexible-media: true!default;
|
43
52
|
|
53
|
+
/**
|
54
|
+
* Responsive push and pull produce a LOT of code, only turn them on if you
|
55
|
+
* definitely need them.
|
56
|
+
*/
|
44
57
|
$responsive-push: false!default;
|
45
58
|
$responsive-pull: false!default;
|
46
59
|
|
60
|
+
/**
|
61
|
+
* Tell inuit.css when breakpoints start.
|
62
|
+
*/
|
47
63
|
$lap-start: 481px!default;
|
48
64
|
$desk-start: 1024px!default;
|
49
65
|
|
@@ -66,6 +82,27 @@ $milli-size: 12px!default;
|
|
66
82
|
$micro-size: 10px!default;
|
67
83
|
|
68
84
|
|
85
|
+
/**
|
86
|
+
* English quote marks?
|
87
|
+
*/
|
88
|
+
$english-quotes: true!default;
|
89
|
+
|
90
|
+
/**
|
91
|
+
* If you want English quotes then please do not edit these; they’re only here
|
92
|
+
* because Sass needs them.
|
93
|
+
*/
|
94
|
+
$open-quote: null;
|
95
|
+
$close-quote: null;
|
96
|
+
|
97
|
+
/**
|
98
|
+
* If you need non-English quotes, please alter the following values accordingly:
|
99
|
+
*/
|
100
|
+
@if $english-quotes != true{
|
101
|
+
$open-quote: «;
|
102
|
+
$close-quote: »;
|
103
|
+
}
|
104
|
+
|
105
|
+
|
69
106
|
/**
|
70
107
|
* Brand stuff
|
71
108
|
*/
|
File without changes
|
data/templates/project/watch.sh
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: compass-inuit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.4
|
4
|
+
version: 4.5.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-01-
|
12
|
+
date: 2013-01-06 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: sass
|
@@ -80,6 +80,7 @@ files:
|
|
80
80
|
- stylesheets/partials/generic/_shared.scss
|
81
81
|
- stylesheets/partials/generic/_widths.scss
|
82
82
|
- stylesheets/partials/objects/_arrows.scss
|
83
|
+
- stylesheets/partials/objects/_batch.scss
|
83
84
|
- stylesheets/partials/objects/_block-list.scss
|
84
85
|
- stylesheets/partials/objects/_breadcrumb.scss
|
85
86
|
- stylesheets/partials/objects/_buttons.scss
|
@@ -103,11 +104,17 @@ files:
|
|
103
104
|
- stylesheets/partials/objects/_sprite.scss
|
104
105
|
- stylesheets/partials/objects/_stats.scss
|
105
106
|
- stylesheets/partials/objects/_this-or-this.scss
|
107
|
+
- templates/batch/assets/batch/batch.eot
|
108
|
+
- templates/batch/assets/batch/batch.svg
|
109
|
+
- templates/batch/assets/batch/batch.ttf
|
110
|
+
- templates/batch/assets/batch/batch.woff
|
111
|
+
- templates/batch/assets/batch/batch_webfont_reference.pdf
|
112
|
+
- templates/batch/manifest.rb
|
106
113
|
- templates/project/config.rb
|
107
114
|
- templates/project/index.html
|
108
115
|
- templates/project/manifest.rb
|
109
116
|
- templates/project/sass/_vars.scss
|
110
|
-
- templates/project/sass/
|
117
|
+
- templates/project/sass/style.scss
|
111
118
|
- templates/project/watch.sh
|
112
119
|
homepage: http://github.com/stephenway/compass-intuit
|
113
120
|
licenses: []
|
@@ -129,7 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
129
136
|
version: '0'
|
130
137
|
requirements: []
|
131
138
|
rubyforge_project:
|
132
|
-
rubygems_version: 1.8.
|
139
|
+
rubygems_version: 1.8.23
|
133
140
|
signing_key:
|
134
141
|
specification_version: 3
|
135
142
|
summary: inuit.css for compass—cooler than a polar bear’s toenails
|