css-blank-pseudo 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changes to CSS Blank Pseudo
2
2
 
3
+ ### 0.1.4 (November 17, 2018)
4
+
5
+ - Update documentation
6
+
3
7
  ### 0.1.3 (November 17, 2018)
4
8
 
5
9
  - Improve CLI usage
package/README.md CHANGED
@@ -58,11 +58,11 @@ input:blank {
58
58
 
59
59
  /* becomes */
60
60
 
61
- .field[blank] label {
61
+ input[blank] {
62
62
  background-color: yellow;
63
63
  }
64
64
 
65
- .field:blank label {
65
+ input:blank {
66
66
  background-color: yellow;
67
67
  }
68
68
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "css-blank-pseudo",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Style form elements when they are empty",
5
5
  "author": "Jonathan Neal <jonathantneal@hotmail.com>",
6
6
  "license": "CC0-1.0",