ElkArte Community

Elk Development => Bug Reports => Exterminated Bugs => Topic started by: Antechinus on June 09, 2016, 04:14:07 am

Title: Doofus CSS (may have been mine)
Post by: Antechinus on June 09, 2016, 04:14:07 am
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;
}
Title: Re: Doofus CSS (may have been mine)
Post by: Spuds on June 09, 2016, 10:26:25 am
Tracked ...