Resolves #36, package update

Updated npm packaging info, updated placeholder definitions.
This commit is contained in:
Angelos Chalaris 2017-04-21 13:49:16 +03:00
parent e0d61ddbdb
commit fdd8168b58
12 changed files with 49 additions and 12 deletions

View file

@ -1,3 +1,4 @@
docs/v1 docs/v1
docs/v2 docs/v2
docs/page_thumb.png docs/page_thumb.png
prepros-6\.config

View file

@ -961,6 +961,11 @@ input:not([type="button"]):not([type="submit"]):not([type="reset"])[readonly], t
color: #616161; 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 { button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
border-style: none; border-style: none;
padding: 0; padding: 0;

File diff suppressed because one or more lines are too long

5
dist/mini-lite.css vendored
View file

@ -877,6 +877,11 @@ input:not([type="button"]):not([type="submit"]):not([type="reset"])[readonly], t
color: #616161; 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 { button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
border-style: none; border-style: none;
padding: 0; padding: 0;

File diff suppressed because one or more lines are too long

5
dist/mini-nord.css vendored
View file

@ -959,6 +959,11 @@ input:not([type="button"]):not([type="submit"]):not([type="reset"])[readonly], t
color: #616161; 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 { button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
border-style: none; border-style: none;
padding: 0; padding: 0;

File diff suppressed because one or more lines are too long

View file

@ -946,6 +946,11 @@ input:not([type="button"]):not([type="submit"]):not([type="reset"])[readonly], t
color: #493e4b; 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 { button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
border-style: none; border-style: none;
padding: 0; padding: 0;

File diff suppressed because one or more lines are too long

View file

@ -1003,3 +1003,12 @@
- Updated `nord` flavor to be fully up-to-date with the latest version of **mini.css**. - Updated `nord` flavor to be fully up-to-date with the latest version of **mini.css**.
- Added maintainers to all flavors. - Added maintainers to all flavors.
- Updated CHANGELOG to reflect latest changes for **v2.1.1**. - 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.

View file

@ -13,21 +13,24 @@
"type": "git", "type": "git",
"url": "git+https://github.com/Chalarangelo/mini.css.git" "url": "git+https://github.com/Chalarangelo/mini.css.git"
}, },
"devDependencies": {
"node-sass": "^4.5.2",
},
"keywords": [ "keywords": [
"mini.css", "css",
"mini", "sass",
"CSS",
"framework",
"toolkit",
"minimal", "minimal",
"responsive", "responsive",
"style-agnostic", "style-agnostic",
"Sass" "framework",
"toolkit",
"mini",
"mini.css"
], ],
"author": "Angelos Chalaris (Chalarangelo)", "author": "Angelos Chalaris (Chalarangelo)",
"license": "MIT", "license": "MIT",
"bugs": { "bugs": {
"url": "https://github.com/Chalarangelo/mini.css/issues" "url": "https://github.com/Chalarangelo/mini.css/issues"
}, },
"homepage": "https://github.com/Chalarangelo/mini.css#readme" "homepage": "https://chalarangelo.github.io/mini.css/"
} }

View file

@ -209,6 +209,10 @@ input:not([type]), [type="text"], [type="email"], [type="number"], [type="search
opacity: 1; opacity: 1;
color: $input-placeholder-fore-color; color: $input-placeholder-fore-color;
} }
::placeholder {
opacity: 1;
color: $input-placeholder-fore-color;
}
// Definitions for the button and button-like elements. // Definitions for the button and button-like elements.
// Different elements are styled based on the same set of rules. // Different elements are styled based on the same set of rules.
// Reset for Firefox focusing on button elements. // Reset for Firefox focusing on button elements.