0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00

Fixes transitions on input elements and other globals not working in Firefox

Removed unnecessary :focus transition style and updated actual transitions to Bourbon syntax.
This commit is contained in:
Matthew Harrison-Jones 2013-06-18 13:37:16 +01:00
parent d15f1f8961
commit 26d57fbb17
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);
}
}