You are here

private property SassParser::$_vendorProperties in Sassy 7

Same name and namespace in other branches
  1. 7.3 phpsass/SassParser.php \SassParser::_vendorProperties

* Defines the build-in vendor properties * *

Type: array built-in vendor properties

See also

vendor_properties

File

phamlp/sass/SassParser.php, line 251

Class

SassParser
SassParser class. Parses {@link http://sass-lang.com/ .sass and .sccs} files. @package PHamlP @subpackage Sass

Code

private $_vendorProperties = array(
  'border-radius' => array(
    '-moz-border-radius',
    '-webkit-border-radius',
    '-khtml-border-radius',
  ),
  'border-top-right-radius' => array(
    '-moz-border-radius-topright',
    '-webkit-border-top-right-radius',
    '-khtml-border-top-right-radius',
  ),
  'border-bottom-right-radius' => array(
    '-moz-border-radius-bottomright',
    '-webkit-border-bottom-right-radius',
    '-khtml-border-bottom-right-radius',
  ),
  'border-bottom-left-radius' => array(
    '-moz-border-radius-bottomleft',
    '-webkit-border-bottom-left-radius',
    '-khtml-border-bottom-left-radius',
  ),
  'border-top-left-radius' => array(
    '-moz-border-radius-topleft',
    '-webkit-border-top-left-radius',
    '-khtml-border-top-left-radius',
  ),
  'box-shadow' => array(
    '-moz-box-shadow',
    '-webkit-box-shadow',
  ),
  'box-sizing' => array(
    '-moz-box-sizing',
    '-webkit-box-sizing',
  ),
  'opacity' => array(
    '-moz-opacity',
    '-webkit-opacity',
    '-khtml-opacity',
  ),
);