aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2019-07-17Add width/height in the SVG arrow.XhmikosR1-1/+1
Fixes IE.
2019-07-17Remove display none code.XhmikosR1-54/+0
2019-07-17Use the responsive themes image.XhmikosR1-1/+3
2019-07-17Fix docs search. (#29067)XhmikosR2-4/+2
2019-07-17Add redirect for `/forms/`.XhmikosR1-0/+1
2019-07-17Use the direct link to migrations page.XhmikosR1-1/+1
2019-07-17Remove redundant fill-ruleMartijn Cuppens1-4/+4
2019-07-17Move xmlns after `svg` for consistency.XhmikosR1-3/+3
2019-07-17Escape the newly added SVGs.XhmikosR1-3/+3
Also use `viewBox` instead of `viewbox`.
2019-07-17updated babelJohann-S5-41/+52
2019-07-17Update devDependencies.XhmikosR2-360/+451
Held babel back due to issues with `objectSpread`.
2019-07-17Move inline JS to application.js.XhmikosR2-7/+10
2019-07-17Ignore sw.js.XhmikosR2-2/+1
2019-07-17site/.eslintrc.json: specify ecmaVersion.XhmikosR1-0/+1
2019-07-17Fix application.js after aaf03bdXhmikosR1-13/+12
2019-07-17Fix bootstrap-themes.png. (#29061)XhmikosR1-0/+0
For some reason the old image was bad quality.
2019-07-16Fix breaking layout breaking error in code (#28328)M. Wacker1-1/+1
Change `word-break: break-word;` to `word-wrap: break-word;`
2019-07-15Move the linkinator test in `npm t`. (#29003)XhmikosR2-3/+3
2019-07-15Make text align configurable (#28989)Martijn Cuppens3-10/+9
This was causing issues for RTL, see https://github.com/twbs/bootstrap/issues/28238
2019-07-15Revert incorrect change (#29044)Martijn Cuppens1-2/+1
2019-07-15v5: Reuse box-shadow variables (#29023)Mark Otto2-14/+13
* Remove default kbd element shadow, simplify selector while here * Add new -shadow-inset variable so our shadows match on .form-control's, .form-select's, and .progress's * Reuse box-shadow variables for .dropdown's, .popover's, .toast's, .modal's, and .img-thumbnail's
2019-07-14#29034 Fix broken links (#29035)Manuel Alcaraz1-2/+2
2019-07-14Fix dropdown unit test (#29037)Patrick H. Lauke1-3/+4
swap jQuery's `trigger(...)` with the more verbose native `dispatchEvent(...)`, as the former may not always behave/bubble correctly (observed while trying to write unit tests for keyboard handling of ARIA tab navigation), which may lead to this test passing even though it fails in real usage.
2019-07-14v5: Fix disabled styling on .form-file (#29022)Mark Otto2-1/+13
While #28450 overhauled a ton of forms work, the support for this custom file input was ineffective. This updates the selector to target the custom field and gray out the entire field. Fixes #28176.
2019-07-14Added link to creative commons license (#29032)Sunny Dhoke1-1/+1
The previous link is dead one.
2019-07-14Drop breakpoint CSS custom properties (#29020)Mark Otto2-31/+0
Media queries do not support CSS custom properties (CSS variables), so we've had some useless variables lying around since shipping v4. This finally removes them and the associated documentation content that explained the situation. Fixes #29012.
2019-07-13Update collapse.md (#29025)Brian Juul Andersen1-1/+1
Corrected minor spelling error.
2019-07-12dist v5Mark Otto41-6011/+6501
2019-07-12v5: Forms update (#28450)Mark Otto66-2925/+3169
* Initial spike of consolidated form checks * Stub out forms rearrangement - Prepping to drop non-custom file and range inputs - Prepping to merge custom and native checks and radios (with switches) - Prepping to merge custom select with form select - Moving docs arround so forms has it's own area given volume of CSS * Move input group Sass file to forms subdir * Start to split and move the docs around * Simpler imports * Copyediting * delete overview file * Remove commented out code * remove the custom-forms import * rewrite flex-check as form-check, replace all custom properties * Remove old forms doc * stub out new subpage link section * update migration guide * Update nav, forms overview in page nav, and descriptions * fix check bg position * fix margin-top calculation * rename .custom-select to .form-select * Update validation styles for new checks * add some vertical margin, fix inline checks * fix docs examples * better way to do this contents stuff, redo the toc while i'm at it * page restyle for docs while here * un-callout that, edit text * redo padding on toc * fix toc * start to cleanup checks docs * Rewrite Markdown tables into HTML * Redesign tables, redo their docs * Replace Open Iconic icons with custom Bootstrap icons * Redesign the docs navbar, add a subheader, redo the sidebar * Redesign docs homepage a bit * Simplify table style overrides for docs tables * Simplify docs typography for page titles and reading line length * Stub out icons page * Part of sidebar update, remove migration from nav.yml * Move toc CSS to separate partial * Change appearance of overview page * fix sidebar arrow direction * Add footer to docs layout * Update descriptions * Drop the .form-group class for margin utilities * Remove lingering form-group-margin-bottom var * improve footer spacing * add headings to range page * uncomment form range css * Rename .custom-range to .form-range * Drop unused docs var * Uncomment the comment * Remove unused variable * Fix radio image sizing * Reboot update: reset horizontal ul and ol padding * de-dupe IDs * tweak toc styles * nvm, fix dropdown versions stuff * remove sidebar nav toggle for now * broken html * fix more broken html, move css * scss linting * comment out broken helper docs * scope styles * scope styles * Fixes #25540 and fixes #26407 for v5 only * Update sidebar once more * Match new sidenav order * fix syntax error * Rename custom-file to form-file, update paths, update migration docs for previous changes in #28696 * rename back * fix size and alignment * rename that back too
2019-07-12Drop support for .form-control-plaintext inside .input-group (#28972)Shohei Yoshida2-1/+1
* Revert "Fix readonly-plain-text with button addon (#25871)" This reverts commit ff40e00323f9256d8dfb678d13b57bfb01ac7354. * Add migration comment
2019-07-12Remove attribute selectors (#28988)Martijn Cuppens1-9/+0
2019-07-10separate file for our polyfills to have lighter pluginsJohann-S1-2/+7
2019-07-10Fix typo. (#29008)XhmikosR2-2/+2
2019-07-09Fixes #28994Mark Otto1-1/+1
2019-07-09Move bundlesize config to a separate file. (#29002)XhmikosR3-142/+71
2019-07-08Add `prefers-reduced-motion` callout to toast documentation (#28993)Patrick H. Lauke1-0/+4
x-ref #28987
2019-07-02Add ARIA search landmark to documentation. (#28983)Bardi Harborow1-1/+1
2019-07-02Remove redundant border radius on pagination (#28980)Martijn Cuppens1-1/+0
Pagination used to have box shadow back in the days which required this property, but nowadays it's redundant. (see https://github.com/twbs/bootstrap/blame/0cd186183c5e18f0517d6037d53f29c56adbac72/less/pagination.less#L17)
2019-06-26Remove redundant radius properties (#28956)Martijn Cuppens1-2/+2
2019-06-26Fix pre color (#28966)Martijn Cuppens1-1/+1
2019-06-26Stretched link updates (#28958)Martijn Cuppens2-6/+5
- Remove IE10 background hack - Ability to change the pseudo element - Ability to change the z-index - Remove pointer events, just inherit this
2019-06-25Port new unit test for dropdown from v4 (#28913)Patrick H. Lauke1-0/+25
Add unit test from #28912 to v5
2019-06-25Remove negative margins for group list items (#28940)Sergey Kovalenko1-19/+28
To fix RGBA borders overlapping issue.
2019-06-24Minor wording changes.XhmikosR1-2/+2
2019-06-24Combine duplicate documentation examples into one to fix the confusing text.Jonathan Hawkins1-23/+9
fixes issue #28892
2019-06-22Change invalid icon from cross to exclamation mark (#28944)Martijn Cuppens1-1/+1
The cross icon was confusing since some browsers use it as a reset button.
2019-06-22Docs – update extend/approach.md (#28941)Robin D'Arcy1-2/+2
2019-06-19Closing dropdown with ESC correctly sets focus to toggle (#28928)Patrick H. Lauke2-1/+40
Just firing the focus event isn't enough ... need to actually call the proper `focus()` method for it to actually do it...
2019-06-18Update devDependencies. (#28924)XhmikosR2-264/+287
2019-06-18Typo fix (#28920)Martijn Cuppens1-1/+1