Skip to content

Blur images on Wikipedia by hkc

Screenshot of Blur images on Wikipedia

Details

Authorhkc

LicenseNo License

Categorywikipedia

Created

Updated

Size466 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Blur all images on Wikipedia unless you hover on them

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name         Blur images on Wikipedia
@version      20241111.14.21
@namespace    https://userstyles.world/user/hatkidchan
@description  Blur all images on Wikipedia unless you hover on them
@author       hatkidchan
==/UserStyle== */

@-moz-document domain("wikipedia.org") {
.mw-file-element {
  filter: blur(16px);
  clip-path: inset(0px);
  transition-property: filter;
  transition-duration: 0.5s;
}

.mw-file-element:hover {
  filter: none;
}
}

Reviews

No reviews yet.