Skip to content

Commit

Permalink
Bumped to 0.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
alienresident committed Apr 15, 2014
1 parent 2e001c1 commit 943c8ab
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 8 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Expand Up @@ -12,4 +12,5 @@
* **0.4** Moved base and modules from stylesheets folder to template files
* **0.4.1** Moved remaining functions, extendables, and mixins from stylesheets folder to template files
* **0.4.2** Fixed typo and dependencies
* **0.4.3** Tweaked dependencies
* **0.4.3** Tweaked dependencies
* **0.4.4** Fixed fallback background color for old IE buttons; Removed padding from %formstyle extendable; Removed white background from old IE checkboxes.
2 changes: 1 addition & 1 deletion compass-pattern-primer.gemspec
Expand Up @@ -59,6 +59,6 @@ Gem::Specification.new do |s|
s.add_dependency("toolkit", ["~> 1.3.5"])
s.add_dependency("compass_formalize", ["~> 0.0.5"])
s.add_dependency("compass-normalize", ["~> 1.4.3"])
s.add_dependency("meyer-reset", ["~> 2.0.0"])
s.add_dependency("meyer-reset", ["~> 2.0"])
s.licenses = ['MIT', 'GPL-3']
end
4 changes: 2 additions & 2 deletions lib/compass-pattern-primer.rb
Expand Up @@ -18,8 +18,8 @@
# a prerelease version
# Date is in the form of YYYY-MM-DD
module Compass_Pattern_Primer
VERSION = "0.4.3"
DATE = "2013-12-03"
VERSION = "0.4.5"
DATE = "2014-04-14"
end

# This is where any custom SassScript should be placed. The functions will be
Expand Down
@@ -1 +1 @@
@import "meyer-reset.scss";
@import "meyer-reset";
3 changes: 3 additions & 0 deletions templates/shared/sass/base/forms/_forms.scss
Expand Up @@ -17,6 +17,9 @@ input[type="checkbox"],
input[type="radio"],
input[type="image"] {
width: auto;
@if $legacy-support-for-ie8 {
background: transparent;
}
}
input[required],
textarea[required] {
Expand Down
1 change: 0 additions & 1 deletion templates/shared/sass/base/forms/_forms_extendables.scss
Expand Up @@ -7,7 +7,6 @@
width: $forms-input-width;
font-family: inherit;
font-size: inherit;
@include margin-padding(padding, $forms-padding);
@include border-outline(border, $forms-border-width, $forms-border-style, $forms-border-color);
@include border-radius($forms-border-radius);
&:focus {
Expand Down
1 change: 0 additions & 1 deletion templates/shared/sass/base/forms/_forms_variables.scss
Expand Up @@ -12,7 +12,6 @@
// Forms _forms.scss
$forms-input-width: 100% !default;
$forms-background-color: #fff !default;
$forms-padding: 0.125em !default;
$forms-border-width: false !default;
$forms-border-style: solid !default;
$forms-border-color: #ccc !default;
Expand Down
2 changes: 1 addition & 1 deletion templates/shared/sass/partials/_mixins.scss
Expand Up @@ -5,7 +5,7 @@
@mixin simple-background-gradient($color, $background-gradient-pos, $background-gradient-1, $background-gradient-2) {
color: $color;
// provide background color for older IEs
background-color: background-color-mix($background-gradient-1, $background-gradient-2);
background: background-color-mix($background-gradient-1, $background-gradient-2);
@include background-image(linear-gradient($background-gradient-pos, $background-gradient-1, $background-gradient-2));
}

Expand Down

0 comments on commit 943c8ab

Please sign in to comment.