diff options
| author | Florian Dold <florian.dold@gmail.com> | 2016-02-15 11:29:58 +0100 |
|---|---|---|
| committer | Florian Dold <florian.dold@gmail.com> | 2016-02-15 11:30:06 +0100 |
| commit | 526e88695f6c8a2b3dea4b9befeb2a85ba00b66b (patch) | |
| tree | db2a0422d322ad45842cd12e1e107f1f08718f99 /extension/style | |
| parent | c34a6612ec079a78e67325dac8d9a18775abe022 (diff) | |
suggest mint based on currency (stub)
Diffstat (limited to 'extension/style')
| -rw-r--r-- | extension/style/wallet.css | 16 |
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 |
