protected function SassExpandedRenderer::between in Sassy 7
Same name and namespace in other branches
- 7.3 phpsass/renderers/SassExpandedRenderer.php \SassExpandedRenderer::between()
* Renders the brace between the selectors and the properties *
Return value
string the brace between the selectors and the properties
Overrides SassCompactRenderer::between
1 call to SassExpandedRenderer::between()
- SassNestedRenderer::renderDirective in phamlp/
sass/ renderers/ SassNestedRenderer.php - * Renders a directive. *
File
- phamlp/
sass/ renderers/ SassExpandedRenderer.php, line 27
Class
- SassExpandedRenderer
- SassExpandedRenderer class. Expanded is the typical human-made CSS style, with each property and rule taking up one line. Properties are indented within the rules, but the rules are not indented in any special…
Code
protected function between() {
return " {\n";
}