Resolves #36, package update
Updated npm packaging info, updated placeholder definitions.
This commit is contained in:
parent
e0d61ddbdb
commit
fdd8168b58
12 changed files with 49 additions and 12 deletions
|
@ -1,3 +1,4 @@
|
|||
docs/v1
|
||||
docs/v2
|
||||
docs/page_thumb.png
|
||||
docs/page_thumb.png
|
||||
prepros-6\.config
|
||||
|
|
5
dist/mini-default.css
vendored
5
dist/mini-default.css
vendored
|
@ -961,6 +961,11 @@ input:not([type="button"]):not([type="submit"]):not([type="reset"])[readonly], t
|
|||
color: #616161;
|
||||
}
|
||||
|
||||
::placeholder {
|
||||
opacity: 1;
|
||||
color: #616161;
|
||||
}
|
||||
|
||||
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
|
|
2
dist/mini-default.min.css
vendored
2
dist/mini-default.min.css
vendored
File diff suppressed because one or more lines are too long
5
dist/mini-lite.css
vendored
5
dist/mini-lite.css
vendored
|
@ -877,6 +877,11 @@ input:not([type="button"]):not([type="submit"]):not([type="reset"])[readonly], t
|
|||
color: #616161;
|
||||
}
|
||||
|
||||
::placeholder {
|
||||
opacity: 1;
|
||||
color: #616161;
|
||||
}
|
||||
|
||||
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
|
|
2
dist/mini-lite.min.css
vendored
2
dist/mini-lite.min.css
vendored
File diff suppressed because one or more lines are too long
5
dist/mini-nord.css
vendored
5
dist/mini-nord.css
vendored
|
@ -959,6 +959,11 @@ input:not([type="button"]):not([type="submit"]):not([type="reset"])[readonly], t
|
|||
color: #616161;
|
||||
}
|
||||
|
||||
::placeholder {
|
||||
opacity: 1;
|
||||
color: #616161;
|
||||
}
|
||||
|
||||
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
|
|
2
dist/mini-nord.min.css
vendored
2
dist/mini-nord.min.css
vendored
File diff suppressed because one or more lines are too long
5
dist/mini-sucroa.css
vendored
5
dist/mini-sucroa.css
vendored
|
@ -946,6 +946,11 @@ input:not([type="button"]):not([type="submit"]):not([type="reset"])[readonly], t
|
|||
color: #493e4b;
|
||||
}
|
||||
|
||||
::placeholder {
|
||||
opacity: 1;
|
||||
color: #493e4b;
|
||||
}
|
||||
|
||||
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
|
|
2
dist/mini-sucroa.min.css
vendored
2
dist/mini-sucroa.min.css
vendored
File diff suppressed because one or more lines are too long
|
@ -1003,3 +1003,12 @@
|
|||
- Updated `nord` flavor to be fully up-to-date with the latest version of **mini.css**.
|
||||
- Added maintainers to all flavors.
|
||||
- Updated CHANGELOG to reflect latest changes for **v2.1.1**.
|
||||
|
||||
# v2.1.2 Development Log
|
||||
|
||||
## 20170421
|
||||
|
||||
- Updated `.npmignore` to not include the `prepros-6.config` file.
|
||||
- Updated `package.json` with proper `homepage` link, changed order of keywords, added `node-sass` in `devDependencies`.
|
||||
- Added `::placeholder` styling (no-prefix), dealing with #36.
|
||||
- Bumped all flavor files to include updated `::placeholder` definitions.
|
||||
|
|
17
package.json
17
package.json
|
@ -13,21 +13,24 @@
|
|||
"type": "git",
|
||||
"url": "git+https://github.com/Chalarangelo/mini.css.git"
|
||||
},
|
||||
"devDependencies": {
|
||||
"node-sass": "^4.5.2",
|
||||
},
|
||||
"keywords": [
|
||||
"mini.css",
|
||||
"mini",
|
||||
"CSS",
|
||||
"framework",
|
||||
"toolkit",
|
||||
"css",
|
||||
"sass",
|
||||
"minimal",
|
||||
"responsive",
|
||||
"style-agnostic",
|
||||
"Sass"
|
||||
"framework",
|
||||
"toolkit",
|
||||
"mini",
|
||||
"mini.css"
|
||||
],
|
||||
"author": "Angelos Chalaris (Chalarangelo)",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/Chalarangelo/mini.css/issues"
|
||||
},
|
||||
"homepage": "https://github.com/Chalarangelo/mini.css#readme"
|
||||
"homepage": "https://chalarangelo.github.io/mini.css/"
|
||||
}
|
||||
|
|
|
@ -209,6 +209,10 @@ input:not([type]), [type="text"], [type="email"], [type="number"], [type="search
|
|||
opacity: 1;
|
||||
color: $input-placeholder-fore-color;
|
||||
}
|
||||
::placeholder {
|
||||
opacity: 1;
|
||||
color: $input-placeholder-fore-color;
|
||||
}
|
||||
// Definitions for the button and button-like elements.
|
||||
// Different elements are styled based on the same set of rules.
|
||||
// Reset for Firefox focusing on button elements.
|
||||
|
|
Loading…
Reference in a new issue