Commit Graph

352 Commits

Author SHA1 Message Date
Hannes Nevalainen
09a7ce6a79 Update to fontawesome 4.0.3. 2014-03-21 16:18:13 +01:00
Eric Ferraiuolo
90f33406d7 Merge pull request #294 from tilomitra/forms-font-size
[Fix #265]: Remove `font-size` rules from .pure-form children
2014-02-11 14:59:54 -05:00
Tilo
592e5b48e8 update font-sizes to be whole-number px values when converted 2014-02-11 11:13:41 -08:00
Tilo Mitra
bf4ceed586 add HISTORY.md entry for #265 fix 2014-02-09 23:45:53 -05:00
Tilo Mitra
f2b5fd06bc [Fix #265]: Remove font-size rules from .pure-form children
This commit removes `font-size` rules from `<input>`, `<legend>`, and
`<fieldset>` elements within `.pure-form`. I did keep the font-size
rules for `.pure-form-help-inline` since that size is meant to denote
importance.
2014-02-09 23:44:27 -05:00
Tilo Mitra
ac50044dd7 add HISTORY.md entry for #283 fix 2014-02-09 23:29:56 -05:00
Tilo Mitra
def7bbad8a Merge branch 'update-color-padding-for-chrome'
Conflicts:
	src/forms/css/forms.css
2014-02-09 23:27:34 -05:00
Eric Ferraiuolo
2af537d489 Remove unused dependency from Gruntfile 2014-02-07 03:50:34 -05:00
Eric Ferraiuolo
5ee9222705 Tweak bower_json Grunt task to be more configurable 2014-02-07 03:43:40 -05:00
Eric Ferraiuolo
1f9ec2a22d Merge branch 'master' of github.com:stevenvachon/pure into stevenvachon-master
Conflicts:
	bower.json
2014-02-06 23:42:54 -05:00
Eric Ferraiuolo
c944797ddb Bump version to PRE 2014-02-06 18:04:46 -05:00
Eric Ferraiuolo
e70e97f7e3 Bump version to v0.4.1 2014-02-06 17:57:11 -05:00
Steven Vachon
2d31f31806 added config 2014-02-06 17:44:02 -05:00
Eric Ferraiuolo
e393a521f8 Update HISTORY and README for 0.4.1, the new 0.4.0 2014-02-06 17:38:30 -05:00
Eric Ferraiuolo
828ff53587 Downgrade grunt-contrib-cssmin to v0.6.x which uses clean-css v1.x
grunt-conrib-cssmin v0.7.x uses clean-css v2.x which adds "advanced"
options which totally borked the Pure v0.4.0 release.

**Note to self:** If I ever write a trivial Grunt plugin that wraps some
dependency, tie their version releases to the same slot, e.g. bump the
major version number if the dependency's major version number changes.
2014-02-06 17:22:17 -05:00
Eric Ferraiuolo
a99ea2910c Bump version to PRE 2014-02-06 15:34:30 -05:00
Eric Ferraiuolo
e49bc1d528 Bump version to v0.4.0 2014-02-06 15:24:46 -05:00
Eric Ferraiuolo
38598baa5c Update and tweak HISTORY.md 2014-02-06 15:18:32 -05:00
Tilo
1e3747dcad Merge pull request #290 from tilomitra/261-fix
Separate out `:not()` selectors from CSS 2.1 selectors.
2014-02-06 01:51:35 -05:00
Tilo Mitra
06fb6d673f fix dangling brace 2014-02-06 01:49:54 -05:00
Tilo Mitra
f0fa81f8f1 wrap comments at 80 chars 2014-02-06 01:45:26 -05:00
Tilo Mitra
b4755b0bd3 Separate out :not() selectors from CSS 2.1 selectors.
IE8 won't execute the CSS block if it contains a CSS3 selector.
This makes IE8 still execute the CSS, and CSS3-compliant browsers
can support the `:not()`.
2014-02-06 01:34:06 -05:00
Eric Ferraiuolo
a6a38caa4f Update grunt-contrib-compress dependency and swich to release tarballs
To resolve file mode issues with the .zip release files, this switches
to using tarballs instead.
2014-02-06 00:11:51 -05:00
Eric Ferraiuolo
82b16cf953 Update copyright to 2014 2014-02-06 00:11:08 -05:00
Steven Vachon
1e0f0b5efe add “main” to bower.json 2014-02-05 12:52:39 -05:00
Jon Petto
b6076530b4 Reduce padding/add room on color input for Chrome (v32/34 OS X). 2014-01-28 20:32:21 -06:00
Steven Vachon
49f78812dc Remove transitions from Buttons and Forms
Fixes #273
2014-01-16 12:04:28 -05:00
Eric Ferraiuolo
99fade7c40 Update dev dependencies 2014-01-03 12:57:54 -05:00
Tilo Mitra
3149eb1079 update HISTORY.md with contents of 25bcbc43 2013-12-18 11:44:04 -05:00
Tilo
b83a8208bd Merge pull request #263 from funkyvisions/noinput
Added styling for input tag without type
2013-12-18 08:41:20 -08:00
Doug Davies
25bcbc4374 Added styling for input tag without type 2013-12-17 17:23:32 -05:00
Eric Ferraiuolo
c0796ce4fa Bump rework-pure-grids dependency
Fixes #260
2013-12-17 14:42:40 -05:00
Eric Ferraiuolo
bcefa0d3ae Update README.md
Add iOS 7 to list of supported browsers.
2013-12-08 13:55:19 -05:00
Tilo
4fcd67dfa1 Merge pull request #256 from ericf/hidden
Add `[hidden]` selector to Base to counteract all `display` declarations
2013-12-08 09:12:47 -08:00
Eric Ferraiuolo
ba39a319f3 Add [hidden] selector to Base to counteract all display declarations
Anytime a Pure style rule uses the `display` declaration with a value
other than `none`, using the `hidden` HTML attribute on that element
won't have the desired affect of hiding that element. To counteract
this, A new rule has been added to Base to force
`display: none !important;` on elements that use the `hidden` HTML
attribute.

The following button will be hidden from view with these changes:

    <button class="pure-button" hidden>No showy</button>

Fixes #177
2013-12-07 15:40:32 -05:00
Eric Ferraiuolo
7b884f71f8 Add Base to src/ which is Pure's extras on top of Normalize.css 2013-12-07 15:27:58 -05:00
Eric Ferraiuolo
e46fa071d3 Update README.md
Tweak Pure + Bower info.
2013-12-03 21:46:35 -05:00
Eric Ferraiuolo
29793acc64 Merge pull request #253 from andrewwakeling/master
Add Bower instructions into README
2013-12-03 18:20:33 -08:00
Andrew Wakeling
3791518737 #218 2013-11-29 18:49:01 +11:00
Eric Ferraiuolo
97f862bd7e Improve CSSLint config to work on a per-module basis
The grunt-contrib-csslint Grunt plugin does odd things with the way it
processes CSSLint config. This improves linting by only applying in-file
lint overrides on a per-module basis.
2013-11-27 14:38:03 -05:00
Eric Ferraiuolo
b51c421888 Rearrange modules in pure.css rollup to: Base, Grids, etc.
This moves Grids to be the second module (after Base) in the pure.css
rollup files.
2013-11-27 14:36:18 -05:00
Eric Ferraiuolo
dbcc024732 Add credit to HISTORY entry 2013-11-26 02:09:32 -05:00
Eric Ferraiuolo
f8a2a1db57 Bump Normalize dependency to v1.1.3 (no code changes) 2013-11-26 02:07:00 -05:00
Eric Ferraiuolo
ce9b42848e Add HISTORY entry for Grids units changes 2013-11-26 02:05:59 -05:00
Eric Ferraiuolo
0b9e047581 Merge branch 'rework-grids' 2013-11-26 01:54:12 -05:00
Eric Ferraiuolo
30de24a70b Merge branch 'achalv-master' 2013-11-25 16:02:06 -05:00
Eric Ferraiuolo
d644d16a7d Update Buttons to use padding: 0.5em 1em 2013-11-25 16:01:28 -05:00
Eric Ferraiuolo
c39c75a540 Merge pull request #246 from tilomitra/fix-164
Fix #164: Remove hard-coded height for horizontal menus
2013-11-25 12:46:45 -08:00
Tilo Mitra
f315344625 update HISTORY.md with #164 fix 2013-11-25 14:20:27 -05:00
Tilo Mitra
50f502399a Menus: add example to help testing menu overflow 2013-11-25 14:18:23 -05:00