fix heigh in reset password in FF
and fix navigation glitch when going back from reset or signup to #login (before that back links went to #/, leading to the sidebar blinking up because of the redirect delay – hardwired them to go back to #login [if there is a nother case to go back to it should be set via js]).
This commit is contained in:
parent
749dcdba30
commit
c0c108dba6
3 changed files with 4 additions and 3 deletions
|
@ -10,7 +10,7 @@
|
|||
<form class="form-password">
|
||||
<div class="form-password-item"></div>
|
||||
<div class="form-controls">
|
||||
<a class="subtle-link standalone pull-left cancel" href="#/"><%- @T( 'Cancel & Go Back' ) %></a>
|
||||
<a class="subtle-link standalone pull-left cancel" href="#login"><%- @T( 'Cancel & Go Back' ) %></a>
|
||||
<button class="btn btn--primary submit pull-right"><%- @T( 'Submit' ) %></button>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<h1><%- @T( 'Join' ) %> <%= @C( 'product_name' ) %></h1>
|
||||
<form>
|
||||
<div class="form-controls">
|
||||
<a class="subtle-link standalone pull-left" href="#/"><%- @T( 'Cancel & Go Back' ) %></a>
|
||||
<a class="subtle-link standalone pull-left" href="#login"><%- @T( 'Cancel & Go Back' ) %></a>
|
||||
<button class="btn btn--primary submit pull-right"><%- @T( 'Create my account' ) %></button>
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
@ -993,6 +993,7 @@ textarea,
|
|||
@extend .fit;
|
||||
display: table;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
|
@ -4400,7 +4401,7 @@ footer {
|
|||
}
|
||||
|
||||
.scrollPageHeader {
|
||||
// @extend .tabsSidebar-sidebarSpacer;
|
||||
@extend .tabsSidebar-sidebarSpacer;
|
||||
@extend .zIndex-6;
|
||||
@extend .horizontal;
|
||||
@extend .center;
|
||||
|
|
Loading…
Reference in a new issue