A static node representing a `@media` rule. `@media` rules behave differently from other directives in that when they're nested within rules, they bubble up to top-level.
@see Sass::Tree
The media query (e.g. `print` or `screen`).
@return [String]
@param query [String] See {#query}
# File lib/sass/tree/media_node.rb, line 21 def initialize(query) @query = query @tabs = 0 super('') end
@see Sass::Tree::DirectiveNode#value
# File lib/sass/tree/media_node.rb, line 28 def value "@media #{query}" end