[username] (staff) instead of username staff. It's a small detail, but we felt like the slightly larger box was worth it.var mfn_admins =replace that line with
var mfn_admins = ["jessamyn"];Next, find the three or so lines that begin with
mfn_adminNodeselect all of those and replace them with
mfn_adminNode = document.createElement("span");
mfn_adminNode.innerHTML = "★";
mfn_adminNode.setAttribute("style","margin-left:1%");
This solves the redundant staff marker problem and gives Jessamyn her star back.posted by mathowie (staff) at 1:23 PM on January 1 [+] [!]Make the "(staff)" part display in the same font and size as the username, with no background, but a more attention-getting text color. Wouldn't that be just as effective?
.staff {display:none}posted by FishBike [staff] at 7:37 PM on October 4 [+] [!]posted by FishBike at 4:38 PM on October 4, 2011
New version uploaded to keep the star perma-gold.Greasemonkey script to bring back Jessamyn's starThe star should always be gold. As it is, if you've clicked on her profile it shows up in visited-link-color. Also it should replace the (staff) badge, I think.
.staff {
border-radius: 2px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
padding: 0 2px 1px;
position: relative;
top: -1px;
}
posted by potch at 6:00 PM on October 4, 2011 [1 favorite] .staff: {position: relative; top:-1px} $20, same as in town.The Winsome Parker Lewis suggested this above, without the mockup.
posted by cortex (staff)
.staff, .staffp {
padding:0;
color:#fff!important;
background-color:inherit!important;
font-size:inherit!important;
font-weight:bold;
}
posted by mathowie (staff) at 2:47 PM on October 4, 2011 [1 favorite]