Implemented icon for copy to clipboard in join, address book, transactions and addresses.

This commit is contained in:
Gustavo Maximiliano Cortez 2014-07-31 16:40:26 -03:00
commit 87f196ebf4
6 changed files with 68 additions and 34 deletions

View file

@ -1026,4 +1026,28 @@ a.text-white:hover {color: #ccc;}
text-align: left;
}
/**** Copy to clipboard ****/
.btn-copy {
color: #9b9b9b;
display: inline-block;
height: 16px;
width: 16px;
outline: none;
vertical-align: sub;
background: transparent url('../img/icons/copy.png') center center no-repeat;
}
.btn-copied {
display: inline-block;
width: auto;
color: #16A085;
font-weight: bold;
font-size: 11px;
}
.btn-copy.zeroclipboard-is-hover { color: #000; }
.btn-copy.zeroclipboard-is-active { opacity: 1; }
/*-----------------------------------------------------------------*/