Removes the underlines on the ins element and makes the text have a higher color contrast ratio.
open-std <ins> fixes by FireIsGood
Details
AuthorFireIsGood
LicenseNo License
Categoryopen-std.org
Created
Updated
Size343 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 open-std.org - Nov 2023
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A new userstyle
@author Me
==/UserStyle== */
@-moz-document domain("open-std.org") {
:root {
--ins-text-color: #032B0B;
}
ins, ins * {
text-decoration: unset;
}
}