Blur the API keys for Pushover.net by default. Hover to reveal.
Pushover blurred API keys by nogweii
Details
Authornogweii
LicenseMIT
Categorypushover
Created
Updated
Size772 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Pushover blurred API keys
@namespace pushover.net
@version 1.0.1
@description Blur the API keys for Pushover.net by default. Hover to reveal.
@author Nogweii
==/UserStyle== */
@-moz-document domain("pushover.net") {
.big_key,
.small_key {
filter: blur(5px);
}
.big_key:hover,
.small_key:hover {
filter: none;
transition: all 1.5s ease-out;
}
/* group keys don't have a direct class, so use an overly specific CSS selector for that one */
html body div#whiteish div.container div.row div.span10 p input.span6 {
filter: blur(5px);
}
html body div#whiteish div.container div.row div.span10 p input.span6:hover {
filter: none;
transition: all 1.5s ease-out;
}
}