Issue 11812
Cleanup LESS files
11812
Reporter: mdoering
Type: Improvement
Summary: Cleanup LESS files
Priority: Major
Resolution: Fixed
Status: Closed
Created: 2012-09-06 13:22:15.212
Updated: 2013-09-26 22:46:06.038
Resolved: 2013-09-26 22:46:06.008
Description: There is still some cleanup to do in the less files to remove the redundant CSS matchers and create a proper nested matcher hierarchy.
For example the currently existing CSS:
{code}
#content article.register form {
margin: 0;
padding: 0;
}
#content article.register form button {
margin-right: 0;
}
{code}
Should be merged into:
{code}
#content article.register form {
margin: 0;
padding: 0;
button {
margin-right: 0;
}
}
{code}
]]>