aboutsummaryrefslogtreecommitdiff
path: root/extension/style/wallet.css
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-02-15 11:29:58 +0100
committerFlorian Dold <florian.dold@gmail.com>2016-02-15 11:30:06 +0100
commit526e88695f6c8a2b3dea4b9befeb2a85ba00b66b (patch)
treedb2a0422d322ad45842cd12e1e107f1f08718f99 /extension/style/wallet.css
parentc34a6612ec079a78e67325dac8d9a18775abe022 (diff)
downloadwallet-core-526e88695f6c8a2b3dea4b9befeb2a85ba00b66b.tar.xz
suggest mint based on currency (stub)
Diffstat (limited to 'extension/style/wallet.css')
-rw-r--r--extension/style/wallet.css16
1 files changed, 16 insertions, 0 deletions
diff --git a/extension/style/wallet.css b/extension/style/wallet.css
index 01b9cd96f..9f7a7b525 100644
--- a/extension/style/wallet.css
+++ b/extension/style/wallet.css
@@ -101,3 +101,19 @@ button {
font-size: 120%;
padding: 0.5em;
}
+
+/* We use fading to hide slower DOM updates */
+.fade {
+ -webkit-animation: fade 0.7s;
+ animation: fade 0.7s;
+ opacity: 1;
+}
+
+@-webkit-keyframes fade {
+ from {opacity: 0}
+ to {opacity: 1}
+}
+@keyframes fade {
+ from {opacity: 0}
+ to {opacity: 1}
+ } \ No newline at end of file