0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00

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

View file

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