Merge pull request #608 from mozilla/link-copy

disable copying link when password not completed
This commit is contained in:
Erica 2017-10-30 10:42:09 -04:00 committed by GitHub
commit a31f6b75d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 29 additions and 4 deletions

View file

@ -553,6 +553,11 @@ tbody {
width: 100%;
}
#copy.wait-password #link,
#copy.wait-password #copy-btn {
opacity: 0.5;
}
#copy-text {
align-self: flex-start;
margin-top: 60px;
@ -596,13 +601,16 @@ tbody {
white-space: nowrap;
}
#copy-btn:hover {
#copy-btn:not(:disabled):hover {
background-color: #0287e8;
}
#copy-btn:disabled {
#copy-btn.success {
background: #05a700;
border: 1px solid #05a700;
}
#copy-btn:disabled {
cursor: auto;
}