aboutsummaryrefslogtreecommitdiff
path: root/css.html
AgeCommit message (Collapse)AuthorFilesLines
2013-08-19Clarify responsive tables and tuck marginMark Otto1-1/+1
2013-08-19Copy edits, fix classes for demo, add subnav linksMark Otto1-11/+16
2013-08-19Merge branch '3.0.0-wip' of https://github.com/eratzlaff/bootstrap into ↵Mark Otto1-0/+56
eratzlaff-3.0.0-wip
2013-08-19Add Test case to documentationElvis Ratzlaff1-0/+56
2013-08-19update grid options max container width in docs to reflect latest changesMark Otto1-3/+3
2013-08-18smaller h1 and h2Mark Otto1-2/+2
2013-08-18Add responsive tables with help of `.table-responsive` wrapperMark Otto1-7/+108
2013-08-18Merge branch '3.0.0-wip' into bs3_homepageMark Otto1-15/+1
Conflicts: customize.html examples/justified-nav/justified-nav.css
2013-08-18clarify inline block mention in docsMark Otto1-1/+1
2013-08-18remove old glyphicons mentionMark Otto1-14/+0
2013-08-17it's levi-OH-sa, not levi-oh-SARMark Otto1-1/+1
2013-08-17Update helper classes to reflect changes and mention mixinsMark Otto1-5/+5
2013-08-17mo betta heading examples labelsMark Otto1-6/+6
2013-08-17more accurate grid classes in examplesMark Otto1-75/+75
2013-08-16finish up second pass through docs nav, headings, organization, naming, etc ↵Mark Otto1-21/+21
(another run through at #9710)
2013-08-15remove grid examples calloutMark Otto1-6/+0
2013-08-15fixes #9663: third part, document the resetsMark Otto1-1/+14
2013-08-15form control state orderingMark Otto1-8/+8
2013-08-15improve table classes' snippets and orderingMark Otto1-15/+22
2013-08-15drop legend from docs example per #9626Mark Otto1-44/+38
2013-08-15add clearfix mention to another grid example and clear up examplesMark Otto1-13/+9
2013-08-15Fixes #9617: consistent variation order, add .label-primaryMark Otto1-4/+4
2013-08-15Merge pull request #9591 from BBosman/9523Mark Otto1-4/+4
Doc fixes related to #9523
2013-08-15Update css.htmlChristian1-6/+6
I know the form code are only examples, but it'd be good to encourage usage of the proper input type for the email inputs by changing the type from "text" to "email".
2013-08-15Doc fixes related to #9523Bas Bosman1-4/+4
2013-08-14Merge branch '3.0.0-wip' of github.com:twbs/bootstrap into 3.0.0-wipMark Otto1-1/+1
2013-08-14fixes #9522Mark Otto1-0/+2
2013-08-14fix inaccurate comment in media query docsChris Rebert1-1/+1
2013-08-14fix #9454: add grid docs about responsive column clearingMark Otto1-0/+15
2013-08-14fixes #9523: more accurate grid table breakpoint numbersMark Otto1-11/+3
2013-08-14tweak note about zoom disabled on mobileGabriele Cirulli1-1/+1
2013-08-14improve the "zoom disabled" documentationGabriele Cirulli1-1/+1
2013-08-14add information on how to disable mobile zoom to the docsGabriele Cirulli1-0/+4
2013-08-14CSS Grid old classes in usePedro Pereira1-2/+2
2013-08-13TypoMatthew Leffler1-1/+1
2013-08-14fix mixin code examplesaiwang1-1/+1
2013-08-13Fixes #9415Bas Bosman1-1/+1
2013-08-12add src attribute to holder.js-powered <img>s so that they validateChris Rebert1-3/+3
use `data:` URL of empty invalid PNG: src="data:image/png;base64,"
2013-08-12use unique IDs in Forms examples in docsChris Rebert1-32/+32
2013-08-12Headings docs: use put <hN>s within <td>s instead of <th>sChris Rebert1-6/+6
2013-08-12add alt text to <img>s in Images section of CSS docsChris Rebert1-6/+6
2013-08-12Validation states docs: fix closing tagChris Rebert1-1/+1
2013-08-12fix ID of <select> in fieldset[disabled] exampleChris Rebert1-2/+2
2013-08-12update grid xs mixin and update docs to match new mixinsMark Otto1-5/+5
2013-08-12copyedit media queries docs added in aefed0ada9791338be11dd5318b24f17f517d51aChris Rebert1-2/+2
2013-08-12fixes #9382: inline forms now require use of .form-group for proper ↵Mark Otto1-8/+16
alignment of all form controls
2013-08-12Add missing aria-hidden attribs to close buttonsBas Bosman1-2/+2
2013-08-12fixes #9317: document media queriesMark Otto1-0/+23
2013-08-12rename and refactor a smidge to add medium grid mixinsMark Otto1-12/+77
2013-08-12Media query (grid and responsive utilities) overhaulMark Otto1-116/+168
Grid classes have been changed to account for a fourth set of classes, meaning we now have XS, S, M, and L options. Specifically, we made the following changes: * Renames `.col-` to `.col-xs-` * Adds `.col-md-` for devices 992px wide and up * Remaps `.col-lg-` for devices 1200px wide and up Alongside that, we've updated our media queries to better handle advanced grid layouts: * All column classes now kick in when they hit a `min-width`, undoing the #9128 fix in https://github.com/twbs/bootstrap/commit/db45a60cc86190a060f0baf0b3961cb c690f3a65 * All column offsets, pushes, and pulls are scoped to an appropriate range, meaning a `min-width` and `max-width` (thanks for the idea, @eratzlaff) We've also modified the widths of our grid containers for the small device grid (now a max 720px instead of 728px) and large device grid (now a max 1140px instead of 1170px) to avoid horizontal scrollbar problems in Firefox (likely due to box-sizing, which is why we didn't see it in 2.x). Similarly, we've updated the responsive ultility classes to match the new four media query approach of the grid system. That means we've: * Added new `.visible-xs` and `.hidden-xs` classes * Reassigns visible and hidden classes for small, medium, and large to matching grid system media queries * Updates docs examples to match grid system and account for fourth utility range ----- Fixes the following: * #9135: fourth grid tier * #9302: undoes previous range change for small grid system, so no need to update any docs here * #8755: consistent grid and responsive utilities schemas) * #9195, #9216, and #9227: no more horizontal scrollbars