Non-functional maintenance

This commit is contained in:
Nicolas Gallagher 2017-05-02 11:07:41 -07:00
parent 44f13250a4
commit 62b4a86c28
5 changed files with 4 additions and 33 deletions

1
.gitignore vendored
View File

@ -1,2 +1 @@
node_modules node_modules
npm-debug.log

View File

@ -197,11 +197,7 @@ version numbers are incremented in a project. Versions are written as
MAJOR.MINOR.PATCH. MAJOR.MINOR.PATCH.
Any change to CSS rules whatsoever is considered backwards-breaking and will Any change to CSS rules whatsoever is considered backwards-breaking and will
result in a new **major** release. Others changes with no impact on rendering result in a new **major** release. No changes to CSS rules can add
are considered backwards-compatible and will result in a new **patch** release. functionality in a backwards-compatible manner, therefore no changes are
considered **minor**. Others changes with no impact on rendering are considered
No changes to CSS rules can add functionality in a backwards-compatible manner, backwards-compatible and will result in a new **patch** release.
therefore no changes are considered **minor**. For instance, a normalization on
an element selector may override a user style on a universal selector, a
change to `opacity` might cause [inputs to disappear](https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/3901363/),
or a change to `background-color` might cause [backgrounds to shrink](https://github.com/jonathantneal/sanitize.css/issues/42).

View File

@ -104,27 +104,11 @@ addresses these issues without removing the benefits of search inputs (e.g.
showing past searches). Safari (but not Chrome) will clip the cancel button on showing past searches). Safari (but not Chrome) will clip the cancel button on
when it has padding (and `textfield` appearance). when it has padding (and `textfield` appearance).
#### `::placeholder`
In Edge, placeholders will disappear on `relative` or `absolute` positioned
`<input>` elements if you use `opacity` less than `1` due to a [bug](https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/3901363/).
## Contributing ## Contributing
Please read the [contribution guidelines](CONTRIBUTING.md) in order to make the Please read the [contribution guidelines](CONTRIBUTING.md) in order to make the
contribution process easy and effective for everyone involved. contribution process easy and effective for everyone involved.
## Similar Projects
- [opinionate.css](https://github.com/adamgruber/opinionate.css) - Supplement to normalize, restores opinionated rules removed in v6
- [sanitize.css](https://github.com/jonathantneal/sanitize.css) - Alternative to normalize, adheres to common developer expectations and preferences
## Acknowledgements
Normalize.css is a project by [Nicolas Gallagher](https://github.com/necolas),
co-created with [Jonathan Neal](https://github.com/jonathantneal).
[changelog-image]: https://img.shields.io/badge/changelog-md-blue.svg?style=flat-square [changelog-image]: https://img.shields.io/badge/changelog-md-blue.svg?style=flat-square
[changelog-url]: CHANGELOG.md [changelog-url]: CHANGELOG.md

View File

@ -2,10 +2,6 @@
"name": "normalize-css", "name": "normalize-css",
"description": "A modern alternative to CSS resets", "description": "A modern alternative to CSS resets",
"main": "normalize.css", "main": "normalize.css",
"authors": [
"Jonathan Neal <jonathantneal@hotmail.com> (http://jonathantneal.com/)",
"Nicolas Gallagher <nicolas@nicolasgallagher.com> (http://nicolasgallagher.com/)"
],
"license": "MIT", "license": "MIT",
"ignore": [ "ignore": [
"CHANGELOG.md", "CHANGELOG.md",

View File

@ -16,10 +16,6 @@
"test": "stylelint normalize.css" "test": "stylelint normalize.css"
}, },
"repository": "necolas/normalize.css", "repository": "necolas/normalize.css",
"contributors": [
"Jonathan Neal <jonathantneal@hotmail.com> (http://jonathantneal.com/)",
"Nicolas Gallagher <nicolas@nicolasgallagher.com> (http://nicolasgallagher.com/)"
],
"license": "MIT", "license": "MIT",
"bugs": "https://github.com/necolas/normalize.css/issues", "bugs": "https://github.com/necolas/normalize.css/issues",
"homepage": "https://necolas.github.io/normalize.css", "homepage": "https://necolas.github.io/normalize.css",