Merge pull request #181 from matthojo/Input-Border-Fix

Fixes transitions on input elements and other globals not working in Firefox
This commit is contained in:
Hannah Wolfe 2013-06-19 14:42:01 -07:00
commit c643976bab
2 changed files with 6 additions and 7 deletions

View File

@ -68,7 +68,7 @@ form {
background: #fff;
border: darken($lightbrown, 5%) 1px solid;
border-radius: $rounded;
@include transition;
@include transition(all 0.15s ease-in-out);
}
textarea {
@ -101,7 +101,6 @@ form {
background:#fff;
outline:none;
outline-width:0;
@include transition;
}
select {

View File

@ -177,7 +177,7 @@ aside + p {
a {
color:$blue;
text-decoration:none;
@include transition;
@include transition(all 0.15s ease-in-out);
&:hover {
text-decoration:underline;
@ -1100,7 +1100,7 @@ main {
font-weight: bold;
font-family: $font-family-mono;
overflow: hidden;
@include transition;
@include transition(all 0.15s ease-in-out);
&:hover {
box-shadow:
@ -1108,7 +1108,7 @@ main {
rgba(0,0,0,0.05) -5px 0 0 inset,
rgba(0,0,0,0.05) 0 5px 0 inset,
rgba(0,0,0,0.05) 0 -5px 0 inset;
@include transition;
@include transition(all 0.15s ease-in-out);
}
small {
@ -1121,12 +1121,12 @@ main {
display: block;
width:100px;
opacity: 0.6;
@include transition;
@include transition(all 0.15s ease-in-out);
}
&:hover small {
opacity: 1;
@include transition;
@include transition(all 0.15s ease-in-out);
}
}