Currently, parent theme is SCCS and child is Less. Eventually both will be Less.
In sites with the Lesspllugin installed and WP_DEBUG on the plugin does the compilation on the fly.
When WP_DEBUG is off, the plugin does not recompile.
Font
ex: .tf-fontsize(12);
Corners
All four corners the same
ex: .tf-rounded(22);
Each corner separate, starting at top right and going clockwise:
ex: .tf-radius(22,10,22,10);
Drop Shadow
A default shadow:
.tf-shadow
Fancy shadow:
.tf-drop-shadow(-6px, 3px, 5px, 0, #ddd);
first arg: pixels: horizontal position (negative for right, positive for left)
second arg: pixels: vertical position (negative for up, positive for down)
third arg: pixels: how blury? 0 is solid border, more is blurrier)
fourth arg: pixels: how far does the shadow reach out? Must be > 0.
fifth arg: hex color
Less Elements
In the child theme, less directory, is __elements_mixins.less.examples which includes many useful mixing that could be incorporated into TF as needed.


