Skip to main content
Topic: Doofus CSS (may have been mine) (Read 1528 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Doofus CSS (may have been mine)

Dunno who wrote this bit. Could have been one of my brain farts. If not mine, someone else had a brain fart.

Code: (index.css) [Select]
#moderationbuttons ul li {
margin: 0;
padding: 0 6px 4px 0;
}

The reason it's doofus is that there's no need for that descendant chain. Since the ul has an id anyway it'd make more sense to use:

Code: [Select]
#moderationbuttons_strip li {
margin: 0;
padding: 0 6px 4px 0;
}
Master of Expletives: Now with improved family f@&king friendliness! :D

Sources code: making easy front end changes difficult since 1873. :P

Re: Doofus CSS (may have been mine)

Reply #1

Tracked ...