If you don't see your balance then you may not fear (that much) loosing it. Clear head, better trading.
This code blurs your balance numbers but makes it clear on mouse hover.
Authorvendrel
LicenseNo License
Categoryuserstyles
Created
Updated
Size777 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
If you don't see your balance then you may not fear (that much) loosing it. Clear head, better trading.
This code blurs your balance numbers but makes it clear on mouse hover.
/* ==UserStyle==
@name currency.com NoFOL
@version 20220802.11.18
@namespace userstyles.world/user/vendrel
@description If you don't see your balance then you may not fear (that much) loosing it. Clear head, better trading.
This code blurs your balance numbers but makes it clear on mouse hover.
@author vendrel
@license No License
==/UserStyle== */
@-moz-document domain("currency.com") {
.wrapper-topbar-info__inner topbar-info-item .topbar-info-item .topbar-info-item__price span.ng-star-inserted
{
transition: filter 0.5s 1s ease;
filter: blur(10px)
}
.wrapper-topbar-info__inner:hover topbar-info-item .topbar-info-item .topbar-info-item__price span.ng-star-inserted
{
transition: filter 0.5s 0s ease;
filter: blur(0px)
}
}