26 lines
843 B
JavaScript
26 lines
843 B
JavaScript
import { getVendorSettings } from '../getVendorSettings';
|
|
var autoPrefixNames = {
|
|
'user-select': 1,
|
|
};
|
|
export function prefixRules(rulePairs, index) {
|
|
var vendorSettings = getVendorSettings();
|
|
var name = rulePairs[index];
|
|
if (autoPrefixNames[name]) {
|
|
var value = rulePairs[index + 1];
|
|
if (autoPrefixNames[name]) {
|
|
if (vendorSettings.isWebkit) {
|
|
rulePairs.push('-webkit-' + name, value);
|
|
}
|
|
if (vendorSettings.isMoz) {
|
|
rulePairs.push('-moz-' + name, value);
|
|
}
|
|
if (vendorSettings.isMs) {
|
|
rulePairs.push('-ms-' + name, value);
|
|
}
|
|
if (vendorSettings.isOpera) {
|
|
rulePairs.push('-o-' + name, value);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
//# sourceMappingURL=prefixRules.js.map
|