private property SassParser::$_vendorProperties in Sassy 7.3
Same name and namespace in other branches
- 7 phamlp/sass/SassParser.php \SassParser::_vendorProperties
Defines the build-in vendor properties
Type: array built-in vendor properties
See also
vendor_properties
File
- phpsass/
SassParser.php, line 272
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',
),
);