You are here

private static property SassExtentionsCompassFunctionsSelectors::$defaultDisplay in Sassy 7

File

phamlp/sass/extensions/compass/functions/selectors.php, line 21

Class

SassExtentionsCompassFunctionsSelectors
Compass extension SassScript selectors functions class. A collection of functions for use in SassSCript. @package PHamlP @subpackage Sass.extensions.compass.functions

Code

private static $defaultDisplay = array(
  'block' => array(
    'address',
    'blockquote',
    'center',
    'dir',
    'div',
    'dd',
    'dl',
    'dt',
    'fieldset',
    'form',
    'frameset h1',
    'h2',
    'h3',
    'h4',
    'h5',
    'h6',
    'hr',
    'isindex',
    'menu',
    'noframes',
    'noscript',
    'ol',
    'p',
    'pre',
    'ul',
  ),
  'inline' => array(
    'a',
    'abbr',
    'acronym',
    'b',
    'basefont',
    'bdo',
    'big',
    'br',
    'cite',
    'code',
    'dfn',
    'em',
    'font',
    'i',
    'img',
    'input',
    'kbd',
    'label',
    'q',
    's',
    'samp',
    'select',
    'small',
    'span',
    'strike',
    'strong',
    'sub',
    'sup',
    'textarea',
    'tt',
    'u',
    'var',
  ),
  'table' => array(
    'table',
  ),
  'list-item' => array(
    'li',
  ),
  'table-row-group' => array(
    'tbody',
  ),
  'table-header-group' => array(
    'thead',
  ),
  'table-footer-group' => array(
    'tfoot',
  ),
  'table-row' => array(
    'tr',
  ),
  'table-cell' => array(
    'th',
    'td',
  ),
);