go integration and wikipedia
This commit is contained in:
parent
47a252e339
commit
ee90335b92
7828 changed files with 1307913 additions and 20807 deletions
19
frontend/node_modules/autoprefixer/lib/hacks/placeholder-shown.js
generated
vendored
Normal file
19
frontend/node_modules/autoprefixer/lib/hacks/placeholder-shown.js
generated
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
let Selector = require('../selector')
|
||||
|
||||
class PlaceholderShown extends Selector {
|
||||
/**
|
||||
* Return different selectors depend on prefix
|
||||
*/
|
||||
prefixed(prefix) {
|
||||
if (prefix === '-moz-') {
|
||||
return ':-moz-placeholder'
|
||||
} else if (prefix === '-ms-') {
|
||||
return ':-ms-input-placeholder'
|
||||
}
|
||||
return `:${prefix}placeholder-shown`
|
||||
}
|
||||
}
|
||||
|
||||
PlaceholderShown.names = [':placeholder-shown']
|
||||
|
||||
module.exports = PlaceholderShown
|
||||
Loading…
Add table
Add a link
Reference in a new issue