XF 1.4 class -> Property style

Allan

Well-known member
For example, i have this class: .quickReply

How to know has which property of style this class corresponds?
 
Admin CP -> Appearance

Screen shot 2015-01-24 at 12.40.22 PM.webp

Then edit the matching templates. You will see property names:

Rich (BB code):
.quickReply
{	
	@property "message";
	padding-top: 10px;
	padding-bottom: 30px;
	border-top: 1px solid @primaryLighterStill;
	@property "/message";
}

Then search for that name:

Screen shot 2015-01-24 at 12.48.50 PM.webp
 
Thank you Jake :)

But to be honest, it's tedious :p

Example with .sectionFooter class:

Screenshot_24.webp

must be sought in all these template and then look in the style properties, do this to each class, it'll be long :p

I thought there'd have a quick and easy solution.
 
Top Bottom