aboutsummaryrefslogtreecommitdiff
path: root/less/responsive-utilities.less
AgeCommit message (Collapse)AuthorFilesLines
2014-08-04rename imported files to preface with underscore; rerun grunt distMark Otto1-152/+0
2014-07-09Drop the deprecated .visible-* classes (because we replaced them with ↵Mark Otto1-42/+0
.visible-*-block, -inline-block, -inline
2014-05-14reference other more recent source regarding the IE viewport bugChris Rebert1-0/+1
2014-05-14more precise docs linkChris Rebert1-1/+1
2014-02-21replace .visible-{size} with .visible-{size}-{display} ; fixes #8869Chris Rebert1-0/+101
2014-01-19Fix #12025 and minify stylesZlatan Vasović1-7/+6
2013-12-14Merge branch 'master' into pr/11302Mark Otto1-0/+4
Conflicts: dist/css/bootstrap.css dist/css/bootstrap.min.css
2013-12-08Fixes #11786: Nest media queries within print utilities for mixin-friendlinessMark Otto1-4/+9
2013-12-02Reduce size of the visibility stylesZlatan Vasović1-129/+9
2013-10-13move .hidden to utilities; fixes #10997Mark Otto1-10/+0
2013-09-11re-fix typo in commentChris Rebert1-1/+1
2013-09-11Merge branch 'ie_viewports' of github.com:twbs/bootstrap into ie_viewportsMark Otto1-1/+2
Conflicts: getting-started.html less/responsive-utilities.less
2013-09-11fixes #10497: Fix Windows 8 and Windows Phone 8 behavior and apply it to the ↵Mark Otto1-17/+15
docs
2013-09-11fixes #10497: Fix Windows 8 and Windows Phone 8 behavior and apply it to the ↵Mark Otto1-17/+15
docs
2013-08-20rename @screen-XX to @screen-XX-min for clarity+unambiguityChris Rebert1-24/+24
2013-08-20Removing whitespacesGeremia Taglialatela1-20/+20
2013-08-19Variable name fixElvis Ratzlaff1-32/+32
2013-08-19make visible/hidden classes mixableElvis Ratzlaff1-48/+120
2013-08-17More consistent naming with screen size variables using xs, sm, md, and lgMark Otto1-24/+24
2013-08-17Removed blank .hidden-printZlatan Vasović1-1/+0
Blank .hidden-print class doesn't have sense.
2013-08-12Media query (grid and responsive utilities) overhaulMark Otto1-8/+50
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
2013-08-07Make visibility utility classes responsive when used as LESS mixinsZac Wasielewski1-40/+28
2013-07-01Fix responsive utilities for table elementsJulian Thilo1-12/+34
This change prevents situations where specificity causes some rules to be overridden by the ones intended for mobile. * Added mixin `responsive-invisibility()` * Swapped out `display: none !important;` for new mixin
2013-06-27Add parens so sublime picks up on syntax highlightingMark Otto1-10/+10
2013-06-27Fixes #8329: add `!important` to `.hidden`Mark Otto1-2/+2
2013-06-25Move mixin to mixins.lessMark Otto1-6/+0
2013-06-25refactor responsive-utilities slightlyChris Rebert1-39/+15
2013-06-18Add support for `tr`, `th`, and `td` to responsive utilitiesMark Otto1-22/+72
2013-05-16Redo the responsive utilities stuffMark Otto1-10/+10
* Update docs language * Enforce display: block; on all utilities for now * Fix up docs CSS for the tests
2013-05-12spacingMark Otto1-14/+14
2013-05-11Changed Screen Notations on responsive-utilities.less and recompiled the ↵Vinay Raghu1-18/+18
stylesheet
2013-04-27Add maximum bounds variables for so our responsive utilities don't overlapMark Otto1-1/+1
2013-04-27Adding media queries breakpoints variablesKevin1-2/+2
2013-04-23'less' folder .editorconfig code guide updatesStephen Edgar1-1/+1
2013-04-21typoMark Otto1-2/+2
2013-04-21Fixes #7577: Attempt to fix, at least, issues with Windows Phone 8 and ↵Mark Otto1-0/+16
responsive not kicking in correctly
2013-04-20First pass at updated responsive utilities to be mobile-first. Pulled from ↵Mark Otto1-21/+23
#7490 by @apotropaic
2013-02-05Fixes #6190: Add print utility classesMark Otto1-0/+9
2012-12-10IE10 fix in responsive utilities, not regular utilitiesMark Otto1-0/+7
2012-07-10Fixes #4002 responsive utilities classesRoberto - phproberto1-7/+7
2012-06-28standardize top level file commentsMark Otto1-2/+4
2012-06-25reorder media queriesMark Otto1-10/+10
2012-03-25Overhaul the responsive utility classes:Mark Otto1-0/+41
1. Rename file from responsive-utility-classes.less to responsive-utilities.less 2. Add additional help text around the documentation for the classes in Scaffolding 3. Remove unnecessary display values on initial classes 4. Drop block values for inherit for better support on inline and table elements 5. Make use of \!important on every class to avoid classes with more specific selectors (e.g., .span* classes for the grid)