mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
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:
parent
e9c3ec5afc
commit
8a61322ce2
1 changed files with 5 additions and 2 deletions
|
@ -33,13 +33,16 @@
|
||||||
.forgotten-wrap .forgotten-link {
|
.forgotten-wrap .forgotten-link {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 10px;
|
top: 10px;
|
||||||
right: 0;
|
right: 1px;
|
||||||
bottom: 10px;
|
bottom: 10px;
|
||||||
padding: 0 12px;
|
padding: 0 11px 0 12px;
|
||||||
border-left: #dae1e3 1px solid;
|
border-left: #dae1e3 1px solid;
|
||||||
|
background: #fff;
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
text-transform: none;
|
text-transform: none;
|
||||||
letter-spacing: 0;
|
letter-spacing: 0;
|
||||||
|
/* Needs white BG to hide browser-extension password tools like
|
||||||
|
lastpass and safari-password manager */
|
||||||
}
|
}
|
||||||
|
|
||||||
.forgotten-link:hover {
|
.forgotten-link:hover {
|
||||||
|
|
Loading…
Add table
Reference in a new issue