Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-02-25bundlewatchdarkmodeMark Otto
2022-02-25tweak design elsewhereMark Otto
2022-02-25Cleanup JSMark Otto
2022-02-25Add dark mode supportMark Otto
Heavily WIP still, but this begins the process of implementing dark mode for our docs and across the project itself. - Color modes are toggled in the docs navbar with a custom toggler, which stores the select color mode in local storage. - Color modes can also be set via data attribute thanks to `data-theme` (with light or dark options available currently). - Docs are heavily WIP for demonstrating the dark mode. - In order to best implement color modes, I've spiked out a number of new Sass and CSS variables (e.g., `--bs-secondary-bg` and `--bs-tertiary-bg`). In addition, I've added new global CSS variables like `--bs-border-color` and more. So, in addition to general color modes and theming support, we get greater real-time customization, too. Todos and open questions: - [ ] Do we refer to these as themes or color modes? - [ ] Do we provide a color mode toggler JS plugin? - [ ] Update all components to better utilize global CSS variables so they can be more easily themed (e.g., see `$dropdown-*` Sass variable changes in the diff).
2022-02-25update syntax colors in preparation for dark mode changesMark Otto
2022-02-25Help offcanvas follow Css responsivenessGeoSot
2022-02-25Updates for aria rolesGaël Poupard
Update site/layouts/_default/single.html Update site/layouts/partials/docs-navbar.html Update site/layouts/partials/home/masthead.html Co-Authored-By: Gaël Poupard <gael.poupard@gmail.com>
2022-02-24Move custom docs gutter to new classMark Otto
2022-02-24typoMark Otto
2022-02-24Big migration guide update to also summarize v5.1.0, plus some new changes ↵Mark Otto
for v5.2.0
2022-02-24Fix navbar-toggler sizingMark Otto
2022-02-24Fix padding on homepageMark Otto
2022-02-24Change shortcut key for search to join command palette fad, but preserve old ↵Mark Otto
shortcut too
2022-02-23Fix #33993 by removing scroll-padding-top for some :target trickeryMark Otto
2022-02-23Update bundlewatchMark Otto
2022-02-23Add new navbar example with offcanvasMark Otto
2022-02-23Redesign docs to use offcanvas for sidebarMark Otto
2022-02-23Add responsive offcanvas classesMark Otto
2022-02-23Manually tweak some tablesMark Otto
2022-02-23Redesign clipboard-js to use iconsMark Otto
Co-Authored-By: GeoSot <geo.sotis@gmail.com>
2022-02-23Update cspellMark Otto
2022-02-23Document new utilitiesMark Otto
2022-02-23Prep for v5.2.0 docs rename by adding v5.1.3 to version pickerMark Otto
2022-02-23Update migration guide to include v5.2.0 highlightsMark Otto
2022-02-23Redesign docs layoutMark Otto
- New navbar, no more subnav. Migrated search and version picker into the main navbar and refreshed the design of it all, including the responsive toggles. - New sidebar navigation is always expanded, and now features Bootstrap Icons alongside section headings - Sidebar navigation autoscrolls to active link for better usability - Subnav and navbar padding issues ironed out - Enhanced the version picker in anticipation of v5.2: we can now link right to the same page in the previous version. - Redesign callouts to add more color to our pages - Collapse table of contents on mobile - Cleanup and redesign button styles with CSS variables - Update design for subnav version dropdown - Update highlight and example to be full-width until md - Improve the Added In badges - Turn the ToC into a well on mobile
2022-02-23Redesign homepage docsMark Otto
- New Bootstrap purple navbar - Redesigned masthead - Rewrote and redesigned homepage content - Replace Copy text with icons like Bootstrap Icons site across all ClipboardJS instances - Fixed padding issues in site footer - Match homepage button styles to examples page, use gap instead of tons of responsive margin utils
2022-02-23Docs: replace CSS by utilities in examples (#35699)Julien Déramond
* Drop .opacity-50 and .opacity-75 redefinition in examples * Drop unused .card-img-right from blog example CSS files * Use line-height utilities when possible * Use rounded-* utilities in examples * Replace .nav-underline by .nav-scroller and use it in examples.html default * Use .mb-1 for .blog-post-title * Remove unused CSS rule and use .fw-* utilities for carousels examples * Use utilities for cheatsheet examples * Extract some CSS to utilities for .nav-masthead .nav-link in cover example * Dashboard group of minor modifications * Dropdowns example: refactoring * Dropdowns example refactoring: fix linting by removing selector by id * Features example refactoring * Headers example refactoring * List groups example refactoring * Sidebars example refactoring * Sign-in example refactoring * Starter template refactoring * Fix RTL examples Co-authored-by: Mark Otto <markd.otto@gmail.com>
2022-02-23Replace non-existent `--bs-btn-padding` by `--bs-btn-padding-{x|y}`Julien Déramond
2022-02-22Fix modal docchefarbeiter
2022-02-22Rely on `border-width` for `<hr>` size (#35491)Gaël Poupard
* fix(reboot): revert hr styles to v4 implementation * docs(cheatsheet): add a hr example * fix(reboot): currentColor is the initial border-color value * Document hr element in Reboot docs * Update migration guide * Update scss/_variables.scss Co-authored-by: Mark Otto <markd.otto@gmail.com>
2022-02-22CI: add issues-helper (#35846)xrkffgg
2022-02-22remove opacity utlitilies from example CSS (#35877)Christian Oliff
These are included in Bootstrap itself now Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2022-02-22Update devDependencies and pin karma-rollup-preprocessor (#35868)XhmikosR
* @babel/cli ^7.17.0 → ^7.17.6 * @babel/core ^7.17.2 → ^7.17.5 * eslint-plugin-unicorn ^40.1.0 → ^41.0.0 * rollup ^2.67.2 → ^2.68.0 * sass ^1.49.7 → ^1.49.8 * terser ^5.10.0 → ^5.11.0
2022-02-19Dropdown: use a better selector to avoid triggering click if button is ↵GeoSot
disabled (#35866)
2022-02-19Dropdown: use a combined selector to filter foreign not shown instances ↵GeoSot
iteration (#35766)
2022-02-19tests: revisit all tests using Promise.reject instead of throwing an error ↵GeoSot
(#35765)
2022-02-19Replace AnchorJS with a Hugo render hook (#32953)XhmikosR
* Replace AnchorJS with a Hugo render hook * docs(anchors): improve aria-label on anchor links * docs(anchors): show anchor link when ed * docs(anchors): add hash in pseudo-element Co-authored-by: Gaël Poupard <ffoodd@users.noreply.github.com>
2022-02-19Make event name helper and use it on tooltip & popover to reduce dist sizes ↵GeoSot
(#35856) * feat: create eventName getter function in baseComponent * refactor: use `eventName` getter on tooltip & popover
2022-02-19Carousel: remove one more call to ActiveIndexGeoSot
2022-02-19Carousel: change argument to `_setActiveIndicatorElement`, from element to indexGeoSot
2022-02-19Carousel: make direct triggering of slid event, instead of using a callbackGeoSot
2022-02-19Carousel: merge slide functionality, regardless of whether it is animated or notGeoSot
2022-02-19Carousel: simplify initialization on document load, using `getOrCreateInstance`GeoSot
2022-02-19Carousel: remove redundant config merge on `dataApiClickHandler`, as it is ↵GeoSot
done by default in the `constructor`
2022-02-18Apply list group numbering to all items (#35822)Jann Westermann
2022-02-18Add null modal-footer-bg variable (#35858)Mark Otto
Fixes #35782
2022-02-17New CSS variable for Navbars (#35829)Louis-Maxime Piton
* Adding a brand new CSS var * Update scss/_variables.scss Co-authored-by: Gaël Poupard <ffoodd@users.noreply.github.com>
2022-02-17Add !important property to colored links. (#35740)Nudasoft
* Add !important property to colored links. * Apply suggestions from code review Co-authored-by: Mark Otto <otto@github.com>
2022-02-17code indentation in readmeAlan Christian
2022-02-16Rename dropdown-shadow to dropdown-box-shadow for consistencyMark Otto