PHP Class SassNestedRenderer

Nested style is the default Sass style, because it reflects the structure of the document in much the same way Sass does. Each rule is indented based on how deeply it's nested. Each property has its own line and is indented within the rule.
Inheritance: extends SassExpandedRenderer
Afficher le fichier Open project: richthegeek/phpsass

Méthodes publiques

Méthode Description
renderDirective ( SassNode $node, array $properties ) : string Renders a directive.

Méthodes protégées

Méthode Description
end ( ) : string Renders the brace at the end of the rule
getIndent ( SassNode $node ) : string Returns the indent string for the node
renderSelectors ( SassNode $node ) : string Renders rule selectors.

Method Details

end() protected méthode

Renders the brace at the end of the rule
protected end ( ) : string
Résultat string the brace between the rule and its properties

getIndent() protected méthode

Returns the indent string for the node
protected getIndent ( SassNode $node ) : string
$node SassNode the node being rendered
Résultat string the indent string for this SassNode

renderDirective() public méthode

Renders a directive.
public renderDirective ( SassNode $node, array $properties ) : string
$node SassNode the node being rendered
$properties array properties of the directive
Résultat string the rendered directive

renderSelectors() protected méthode

Renders rule selectors.
protected renderSelectors ( SassNode $node ) : string
$node SassNode the node being rendered
Résultat string the rendered selectors