compass-themes 0.0.1 → 0.0.3
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/README.mdown +3 -3
- data/compass_themes.gemspec +2 -2
- data/lib/compass-themes/stylesheets/basic/_mixins.scss +3 -3
- metadata +6 -8
data/README.mdown
CHANGED
|
@@ -11,7 +11,7 @@ Rails 3 is only supported at the moment but rake tasks are on there way for othe
|
|
|
11
11
|
## Usage
|
|
12
12
|
|
|
13
13
|
For now until I'm ready to release a version in your Gemfile
|
|
14
|
-
gem 'compass-themes',
|
|
14
|
+
gem 'compass-themes', '~> 0.0.1'
|
|
15
15
|
|
|
16
16
|
`rake compass:themes` will list all themes available
|
|
17
17
|
|
|
@@ -32,8 +32,8 @@ Rails 3 is only supported at the moment but rake tasks are on there way for othe
|
|
|
32
32
|
|
|
33
33
|
### Creating Themes
|
|
34
34
|
|
|
35
|
-
* Themes consist of a layout file in `lib/compass-themes/templates/`
|
|
36
|
-
* Sass or Scss for a layout is stored in `lib/compass-themes/stylesheets/<layout>.theme.s(css|ass)/`
|
|
35
|
+
* Themes consist of a haml layout file in `lib/compass-themes/templates/`
|
|
36
|
+
* Sass or Scss for a layout is stored in `lib/compass-themes/stylesheets/<layout>/<theme name>.theme.s(css|ass)/`
|
|
37
37
|
* Stylesheets that are not the base stylesheet for a theme need to be have the suffix `theme.scss` in order to be seen by the installation tools
|
|
38
38
|
* Its perfectly ok to have one stylesheet per layout
|
|
39
39
|
|
data/compass_themes.gemspec
CHANGED
|
@@ -2,7 +2,7 @@ Gem::Specification.new do |s|
|
|
|
2
2
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
3
3
|
|
|
4
4
|
s.name = %q{compass-themes}
|
|
5
|
-
s.version = '0.0.
|
|
5
|
+
s.version = '0.0.3'
|
|
6
6
|
s.platform = Gem::Platform::RUBY
|
|
7
7
|
|
|
8
8
|
s.authors = ["Scott Davis"]
|
|
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
|
|
|
13
13
|
s.files = `git ls-files`.split("\n")
|
|
14
14
|
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
|
|
15
15
|
s.require_path = 'lib'
|
|
16
|
-
s.homepage = %q{
|
|
16
|
+
s.homepage = %q{https://github.com/jetviper21/compass-themes}
|
|
17
17
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
18
18
|
s.required_rubygems_version = ">= 1.3.6"
|
|
19
19
|
s.add_development_dependency "bundler", ">= 1.0.0"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
/**
|
|
19
19
|
Out puts the styles needed for a flash box
|
|
20
20
|
**/
|
|
21
|
-
@mixin theme_flash($flash_id
|
|
21
|
+
@mixin theme_flash($flash_id:'flash') {
|
|
22
22
|
.#{$flash_id} {
|
|
23
23
|
padding:5px 8px;
|
|
24
24
|
margin: 10px 0;
|
|
@@ -63,7 +63,7 @@
|
|
|
63
63
|
}
|
|
64
64
|
//$table-row-color
|
|
65
65
|
//$table-alt-row-color
|
|
66
|
-
@mixin theme_table($width
|
|
66
|
+
@mixin theme_table($width:'600px') {
|
|
67
67
|
table {
|
|
68
68
|
color:$table-text-color;
|
|
69
69
|
width:$width;
|
|
@@ -87,7 +87,7 @@
|
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
89
|
|
|
90
|
-
@mixin error_explation($root
|
|
90
|
+
@mixin error_explation($root:".error_messages") {
|
|
91
91
|
.fieldWithErrors {
|
|
92
92
|
display:inline;
|
|
93
93
|
}
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: compass-themes
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 25
|
|
5
5
|
prerelease:
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 0.0.
|
|
9
|
+
- 3
|
|
10
|
+
version: 0.0.3
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Scott Davis
|
|
@@ -15,8 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2011-
|
|
19
|
-
default_executable:
|
|
18
|
+
date: 2011-04-13 00:00:00 Z
|
|
20
19
|
dependencies:
|
|
21
20
|
- !ruby/object:Gem::Dependency
|
|
22
21
|
name: bundler
|
|
@@ -150,8 +149,7 @@ files:
|
|
|
150
149
|
- spec/compass_spec.rb
|
|
151
150
|
- spec/generator_helper_spec.rb
|
|
152
151
|
- spec/spec_helper.rb
|
|
153
|
-
|
|
154
|
-
homepage: http://github.com/jetviper21/
|
|
152
|
+
homepage: https://github.com/jetviper21/compass-themes
|
|
155
153
|
licenses: []
|
|
156
154
|
|
|
157
155
|
post_install_message:
|
|
@@ -182,7 +180,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
182
180
|
requirements: []
|
|
183
181
|
|
|
184
182
|
rubyforge_project:
|
|
185
|
-
rubygems_version: 1.
|
|
183
|
+
rubygems_version: 1.7.2
|
|
186
184
|
signing_key:
|
|
187
185
|
specification_version: 3
|
|
188
186
|
summary: Themes using compass
|