diff --git a/core/client/app.js b/core/client/app.js index ecee1b0e4f..b7160f4698 100755 --- a/core/client/app.js +++ b/core/client/app.js @@ -2,6 +2,7 @@ import Resolver from 'ember/resolver'; import initFixtures from 'ghost/fixtures/init'; import {currentUser, injectCurrentUser} from 'ghost/initializers/current-user'; import 'ghost/utils/link-view'; +import 'ghost/utils/text-field'; var App = Ember.Application.extend({ /** diff --git a/core/client/assets/css/ember-hacks.css b/core/client/assets/css/ember-hacks.css index c51698f1c1..ecd98ecffa 100644 --- a/core/client/assets/css/ember-hacks.css +++ b/core/client/assets/css/ember-hacks.css @@ -17,4 +17,43 @@ -webkit-transition: none; -moz-transition: none; transition: none; +} + +.fade-in { + animation: fadein 0.5s; + -moz-animation: fadein 0.5s; /* Firefox */ + -webkit-animation: fadein 0.5s; /* Safari and Chrome */ + -o-animation: fadein 0.5s; /* Opera */ +} +@keyframes fadein { + from { + opacity:0; + } + to { + opacity:1; + } +} +@-moz-keyframes fadein { /* Firefox */ + from { + opacity:0; + } + to { + opacity:1; + } +} +@-webkit-keyframes fadein { /* Safari and Chrome */ + from { + opacity:0; + } + to { + opacity:1; + } +} +@-o-keyframes fadein { /* Opera */ + from { + opacity:0; + } + to { + opacity: 1; + } } \ No newline at end of file diff --git a/core/client/templates/forgotten.hbs b/core/client/templates/forgotten.hbs index 833db5f620..4fde70da52 100644 --- a/core/client/templates/forgotten.hbs +++ b/core/client/templates/forgotten.hbs @@ -1,7 +1,7 @@ -
+
diff --git a/core/client/templates/reset.hbs b/core/client/templates/reset.hbs index b41c1bdbfb..a255a11fe3 100644 --- a/core/client/templates/reset.hbs +++ b/core/client/templates/reset.hbs @@ -1,7 +1,7 @@ -
+
- {{input value=passwords.newPassword class="password" type="password" placeholder="Password" name="newpassword" }} + {{input value=passwords.newPassword class="password" type="password" placeholder="Password" name="newpassword" autofocus="autofocus" }}
{{input value=passwords.ne2Password class="password" type="password" placeholder="Confirm Password" name="ne2password" }} diff --git a/core/client/templates/signin.hbs b/core/client/templates/signin.hbs index 67835bccf8..13813a0dfb 100644 --- a/core/client/templates/signin.hbs +++ b/core/client/templates/signin.hbs @@ -1,7 +1,7 @@ -