A corner gradient to mark what kind of toot (public, unlisted, private, direct) a toot is more noticeably.
freeradical.zone - Toot type corner indicator by edd
Details
Authoredd
LicenseNo License
Categoryfreeradical.zone
Created
Updated
Size813 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 freeradical.zone - Toot type corner indicator
@namespace github.com/openstyles/stylus
@version 1.0.0
@description A corner gradient to mark what kind of toot (public, unlisted, private, direct) a toot is more noticeably.
@author @edd@freeradical.zone
==/UserStyle== */
@-moz-document domain("freeradical.zone") {
.status__wrapper.status__wrapper-public {
background: linear-gradient(-15deg, #88CCEE, #fff 2rem);
}
.status__wrapper-unlisted {
background: linear-gradient(-15deg, #332288, #fff 2rem);
}
.status__wrapper-private {
background: linear-gradient(-15deg, #44AA99, #fff 2rem);
}
.status__wrapper-direct {
background: linear-gradient(-15deg, #117733, #fff 2rem);
}
}