aboutsummaryrefslogtreecommitdiff
path: root/less
AgeCommit message (Collapse)AuthorFilesLines
2015-04-04Merge pull request #16224 from vsn4ik/fix_theme_disabled_btnMark Otto1-4/+17
Fix theme.css .btn[disabled] styles.
2015-04-04bring in normalize's v3.0.3 changesMark Otto1-11/+8
2015-04-04Fix theme.css .btn[disabled] styles.vsn4ik1-4/+17
2015-04-04Merge pull request #16176 from twbs/input_group_sizingMark Otto1-4/+6
Static form control sizing in input groups, again
2015-04-02Adds button styles to `.list-group-item`Zac Echola2-4/+11
Includes buttons with anchor sytles and modifies buttons to match width and text alignment.
2015-03-30nuke leftover lessMark Otto1-9/+0
2015-03-29Merge branch 'master' into v4Mark Otto1-0/+9
Conflicts: .gitignore Gruntfile.js _config.yml dist/css/bootstrap-theme.css dist/css/bootstrap-theme.min.css dist/css/bootstrap.css dist/css/bootstrap.css.map dist/css/bootstrap.min.css dist/js/bootstrap.js dist/js/bootstrap.min.js docs/_includes/components/navbar.html docs/_includes/components/progress-bars.html docs/_includes/css/grid.html docs/_includes/css/overview.html docs/_includes/customizer-variables.html docs/_includes/getting-started/accessibility.html docs/_includes/getting-started/browser-device-support.html docs/_includes/getting-started/community.html docs/_includes/getting-started/disabling-responsiveness.html docs/_includes/getting-started/download.html docs/_includes/getting-started/examples.html docs/_includes/getting-started/license.html docs/_includes/getting-started/third-party-support.html docs/_includes/js/alerts.html docs/_includes/js/buttons.html docs/_includes/js/carousel.html docs/_includes/js/collapse.html docs/_includes/js/dropdowns.html docs/_includes/js/modal.html docs/_includes/js/popovers.html docs/_includes/js/scrollspy.html docs/_includes/js/tabs.html docs/_includes/js/tooltips.html docs/_includes/js/transitions.html docs/_includes/nav/javascript.html docs/_includes/nav/main.html docs/about.html docs/assets/css/docs.min.css docs/assets/css/src/docs.css docs/assets/js/customize.min.js docs/assets/js/raw-files.min.js docs/assets/js/src/customizer.js docs/dist/css/bootstrap-theme.css docs/dist/css/bootstrap-theme.min.css docs/dist/css/bootstrap.css docs/dist/css/bootstrap.css.map docs/dist/css/bootstrap.min.css docs/dist/js/bootstrap.js docs/dist/js/bootstrap.min.js docs/migration.html js/affix.js js/alert.js js/button.js js/carousel.js js/collapse.js js/dropdown.js js/modal.js js/popover.js js/scrollspy.js js/tab.js js/tests/unit/affix.js js/tests/unit/button.js js/tests/unit/carousel.js js/tests/unit/modal.js js/tests/unit/tooltip.js js/tests/visual/modal.html js/tooltip.js less/component-animations.less less/jumbotron.less less/mixins/background-variant.less less/mixins/buttons.less less/mixins/responsive-visibility.less less/mixins/text-emphasis.less less/navbar.less less/navs.less less/scaffolding.less less/tooltip.less less/utilities.less less/variables.less package.json scss/_buttons.scss scss/_forms.scss scss/_modal.scss
2015-03-28Fixes #15536: Resize .control-label's font-size and account for border on ↵Mark Otto1-4/+6
static form control in form groups
2015-03-28fixes #15830: properly reset border-radius on list items in collapsing panel ↵Mark Otto1-0/+6
groups
2015-03-28Merge pull request #15956 from twbs/input-group-sizes-glyphiconMark Otto1-2/+4
Input group sizes: Properly position `.form-control-feedback`
2015-03-28Merge pull request #16159 from twbs/input_sizingMark Otto1-2/+26
Fixes #15074
2015-03-28Match all other responsive utilities and use important on the display: tableMark Otto1-1/+1
2015-03-28Merge branch 'master' into input_sizingMark Otto6-6/+31
Conflicts: dist/css/bootstrap.css.map dist/css/bootstrap.min.css
2015-03-28Merge pull request #16154 from patrickhlauke/focus-active-disambiguationPatrick H. Lauke1-2/+18
Darker style focus/hover on active buttons
2015-03-26Make .bg-variant adjust :focus color in addition to :hover colorSerhan Apaydın1-1/+2
2015-03-25Merge pull request #16089 from max-b/jumbotron-font-sizeChris Rebert2-1/+2
Jumbotron: Putting heading font size in variables to allow for easier overrides
2015-03-25Make .text-emphasis-variant adjust :focus color in addition to :hover colorSerhan Apaydın1-1/+2
Closes #16047 by merging a tweaked version of it.
2015-03-25Fixes #15074: Manually handle input sizing in form groups instead of using ↵Mark Otto1-2/+26
mixins because nesting
2015-03-25Darker style focus/hover on active buttonsPatrick H. Lauke1-2/+18
Currently, hovering with mouse or setting focus on a button which is active has same styling as on a non-active button. This results in problems for keyboard users, who set focus on a toggle and activate it, but cannot visually see that their action had any effect. Ditto for mouse users hovering over a toggle and clicking it. This adds an explicit additional style for focus/hover on active buttons. Note that this does not address issues of browser focus remaining on a button after a mouse click (e.g. #13971), as this will likely require extra JavaScript to fix.
2015-03-18Jumbotron: Putting heading font size in variables to allow for easier overrides.Maxb2-1/+2
2015-03-17Only disable pointer-events on disabled <a> btns; fixes #16088Chris Rebert1-1/+7
<a> doesn't support the `[disabled]` attribute, so `a.btn.disabled` simulates it using `pointer-events: none`. However, this is unnecessary for <button>s and <input>s, and also prevents their `[disabled]` cursor from displaying. [skip sauce] [skip validator]
2015-03-15z-index firstPatryk Puszczyk1-1/+1
2015-03-10Remove trailing whitespace in forms.lessGleb Mazovetskiy1-1/+1
2015-03-09rm `visibility` where redundant to `display`Chris Rebert4-6/+1
Refs #15755
2015-03-09Merge pull request #15755 from jitendravyas/masterChris Rebert1-1/+0
Removed `visibility: hidden !important` from `.hidden` class
2015-03-03Modal: Fix backdrop not readjusting when height changesHeinrich Fenkart2-2/+5
Fixes #15136. Closes #15345. Closes #15314. Refs #14724, #14927.
2015-03-02[Fixes #15976] Fix pagination link cut off border on hoverPatryk Puszczyk1-0/+1
2015-03-02Add upstream patch commentPatrick H. Lauke1-0/+1
2015-03-01Input group sizes: Properly position `.form-control-feedback`Heinrich Fenkart1-3/+5
Ref https://github.com/twbs/bootstrap/issues/12868#issuecomment-76291513 Ref 7733f24
2015-02-28iOS fix for role="button" elements; [fixes #15935]Patrick H. Lauke1-0/+11
Fixes "clickability" issue (and more generally, the firing of events such as focus as well) for traditionally non-focusable elements with role="button" (see https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile) Fixes #15935
2015-02-27[Fixes #15944] Add Z-Index to avoid border overlapping Kevin Kirsche1-0/+1
[Fixes #15944] Add Z-Index to avoid border overlapping
2015-02-26Merge pull request #15826 from kkirsche/patch-19Mark Otto1-1/+1
[Fixes #15825] .initialism class should use mixin
2015-02-20Fix #15652: Set `position: relative` on .{radio,checkbox}-inlineKevin Kirsche1-0/+1
Closes #15656 by merging it.
2015-02-19Merge pull request #15699 from kkirsche/patch-8Chris Rebert1-0/+3
Fix #15691: .form-control-static changes height when empty
2015-02-19[Fixes #15691] .form-control-static changes height when emptyKevin Kirsche1-0/+3
[Fixes #15691] .form-control-static changes height when empty by setting the minimum height to the size it is when text is in the `.form-control-static` JSFiddle: http://jsfiddle.net/4pdo4yzo/ Compute the minimum height @line-height-computed = ~20px @font-size-base = 14px This should come to approx. 34px Add min-height to from-group-* per @cvrebert I had this wrong. The minimum height would depend on the font-size of that specific group, thus we need to declare it once for font-size-small and once also for font-size-large
2015-02-17Merge pull request #15703 from kkirsche/patch-9Mark Otto1-1/+5
[Fix Issue #15683] `readonly` input should not have a not-allowed cursor
2015-02-17[Fixes #15825] .initialism class should use mixinKevin Kirsche1-1/+1
[Fixes #15825] .initialism class should use text-uppercase() LESS mixin.
2015-02-08Merge pull request #15697 from kkirsche/patch-6Mark Otto1-1/+1
[Fix Issue #15682] .caret is smaller in Firefox than other browsers
2015-02-08Merge pull request #15728 from kkirsche/patch-11Mark Otto2-1/+4
[Fix Issue #15719] Add a variable for .form-group's margin-bottom
2015-02-05Removed visibility: hidden !important from .hidden classJitendra Vyas1-1/+0
This .hidden was taken from HTML 5 Boilerplate and yesterday we discussed on twitter that visibility: hidden !important can be removed now. https://twitter.com/jitendravyas/status/562940090553733121
2015-02-03[Fix Issue #15683] `readonly` input should not have a not-allowed cursorKevin Kirsche1-1/+5
[Fix Issue #15683] `readonly` input should not have a `not-allowed` cursor. Instead, this pull request displays a standard cursor and only displays the not-allowed cursor on disabled items. Revise docs wording to clarify cursor display
2015-02-02Use form-group margin variableKevin Kirsche1-1/+1
2015-02-02[Fix issue #15719] Add a variable for .form-group's margin-bottomKevin Kirsche1-0/+3
[Fix issue #15719] Add a variable for .form-group's margin-bottom
2015-02-02Extract responsive embed nested classesHaralan Dobrev1-8/+8
I think this is the more common coding convention across Bootstrap. Extract nested classes as first-class citizens and assume HTML would use both.
2015-01-29[Fix Issue #15682] .caret is smaller in Firefox than other browsersKevin Kirsche1-1/+1
[Fix Issue twbs/bootstrap#15682] .caret is smaller in Firefox than other browsers
2015-01-21Merge pull request #15628 from kkirsche/patch-1Mark Otto1-1/+2
[Fix Issue #15561] Fix badges not being resized inside .btn-group-xs if .btn-xs is not applied
2015-01-21Fix having multiple selectors on a single line.Kevin Kirsche1-1/+2
2015-01-21Fix issue twbs/bootstrap#15561Kevin Kirsche1-1/+1
Fix issue twbs/bootstrap#15561 regarding badges not shrinking to fit inside of .btn-group-xs
2015-01-20Add .glyphicon-* aliases for other ISO 4217-ish currency codesChris Rebert1-0/+4
Fixes #15617.
2015-01-19Trim whitespacesGeremia Taglialatela3-7/+7