PHP Class SassCompactRenderer

Each CSS rule takes up only one line, with every property defined on that line. Nested rules are placed next to each other with no newline, while groups of rules have newlines between them.
Inheritance: extends SassCompressedRenderer
Afficher le fichier Open project: richthegeek/phpsass Class Usage Examples

Méthodes publiques

Méthode Description
renderComment ( SassNode $node ) : string Renders a comment.
renderDirective ( SassNode $node, array $properties ) : string Renders a directive.
renderProperties ( SassNode $node, array $properties ) : string Renders properties.
renderProperty ( SassNode $node ) : string Renders a property.
renderRule ( SassNode $node, array $properties, string $rules ) : string Renders a rule.

Méthodes protégées

Méthode Description
between ( ) : string Renders the brace between the selectors and the properties
end ( ) : string Renders the brace at the end of the rule
renderDebug ( SassNode $node ) : string Renders debug information.
renderSelectors ( SassNode $node ) : string Renders rule selectors.

Method Details

between() protected méthode

Renders the brace between the selectors and the properties
protected between ( ) : string
Résultat string the brace between the selectors and the properties

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

renderComment() public méthode

Comments preceeding a rule are on their own line. Comments within a rule are on the same line as the rule.
public renderComment ( SassNode $node ) : string
$node SassNode the node being rendered
Résultat string the rendered commnt

renderDebug() protected méthode

If the node has the debug_info options set true the line number and filename are rendered in a format compatible with {@link https://addons.mozilla.org/en-US/firefox/addon/firecompass-for-firebug/ FireCompass}. Else if the node has the line_numbers option set true the line number and filename are rendered in a comment.
protected renderDebug ( SassNode $node ) : string
$node SassNode the node being rendered
Résultat string the debug information

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

renderProperties() public méthode

Renders properties.
public renderProperties ( SassNode $node, array $properties ) : string
$node SassNode the node being rendered
$properties array properties to render
Résultat string the rendered properties

renderProperty() public méthode

Renders a property.
public renderProperty ( SassNode $node ) : string
$node SassNode the node being rendered
Résultat string the rendered property

renderRule() public méthode

Renders a rule.
public renderRule ( SassNode $node, array $properties, string $rules ) : string
$node SassNode the node being rendered
$properties array rule properties
$rules string rendered rules
Résultat string the rendered rule

renderSelectors() protected méthode

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