mirror of
https://github.com/pure-css/pure
synced 2024-12-21 02:25:54 +01:00
Merge branch 'master' into help
This commit is contained in:
commit
bee0e2dbde
@ -276,7 +276,7 @@ grunt.registerMultiTask('license', 'Stamps license banners on files.', function
|
||||
});
|
||||
});
|
||||
|
||||
grunt.log.writeln('Stampped license on ' + String(tally).cyan + ' files.');
|
||||
grunt.log.writeln('Stamped license on ' + String(tally).cyan + ' files.');
|
||||
});
|
||||
|
||||
// -- Contextualize Task -------------------------------------------------------
|
||||
|
@ -4,7 +4,10 @@ Pure Change History
|
||||
NEXT
|
||||
----
|
||||
|
||||
* Fixed: Responsive grids fails to apply when another class precedes the unit
|
||||
class in markup. [#44]
|
||||
|
||||
* Fixed: textarea does not match input styling in forms. [#49]
|
||||
|
||||
|
||||
0.1.0 (2013-05-24)
|
||||
|
33
README.md
33
README.md
@ -103,11 +103,44 @@ Feel free to file bugs and submit pull requests on Github! When submitting a
|
||||
pull request, please checkout a new feature branch, and submit your pull request
|
||||
from it. Please do not submit pull requests from your `master` branch.
|
||||
|
||||
### Docs and Website
|
||||
|
||||
Pure's website is also open source, so please file any issues or pull requests
|
||||
for the docs or website over at the [`pure-site`][pure-site] repo.
|
||||
|
||||
### CLA
|
||||
|
||||
Please [sign the CLA][] before submitting pull requests. We can't merge your
|
||||
pull requests unless you have a signed CLA. It's super easy and can be done
|
||||
online. For more information regarding the CLA, please visit the
|
||||
[Contribute][] page.
|
||||
|
||||
### Versioning
|
||||
|
||||
Pure adheres to [Semantic Versioning 2.0](http://semver.org/).
|
||||
|
||||
|
||||
[pure-site]: https://github.com/yui/pure-site
|
||||
[sign the CLA]: https://secure.echosign.com/public/hostedForm?formid=A9PFU5T58653A
|
||||
[Contribute]: http://yuilibrary.com/contribute/cla/
|
||||
|
||||
|
||||
Browser Support and Testing
|
||||
---------------------------
|
||||
|
||||
Pure is tested and works in:
|
||||
|
||||
* IE 7+
|
||||
* Latest Stable Firefox/Chrome/Safari
|
||||
* iOS 6.x
|
||||
* Android 4.x
|
||||
|
||||
Before submitting pull requests, please ensure that you open the test HTML files
|
||||
in these environments. If you don't have access to all these environments, list
|
||||
the ones that you have tested in on the pull request description. That way, we
|
||||
know what's missing, and can help you out.
|
||||
|
||||
|
||||
License
|
||||
-------
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
.pure-form input,
|
||||
.pure-form select {
|
||||
.pure-form select,
|
||||
.pure-form textarea {
|
||||
padding: 0.5em 0.6em;
|
||||
display: inline-block;
|
||||
border: 1px solid #ccc;
|
||||
@ -18,7 +19,8 @@
|
||||
}
|
||||
|
||||
.pure-form input:focus,
|
||||
.pure-form select:focus {
|
||||
.pure-form select:focus,
|
||||
.pure-form textarea:focus {
|
||||
outline: 0;
|
||||
outline: thin dotted \9; /* IE6-9 */
|
||||
border-color: #129FEA;
|
||||
|
@ -29,12 +29,14 @@
|
||||
}
|
||||
}
|
||||
@media (max-width:480px) {
|
||||
.pure-g-r > [class ^= "pure-u"] {
|
||||
.pure-g-r > .pure-u,
|
||||
.pure-g-r > [class *= "pure-u-"] {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
@media (max-width:767px) {
|
||||
.pure-g-r > [class ^= "pure-u"] {
|
||||
.pure-g-r > .pure-u,
|
||||
.pure-g-r > [class *= "pure-u-"] {
|
||||
width: 100%;
|
||||
}
|
||||
.pure-hidden-phone {
|
||||
|
@ -40,14 +40,14 @@
|
||||
|
||||
<div class="pure-g-r">
|
||||
<h1 class="pure-u-1 centered">Example.</h1>
|
||||
<div class="pure-u-1-4">
|
||||
<div class="pure-foo pure-u-1-4">
|
||||
<div class="cell">
|
||||
<h3>Fast</h3>
|
||||
<p>YUI's lightweight core and modular architecture make it scalable, fast, and robust. Built by frontend engineers at Yahoo!, YUI powers the most popular websites in the world.</p>
|
||||
</div>
|
||||
</div><!--/span-->
|
||||
|
||||
<div class="pure-u-1-4">
|
||||
<div class="pure-u-1-4 pure-foo">
|
||||
<div class="cell">
|
||||
<h3>Complete</h3>
|
||||
<p>YUI's intuitive and well-documented API takes you from basic DOM handling to building performant and maintainable applications on desktop browsers, mobile devices, and servers.</p>
|
||||
|
Loading…
Reference in New Issue
Block a user