Add white bg to forgotten password link

Lastpass injects its password-fill icon into password inputs, this shows up awkwardly with the forgot-password button. Adding a white BG hides this.

Followup on #5641
This commit is contained in:
John O'Nolan 2015-08-25 10:20:34 +02:00
parent eb1365c4f0
commit 9d5ea5d9be

View File

@ -33,13 +33,16 @@
.forgotten-wrap .forgotten-link {
position: absolute;
top: 10px;
right: 0;
right: 1px;
bottom: 10px;
padding: 0 12px;
padding: 0 11px 0 12px;
border-left: #dae1e3 1px solid;
background: #fff;
border-radius: 0;
text-transform: none;
letter-spacing: 0;
/* Needs white BG to hide browser-extension password tools like
lastpass and safari-password manager */
}
.forgotten-link:hover {