sassy-buttons 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "sassy-buttons"
5
- s.version = "0.1.2"
5
+ s.version = "0.1.3"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Jared Hardy"]
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.description = "Sassy CSS3 buttons using Compass./"
11
11
  s.email = "jared@jaredhardy.com"
12
12
  s.extra_rdoc_files = ["LICENSE", "README.mkdn", "lib/sassy-buttons.rb"]
13
- s.files = ["Gemfile", "LICENSE", "Manifest", "README.mkdn", "VERSION", "lib/sassy-buttons.rb", "sassy-buttons.gemspec", "stylesheets/_sassy-buttons.sass", "stylesheets/sassy-buttons/_sassy-button-gradients.sass", "stylesheets/sassy-buttons/_sassy-button-pseudo-states.sass", "stylesheets/sassy-buttons/_sassy-button-shadows.sass", "stylesheets/sassy-buttons/_sassy-button-styles.sass", "stylesheets/sassy-buttons/_sassy-button-text.sass", "templates/project/_sassybuttons.sass", "templates/project/manifest.rb", "templates/project/sassy-ie-overlay.png", "Rakefile"]
13
+ s.files = ["Gemfile", "LICENSE", "Manifest", "README.mkdn", "VERSION", "lib/sassy-buttons.rb", "sassy-buttons.gemspec", "stylesheets/_sassy-buttons.sass", "stylesheets/sassy-buttons/_sassy-button-gradients.sass", "stylesheets/sassy-buttons/_sassy-button-pseudo-states.sass", "stylesheets/sassy-buttons/_sassy-button-shadows.sass", "stylesheets/sassy-buttons/_sassy-button-styles.sass", "stylesheets/sassy-buttons/_sassy-button-text.sass", "templates/project/_sassybuttons.sass", "templates/project/manifest.rb", "Rakefile"]
14
14
  s.homepage = "http://jaredhardy.com/"
15
15
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Sassy-buttons", "--main", "README.mkdn"]
16
16
  s.require_paths = ["lib"]
@@ -9,9 +9,9 @@
9
9
  @if $lightness > 75
10
10
  $brightnessDivsor : 2
11
11
 
12
- // Add IE Gradient PNG if $sb-ie-support is true else just add the background color
12
+ // user a simple filter gradient if $sb-ie-support is true
13
13
  @if $ie
14
- background: image-url("sassy-ie-overlay.png") repeat-x bottom left $base-color
14
+ @include filter-gradient($first-color, darken($first-color, 20%))
15
15
  @else
16
16
  background-color: $base-color
17
17
 
@@ -14,7 +14,7 @@ $sb-text-color: #fff // Button font color.
14
14
  $sb-text-style: "inset" // Style of button text, can be "inset" or "raised" or false.
15
15
  $sb-gradient-style: "simple" // Gradient style of button, can be "flat", "glass", "matte", "shiny", or "simple".
16
16
  $sb-pseudo-states: true // Automatically generate pseudo state styles.
17
- $sb-ie-support: true // Add gradient png for IE 7+
17
+ $sb-ie-support: true // Add filter-gradient for IE 7+
18
18
 
19
19
  // Mixin that gets included when calling the sassy-button-structure if you need any
20
20
  // styles applied to all your sassy buttons, add it here.
@@ -28,4 +28,4 @@ $sb-ie-support: true // Add gradient png for IE 7+
28
28
  // * -----------------------------------------
29
29
  // * @include sassy-button(gradient-style, border-radius, font-size, first-color, second-color, text-color, text-style, auto-states, ie-support);
30
30
  // * @include sassy-button-structure(-border-radius, font-size, padding);
31
- // * @include sassy-button-gradient(gradient-style, first-color, second-color, text-color, text-style, auto-states, ie-support);
31
+ // * @include sassy-button-gradient(gradient-style, first-color, second-color, text-color, text-style, auto-states, ie-support);
@@ -1,17 +1,16 @@
1
1
  # Make sure you list all the project template files here in the manifest.
2
2
  stylesheet '_sassybuttons.sass', :media => 'screen, projection'
3
- image 'sassy-ie-overlay.png'
4
3
 
5
4
  description "Sassy Buttons"
6
5
 
7
6
  help %Q{
8
-
9
- Documentation coming shortly
10
-
7
+ Please see the Sassy Buttons website for all documentation and tutorials:
8
+
9
+ http://www.jaredhardy.com/sassy-buttons
11
10
  }
12
11
 
13
- welcome_message %Q{
14
-
15
- Sassy Buttons
16
-
12
+ help %Q{
13
+ Please see the Sassy Buttons website for all documentation and tutorials:
14
+
15
+ http://www.jaredhardy.com/sassy-buttons
17
16
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sassy-buttons
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -67,7 +67,6 @@ files:
67
67
  - stylesheets/sassy-buttons/_sassy-button-text.sass
68
68
  - templates/project/_sassybuttons.sass
69
69
  - templates/project/manifest.rb
70
- - templates/project/sassy-ie-overlay.png
71
70
  - Rakefile
72
71
  homepage: http://jaredhardy.com/
73
72
  licenses: []
Binary file