disable copying link when password not completed

This commit is contained in:
Erica Wright 2017-10-23 09:51:33 -04:00
parent 9410defab6
commit 046f227003
No known key found for this signature in database
GPG key ID: D9F2AF9D67D0AAB7
3 changed files with 19 additions and 3 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;
}