Skip to content

Commit

Permalink
Merge pull request #2 from soccer022483/master
Browse files Browse the repository at this point in the history
Using the URL helpers from SASS
  • Loading branch information
iain committed Sep 27, 2011
2 parents 49f6d52 + da8d4be commit 7082eea
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -107,7 +107,7 @@ input[type="button"] {
-moz-background-clip: padding;
-webkit-background-clip: padding;
background-clip: padding-box;
background: #ddd url(/assets/formalize/button.png) repeat-x;
background: #ddd image-url('formalize/button.png') repeat-x;
background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(1, #ddd));
background: -moz-linear-gradient(top center, #fff 0%, #ddd 100%);
border: 1px solid;
Expand Down Expand Up @@ -281,7 +281,7 @@ select[multiple] {
/* Tweaks for Safari + Chrome. */
@media (-webkit-min-device-pixel-ratio: 0) {
select {
background-image: url(/assets/formalize/select_arrow.gif);
background-image: image-url('formalize/select_arrow.gif');
background-repeat: no-repeat;
background-position: right center;
padding-right: 20px;
Expand Down Expand Up @@ -356,7 +356,7 @@ optgroup {

.ie6_button,
* html button {
background: #ddd url(/assets/formalize/button.png) repeat-x;
background: #ddd image-url('formalize/button.png') repeat-x;
border: 1px solid;
border-color: #ddd #bbb #999;
cursor: pointer;
Expand Down

0 comments on commit 7082eea

Please sign in to comment.