0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Commit Graph

9432 Commits

Author SHA1 Message Date
Heinrich Fenkart
7bc8db9558 Bump grunt-jscs-checker to 0.5.1 2014-06-19 21:08:04 +02:00
Chris Rebert
77ff226e3f Merge pull request #13877 from twbs/npm-shrinkwrap
Switch to uber/npm-shrinkwrap for npm-shrinkwrap.json generation
2014-06-19 11:58:41 -07:00
Chris Rebert
3c4ba2a08c Switch to uber/npm-shrinkwrap for npm-shrinkwrap.json generation
Instead of our homegrown grunt/shrinkwrap.js
Fixes #13483.
New npm-shrinkwrap.json is human-readable but still in a consistent/stable format.
Should aid debugging, produce better diffs, and be less prone to merge conflicts
2014-06-19 11:46:37 -07:00
Chris Rebert
d37b0ffa5f Merge pull request #13870 from BBosman/gray-light
Fix @gray-light in docs
2014-06-19 06:35:32 -07:00
Bas Bosman
91d2cf848b Fix @gray-light in docs 2014-06-19 14:56:43 +02:00
XhmikosR
abe7afd87a Run grunt. 2014-06-19 12:58:34 +03:00
XhmikosR
4686d1483b Merge pull request #13829 from BBosman/preserve
Always use preserveComment: 'some'
2014-06-19 12:57:52 +03:00
Mark Otto
5b4b4b5279 Merge pull request #13865 from BBosman/deprecated
Use full deprecation version
2014-06-19 02:18:50 -07:00
Bas Bosman
ae793ad749 Use full deprecation version 2014-06-19 11:09:35 +02:00
XhmikosR
0418c7678d Update JSZip to v2.3.0. 2014-06-19 12:03:10 +03:00
Mark Otto
bd541083f1 Nuke equal height columns example; got a few bugs that make it not ready for prime time in v3.2 2014-06-19 02:02:23 -07:00
Mark Otto
162a27f67a grunt 2014-06-18 23:50:16 -07:00
Mark Otto
f685f2a670 Merge pull request #13861 from twbs/new_striped_progress_bar_class
Make striped progress bars its own class
2014-06-18 23:32:17 -07:00
Mark Otto
a012ba465d lol words 2014-06-18 23:21:44 -07:00
Mark Otto
99f176e7ec rewrite striped and active to deprecate the parent selectors, change the docs 2014-06-18 22:35:05 -07:00
Mark Otto
d4eb5552b3 Merge branch 'master' into new_striped_progress_bar_class 2014-06-18 22:29:37 -07:00
Mark Otto
53d68a099d Merge pull request #13859 from twbs/skew_you
Change skew(x,y) to skewX skewY
2014-06-18 22:27:12 -07:00
Mark Otto
d222c21f84 grunt 2014-06-18 22:24:56 -07:00
Mark Otto
e93bf15f60 Merge branch 'master' of github.com:twbs/bootstrap 2014-06-18 22:23:52 -07:00
Mark Otto
4c21146ce3 Merge pull request #13860 from twbs/fixes_13346
Add a variable for .dl-horizontal's offset
2014-06-18 22:23:42 -07:00
Mark Otto
74982cf101 grunt 2014-06-18 22:23:31 -07:00
Mark Otto
02642350f8 Fixes #13400, #13415: actually document the existing practice for links in panel headings 2014-06-18 22:16:15 -07:00
Mark Otto
2a380f6bd8 fixes #13347: make striped progress bars its own class 2014-06-18 21:58:29 -07:00
Mark Otto
c7cd63107b fixes #13346: add a variable for .dl-horizontal's offset 2014-06-18 21:52:34 -07:00
Mark Otto
783b2268c2 change skew(x,y) to skewX skewY because mdn told me so 2014-06-18 21:26:53 -07:00
Mark Otto
f4dd02f531 Merge pull request #13857 from twbs/list_group_small
List group headings and small/.small
2014-06-18 19:50:53 -07:00
Mark Otto
80ffe45afe Merge pull request #13851 from ahoereth/patch-1
Add white-space: nowrap; to .dropdown-header
2014-06-18 19:49:44 -07:00
Mark Otto
508d9f0d65 fix part of #13111: hide the docs nav on small and below devices 2014-06-18 19:18:02 -07:00
Mark Otto
43d21b97f2 fixes #13093: reset the background color and remove background image on disabled theme buttons 2014-06-18 19:14:26 -07:00
Mark Otto
20b6ae6357 fixes #13020: proper color for small/.small in list group headings 2014-06-18 18:47:32 -07:00
Mark Otto
11cf54f9df grunt 2014-06-18 18:22:11 -07:00
Mark Otto
46e8a5817d fixes #10073: add width: 100%; for ie10 and below to size svg.img-responsive correctly 2014-06-18 17:34:09 -07:00
Mark Otto
fdf174e498 grunt dist 2014-06-18 15:46:38 -07:00
Mark Otto
cde13fbe11 Merge pull request #13854 from ssorallen/gray-light-higher-contrast
Darken @gray-light to meet accessibility guidelines
2014-06-18 15:45:57 -07:00
Chris Rebert
d75506fbec among supported WebKit/Blink browsers, this now only applies to Safari
Missed this in 4cbc8d49b1
2014-06-18 15:12:17 -07:00
Ross Allen
8c403dc1dc Darken @gray-light to meet accessibility guidelines
`@gray-light` darkens from #999 to #777, which puts `.text-muted` at the
threshold for the 4.5:1 WCAG minimum contrast[1]. #777:#fff is 4.48:1.

The “Example” headers in docs become #959595, which is contrast ratio
3:1, the minimum for larger text. Since the headers are less important
than the surrounding text, 3:1 is fine and an improvement on the
previous #bbb:#fff (1.92:1).

Fixes issue #13847.

[1] http://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html
2014-06-18 14:47:14 -07:00
ahoereth
de55fb85a0 Add white-space: nowrap; to .dropdown-header
Dropdowns adjust their width to the width of their containing a elements - which have no line breaks ([*](f226463b05)). Consistent to this dropdown-headers also should be prevent to contain line breaks.
2014-06-18 19:07:55 +02:00
XhmikosR
6d45f733e5 Run grunt. 2014-06-18 13:16:32 +03:00
Chris Rebert
1c42dfcd53 Merge pull request #13842 from twbs/fix-13811
update "is jQuery defined" check for UMD compatibility
2014-06-17 23:35:22 -07:00
Chris Rebert
4f95989c38 FFS 2014-06-17 19:09:28 -07:00
Chris Rebert
bb83d33812 sigh 2014-06-17 19:06:32 -07:00
Chris Rebert
cb70382ed6 Travis: per today's PyPI issues, travis_retry the pip install step
Also, remove deprecated --use-mirrors option
2014-06-17 18:59:33 -07:00
Chris Rebert
f347d7d955 address #13811 2014-06-17 18:53:52 -07:00
Chris Rebert
5cfd6b5153 Merge branch 'deps' 2014-06-17 18:49:13 -07:00
Chris Rebert
85c15eec0f Gruntfile: add note about duplicate copy of jqueryCheck code
Refs #13842
2014-06-17 18:48:15 -07:00
XhmikosR
e42de7511a Update dependencies. 2014-06-17 18:29:17 -07:00
Chris Rebert
8bee6549ad grunt dist 2014-06-17 18:23:14 -07:00
Chris Rebert
4300d430e6 Merge branch 'erwanjegouzo-master' 2014-06-17 17:57:07 -07:00
Erwan Jegouzo
1b63d0b9ba fix for #13747
Closes #13782 by merging it.
2014-06-17 17:56:15 -07:00
XhmikosR
316e0c7b1b Merge pull request #13845 from BBosman/dismissible
Fix dismissible spelling
2014-06-18 01:01:17 +03:00