Replaces "Corrupted" with "Krangled" for better display accuracy.
Code taken from this reddit post and lightly modified to work better.
Authormorilli
LicenseNo License
Categorypathofexile
Created
Updated
Size917 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Replaces "Corrupted" with "Krangled" for better display accuracy.
Code taken from this reddit post and lightly modified to work better.
/* ==UserStyle==
@name Krangled items
@version 20211028.00.38
@namespace userstyles.world/user/morilli
@description Replaces "Corrupted" with "Krangled" for better display accuracy.
Code taken from https://www.reddit.com/r/pathofexile/comments/qgedoa/custom_css_that_replaces_corrupted_with_krangled/ and lightly modified to work better.
@author morilli
@license No License
==/UserStyle== */
@-moz-document domain("www.pathofexile.com") {
.explicitMod + div.unmet span.lc, .pseudoMod + div.unmet span.lc {
display: none;
}
.explicitMod + div.unmet:after, .pseudoMod + div.unmet:after {
content: 'Krangled';
text-shadow: 0px 0px 10px #fd0000!important;
}
.explicitMod + div.unmet:hover span.lc, .pseudoMod + div.unmet:hover span.lc {
display: inline-block;
z-index: 200;
left: 0;
position: absolute;
background-color: #1c1c1c;
}
}