Skip to content

Commit

Permalink
Added new class .wavesTable-txUnc with custom animation for unconfirm…
Browse files Browse the repository at this point in the history
…ed TXs
  • Loading branch information
supereth committed Jun 19, 2016
1 parent f3f39ba commit 57be72b
Showing 1 changed file with 34 additions and 4 deletions.
38 changes: 34 additions & 4 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -863,17 +863,47 @@ input.tabs-radio:checked + label img {
}

.wavesTable-txIn {
/* color: #669ECC !important;*/
color: #4C7699 !important;
/* color: #737D3A !important;*/

}

.wavesTable-txOut {
color: #888999 !important;
/* color: #9C0005 !important;*/
}

.wavesTable-txUnc {
-webkit-animation: opacity_change 1s infinite alternate;
-moz-animation: opacity_change 1s infinite alternate;
-ms-animation: opacity_change 1s infinite alternate;
-o-animation: opacity_change 1s infinite alternate;
animation: opacity_change 1s infinite alternate;
}

@-webkit-keyframes opacity_change {
from { opacity: 0.4; }
to { opacity: 1; }
}

@-moz-keyframes opacity_change {
from { opacity: 0.4; }
to { opacity: 1; }
}

@-ms-keyframes opacity_change {
from { opacity: 0.4; }
to { opacity: 1; }
}

@-o-keyframes opacity_change {
from { opacity: 0.4; }
to { opacity: 1; }
}

@keyframes opacity_change {
from { opacity: 0.4; }
to { opacity: 1; }
}


#wHistory tbody, #latestBlocksUnconfirmed, #latestBlocksTable {
font-family: 'Lekton';
}
Expand Down

0 comments on commit 57be72b

Please sign in to comment.