aboutsummaryrefslogtreecommitdiff
path: root/less/variables.less
AgeCommit message (Collapse)AuthorFilesLines
2013-08-19Add default navbar z-index to fix #9844Mark Otto1-0/+1
iOS doesn't pick up the z-indexing properly on the dropdowns unless you specify one for the parent navbar.
2013-08-19fix #9832 somewhat: more vars for jumbotronMark Otto1-1/+3
2013-08-18Merge branch '3.0.0-wip' into bs3_panel_base_classMark Otto1-8/+8
Conflicts: dist/css/bootstrap-theme.min.css dist/css/bootstrap.min.css
2013-08-18Refactor alerts to have a base class, but no default class, thus requiring a ↵Mark Otto1-8/+8
modifier class at all times
2013-08-18Refactor panels to have a base class for improved flexibility when ↵Mark Otto1-2/+5
customizing (and no overriding to start, too)
2013-08-18Fix some forgotten things for navbar-defaultJulian Thilo1-4/+4
New variable names were missing here and there.
2013-08-18Add a .navbar-default class for default colorsJulian Thilo1-16/+16
* Extract color styles from .navbar { } and put them into .navbar-default { } * Change variable names * Change the docs accordingly (i.e., add the .navbar-default class to all default navbars) * Change customizer accordingly
2013-08-18fixes #9768: unbold buttonsMark Otto1-1/+1
2013-08-18Upgrade to latest glyphiconsMark Otto1-1/+1
2013-08-18Restore glyphiconsMark Otto1-0/+6
2013-08-17More consistent naming with screen size variables using xs, sm, md, and lgMark Otto1-15/+14
2013-08-17un-hardcode @grid-gutter-width in @container-* LESS varsChris Rebert1-3/+3
2013-08-16fixes #9436 more: put padding on containers, not the body because full width ↵Mark Otto1-3/+3
elements
2013-08-15fixes #9587: add var for nav link paddingMark Otto1-0/+1
2013-08-15improve pagination's active state so it looks less like the active state and ↵Mark Otto1-2/+7
more like active nav items
2013-08-15Fixes #9617: consistent variation order, add .label-primaryMark Otto1-0/+1
2013-08-14Remove old accordion remnantBas Bosman1-5/+0
2013-08-13lighter default navbar, add borders to navbars, tweak padding and alignmentsMark Otto1-3/+5
2013-08-12Media query (grid and responsive utilities) overhaulMark Otto1-2/+3
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-11addressing #9189 manually, part 7: thumbnails varsMark Otto1-1/+4
2013-08-11addressing #9189 manually, part 6: add a navbar margin var, but avoid the ↵Mark Otto1-0/+1
navbar-nav var because that should really be customizable
2013-08-11addressing #9189 manually, part 4: input group background varMark Otto1-0/+1
2013-08-11addressing #9189 manually, part 3: formsMark Otto1-0/+2
2013-08-11spacingMark Otto1-0/+1
2013-08-11addressing #9189 manually, part 2: dropdown header and disabled link colors ↵Mark Otto1-0/+3
(and refactor commenting styles)
2013-08-11addressing #9189 manually, part 1: code and pre varsMark Otto1-0/+2
2013-08-11fixes #9348 by ditching a commentMark Otto1-1/+1
2013-08-06Fixes #9145: Fix tooltip opacityMark Otto1-1/+1
Update tooltips to not use RGBa colors so IE8 can have tooltips, too (means we're now using `opacity`).
2013-08-05Scope tablet classes to tablets range onlyMark Otto1-4/+6
Fixes #9128
2013-08-05Merge branch '3.0.0-wip' into bs3_alerts_default_classMark Otto1-3/+21
Conflicts: dist/css/bootstrap.min.css
2013-08-05Merge branch '3.0.0-wip' of https://github.com/saas786/bootstrap into ↵Mark Otto1-2/+18
saas786-3.0.0-wip Conflicts: customize.html less/alerts.less less/badges.less less/button-groups.less less/buttons.less less/carousel.less
2013-08-05Merge pull request #9121 from Flydiverny/alertsMark Otto1-1/+3
Added padding variable for alerts and changed customize.html
2013-08-05Update labels to include a base classMark Otto1-0/+2
* Builds on the new button styles by requiring a `.btn-default` for the regular, gray labels * Updates components examples to show new stuff
2013-08-06Added padding variable for alerts and changed customize.html Warning state ↵Markus Maga1-1/+3
(which doesn't exist anymore)
2013-08-05More button updatesMark Otto1-5/+5
- Fixes #9113 (caret colors in dropdown buttons) - Darken borders around buttons for contrast in button groups
2013-08-05Fixes #8786 (part 2): new default button stylesMark Otto1-10/+8
Also relevant: http://www.youtube.com/watch?v=Ldyx3KHOFXw
2013-08-05fixes #9063: add var for navbar border radiusMark Otto1-0/+1
2013-08-04Enable input focus state customizationMark Otto1-0/+1
- Add new mixin to generate and customize focus state as needed - Adds variable to set default color - Include clear disclaimer about customizing this—it's about users', so don't go making everything bright red and expect them not to be confused or alarmed. Relevant issues: #2742, #4185, #7942, #8171, #8610, #9044
2013-08-03Greater standardization of sizing terminologyChris Rebert1-3/+3
In class names: * large => lg * small => sm * mini => xs ("Extra small") In screen size categories: * Tiny => Extra small
2013-08-02Tighten up buttons and form controlsMark Otto1-4/+7
* Smaller padding on buttons and large buttons * Same with inputs and large inputs * Remove about 10px from height of large inputs/buttons and 4px from regular ones Fixes #8707 and #8700. (Also relevant: #8711)
2013-07-29get rid of out of order variable declarationAndrey Popp1-35/+33
2013-07-28move things aroundsyed1-2/+22
Moved alerts, badges, button groups, buttons, carousel, close to variables.less and customize.html
2013-07-26Vars updateMark Otto1-15/+18
* Drop progress bar text-shadow * Reorganize popover and tooltip vars and fix complier error due to missing `;` * Run `grunt`
2013-07-26move things around :)syed1-2/+27
Moved pager, pagination, popovers, tooltip, progress bars & type properties to variables.less
2013-07-25move some thing aroundMark Otto1-7/+11
2013-07-25Moved navs inline properties to variables.less and customize.html & ↵syed1-0/+27
nav-customize.html
2013-07-25Moving navbar inline properties to variables.less and customize.htmlsyed1-0/+10
2013-07-24make footer border color use header border color in modalsMark Otto1-2/+1
2013-07-24Moved modals inline properties to variables.lesssyed1-0/+10
In this commit I moved modals.less inline properties to variables.less and also added those variables to customize.html.
2013-07-23Run make on prev commitsMark Otto1-2/+4