Class: Sass::Supports::Condition
- Inherits:
- Object
- Object
- Sass::Supports::Condition
- Defined in:
- /Users/ceppstei/Projects/sass-lang/.sass/lib/sass/supports.rb
Overview
The abstract superclass of all Supports conditions.
Direct Known Subclasses
Instance Method Summary (collapse)
- - (Condition) deep_copy
Returns a deep copy of this condition and all its children.
- - options=(options)
Sets the options hash for the script nodes in the supports condition.
- - perform(environment)
Runs the SassScript in the supports condition.
- - (String) to_css
Returns the CSS for this condition.
- - (String) to_src(options)
Returns the Sass/CSS code for this condition.
Instance Method Details
- (Condition) deep_copy
Returns a deep copy of this condition and all its children.
24 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/supports.rb', line 24
def deep_copy; Sass::Util.abstract(self); end |
- options=(options)
Sets the options hash for the script nodes in the supports condition.
29 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/supports.rb', line 29
def options=(options); Sass::Util.abstract(self); end |
- perform(environment)
Runs the SassScript in the supports condition.
8 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/supports.rb', line 8
def perform(environment); Sass::Util.abstract(self); end |
- (String) to_css
Returns the CSS for this condition.
13 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/supports.rb', line 13
def to_css; Sass::Util.abstract(self); end |
- (String) to_src(options)
Returns the Sass/CSS code for this condition.
19 | # File '/Users/ceppstei/Projects/sass-lang/.sass/lib/sass/supports.rb', line 19
def to_src(options); Sass::Util.abstract(self); end |