Applies a colored border and pushes devposts to the top of threads. Only applies to old.reddit
r/Warframe promote and highlight dev posts by obligatedtapir
Details
Authorobligatedtapir
LicenseNo License
Categoryold.reddit.com/r/Warframe
Created
Updated
Size973 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 r/Warframe highlight dev posts
@namespace r/Warframe
@version 1.0.1
@description Pushes devposts to the top of threads
==/UserStyle== */
@-moz-document url-prefix("https://old.reddit.com/r/Warframe") {
.link:has(.linkflairlabel[title="DE Response"]) {
border-left: 5px solid #af4bff !important;
}
.link:has(.linkflairlabel[title="DE Response"]) .rank {
margin-left: -5px;
}
}
@-moz-document url-prefix("https://old.reddit.com/r/Warframe/comments") {
.comment:has(
.author[href*="user/DE-"i],
.author[href*="user/DE_"i],
.flairemoji[title=":LotusDE:"],
.flairemoji[title=":NoggleLotus:"]
) {
order: -1;
}
.comment:has(
.author[href*="user/DE-"i],
.author[href*="user/DE_"i],
.flairemoji[title=":LotusDE:"],
.flairemoji[title=":NoggleLotus:"]
) > .entry {
border-left: 3px solid #af4bff !important;
padding-left: 5px;
}
.sitetable, .child {
display: flex;
flex-direction: column;
}
}