Fixed transition definitions

Made sure durations come before timing functions.

https://github.com/TryGhost/Casper/issues/168#issuecomment-74828463
This commit is contained in:
Matthew Guy 2015-02-18 03:31:26 -05:00
parent 1e6e807f94
commit b064e9fc87
1 changed files with 4 additions and 4 deletions

View File

@ -234,7 +234,7 @@ h6 {
a { a {
color: #4A4A4A; color: #4A4A4A;
transition: color ease 0.3s; transition: color 0.3s ease;
} }
a:hover { a:hover {
@ -579,7 +579,7 @@ margin on the iframe, cause it breaks stuff. */
line-height: 35px; line-height: 35px;
border-radius: 3px; border-radius: 3px;
background: rgba(0,0,0,0.1); background: rgba(0,0,0,0.1);
transition: all ease 0.3s; transition: all 0.3s ease;
} }
.back-button:before { .back-button:before {
position: relative; position: relative;
@ -606,7 +606,7 @@ margin on the iframe, cause it breaks stuff. */
white-space: nowrap; white-space: nowrap;
border-radius: 3px; border-radius: 3px;
background: rgba(0,0,0,0.1); background: rgba(0,0,0,0.1);
transition: all ease 0.3s; transition: all 0.3s ease;
} }
.subscribe-button:before { .subscribe-button:before {
font-size: 9px; font-size: 9px;
@ -1227,7 +1227,7 @@ body:not(.post-template) .post-title {
border: #bfc8cd 1px solid; border: #bfc8cd 1px solid;
text-decoration: none; text-decoration: none;
border-radius: 4px; border-radius: 4px;
transition: border ease 0.3s; transition: border 0.3s ease;
} }
.older-posts { .older-posts {