Minor enhancements to the UserStyles.world website:
- Disable outlines on some elements when selected if styled outlines are already present.
- Ensure input fields use the same font as the rest of the site.
Imported and mirrored from https://github.com/Gravitonic/userstyles/raw/main/uswenhance.user.css
Authorastarris
LicenseMIT
Categoryuserstyles.world
Created
Updated
Size580 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Minor enhancements to the UserStyles.world website:
/* ==UserStyle==
@name UserStyles.world Enhancements
@namespace github.com/gravitonic
@version 1.0.0
@description Minor enhancements to the UserStyles.world website.
@author Gravitonic
@supportURL https://github.com/gravitonic/userstyles/issues
@license MIT
==/UserStyle== */
@-moz-document domain("userstyles.world") {
input {
font-family: var(--font-sans);
}
input:focus-visible,
button:focus-visible,
textarea:focus-visible:not([readonly]),
.form-wrapper.advanced select:focus {
outline: none;
}
}