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