mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
Adding Safari 7 support to autoprefixer (#9534)
PhantomJS is using a rather outdated version of WebKit, which requires various css-prefixes to render correctly. PhantomJS doesn't have a specific user-agent, and Safari 7 is the closet version of WebKit.
This commit is contained in:
parent
90c821b11e
commit
eeb4a7dfeb
1 changed files with 2 additions and 1 deletions
|
@ -3,7 +3,8 @@ module.exports = {
|
|||
require('autoprefixer')({
|
||||
browsers: [
|
||||
'last 2 versions',
|
||||
'> 5%'
|
||||
'> 5%',
|
||||
'Safari 7' // for PhantomJS support
|
||||
]
|
||||
})
|
||||
]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue