module Compass::Core::SassExtensions::Functions::Display

Constants

DEFAULT_DISPLAY

Public Instance Methods

elements_of_type(display) click to toggle source

returns a comma delimited string for all the elements according to their default css3 display value.

# File lib/compass/core/sass_extensions/functions/display.rb, line 29
def elements_of_type(display)
  identifier(DEFAULT_DISPLAY.fetch(display.value.to_s).join(", "))
end