| Age | Commit message (Collapse) | Author | Files | Lines |
|
Fix theme.css .btn[disabled] styles.
|
|
|
|
|
|
Static form control sizing in input groups, again
|
|
Includes buttons with anchor sytles and modifies buttons to match width
and text alignment.
|
|
|
|
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
|
|
static form control in form groups
|
|
groups
|
|
Input group sizes: Properly position `.form-control-feedback`
|
|
Fixes #15074
|
|
|
|
Conflicts:
dist/css/bootstrap.css.map
dist/css/bootstrap.min.css
|
|
Darker style focus/hover on active buttons
|
|
|
|
Jumbotron: Putting heading font size in variables to allow for easier overrides
|
|
Closes #16047 by merging a tweaked version of it.
|
|
mixins because nesting
|
|
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.
|
|
|
|
<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]
|
|
|
|
|
|
Refs #15755
|
|
Removed `visibility: hidden !important` from `.hidden` class
|
|
Fixes #15136.
Closes #15345.
Closes #15314.
Refs #14724, #14927.
|
|
|
|
|
|
Ref https://github.com/twbs/bootstrap/issues/12868#issuecomment-76291513
Ref 7733f24
|
|
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
|
|
[Fixes #15944] Add Z-Index to avoid border overlapping
|
|
[Fixes #15825] .initialism class should use mixin
|
|
Closes #15656 by merging it.
|
|
Fix #15691: .form-control-static changes height when empty
|
|
[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
|
|
[Fix Issue #15683] `readonly` input should not have a not-allowed cursor
|
|
[Fixes #15825] .initialism class should use text-uppercase() LESS mixin.
|
|
[Fix Issue #15682] .caret is smaller in Firefox than other browsers
|
|
[Fix Issue #15719] Add a variable for .form-group's margin-bottom
|
|
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
|
|
[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
|
|
|
|
[Fix issue #15719] Add a variable for .form-group's margin-bottom
|
|
I think this is the more common coding convention across Bootstrap.
Extract nested classes as first-class citizens and assume HTML would use both.
|
|
[Fix Issue twbs/bootstrap#15682] .caret is smaller in Firefox than other browsers
|
|
[Fix Issue #15561] Fix badges not being resized inside .btn-group-xs if .btn-xs is not applied
|
|
|
|
Fix issue twbs/bootstrap#15561 regarding badges not shrinking to fit inside of .btn-group-xs
|
|
Fixes #15617.
|
|
|