From 57be72b23bb0d01af7d36259827aa8d8b2b78b7f Mon Sep 17 00:00:00 2001 From: supereth Date: Sun, 19 Jun 2016 22:52:45 +0800 Subject: [PATCH] Added new class .wavesTable-txUnc with custom animation for unconfirmed TXs --- css/style.css | 38 ++++++++++++++++++++++++++++++++++---- 1 file changed, 34 insertions(+), 4 deletions(-) diff --git a/css/style.css b/css/style.css index bd6fb5e38d..24128ff0cf 100644 --- a/css/style.css +++ b/css/style.css @@ -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'; }