Skip to content

Commit

Permalink
Remove extra quote, fixes #4
Browse files Browse the repository at this point in the history
  • Loading branch information
iain committed Feb 1, 2012
1 parent 59bc12f commit e446fce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ task :update do
File.open(path, 'w') do |t|
open url do |f|
f.each_line do |line|
t << line.gsub(%r|url\(.+/([^/]+)\)|, "image-url('formalize/\\1')")
t << line.gsub(%r|url\(.+/([^/]+)\)|, "image-url('formalize/\\1)")
end
end
end
Expand Down
6 changes: 3 additions & 3 deletions vendor/assets/stylesheets/formalize.css.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ input[type="button"] {
-ms-background-clip: padding-box;
-o-background-clip: padding-box;
background-clip: padding-box;
background: #dddddd image-url('formalize/button.png?1298351022'') repeat-x;
background: #dddddd image-url('formalize/button.png?1298351022') repeat-x;
background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #ffffff), color-stop(100%, #dddddd));
background-image: -webkit-linear-gradient(#ffffff, #dddddd);
background-image: -moz-linear-gradient(#ffffff, #dddddd);
Expand Down Expand Up @@ -254,7 +254,7 @@ select[size="1"] {
select,
select[size="0"],
select[size="1"] {
background-image: image-url('formalize/select_arrow.gif?1298351050'');
background-image: image-url('formalize/select_arrow.gif?1298351050');
background-repeat: no-repeat;
background-position: right center;
padding-right: 20px;
Expand Down Expand Up @@ -316,7 +316,7 @@ textarea::-moz-focus-inner {

.ie6_button,
* html button {
background: #dddddd image-url('formalize/button.png?1298351022'') repeat-x;
background: #dddddd image-url('formalize/button.png?1298351022') repeat-x;
border: 1px solid;
border-color: #dddddd #bbbbbb #999999;
cursor: pointer;
Expand Down

0 comments on commit e446fce

Please sign in to comment.