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
path: root/scss
AgeCommit message (Collapse)Author
2021-01-29Make carousel indicators actual buttonsPatrick H. Lauke
2021-01-27Re-add flex-grow to .navbar-collapse (#32899)Mark Otto
Update .navbar-collapse to drop width 100 and use flex-grow, restoring it to v4's behavior Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2021-01-27Carousel: use buttons, not links, for prev/next controls (#32627)Patrick H. Lauke
* Carousel: use buttons, not links, for prev/next - expand the styles to neutralise border/background - change docs page - add extra unit test to check that links or buttons work as controls - modify visual test to use buttons as well - use buttons instead of links for prev/next - remove `role="button"` from links that are actually links * Clarify that controls can be button or link * Update site/content/docs/5.0/components/carousel.md Co-authored-by: Mark Otto <markd.otto@gmail.com> * Explicitly set padding to 0 to prevent dipping/moving on active in Firefox Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2021-01-19Add `.navbar-nav-scroll` for vertical scrolling of navbar content (#32037)Mark Otto
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2021-01-15Remove popover-arrow margin to fix alignment of the arrow (#32787)Mark Otto
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2021-01-15Drop transition on .form-check, keep on .form-switchMark Otto
To avoid breaking changes, turns -check-transition to null, then adds a new -switch-transition variable
2021-01-15Lighten disabled dropdown text to $gray-500Mark Otto
Fixes #32474
2021-01-13Add word-break to .toast-body (#32670)Onycss
* Update _toasts.scss * Update scss/_toasts.scss Co-authored-by: Mark Otto <otto@github.com>
2021-01-11Darken dropdown item hover style (#32754)Patrick H. Lauke
Closes https://github.com/twbs/bootstrap/issues/23329
2021-01-10Consistently use outline:0 rather than outline:none (#32751)Patrick H. Lauke
just for code consistency, no actual effect on styling per se
2021-01-10Suppress focus outline for buttons when it shouldn't be visible in Chromium ↵Patrick H. Lauke
(#32689) Follow-up to https://github.com/twbs/bootstrap/pull/32631 Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2021-01-07Bump copyright year to 2021 (#32713)XhmikosR
2021-01-06fix(ratio): missing variable prefix (#32501)Gaël Poupard
This is the only unprefixed custom property, and its name is very common so I think we'd better prefix it too.
2021-01-05Remove old/unnecessary reboot bug fix (#32631)Patrick H. Lauke
From initial testing, this bug doesn't seem to manifest itself anywhere in Bootstrap (since we don't just set transparent background anywhere on buttons, and when we do set explicit button styles in the more specific stylings, we already do create a custom `:focus` style anyway) Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2020-12-28Tweak .form-select padding (#32419)Mark Otto
* Tweak .form-select padding * Simplify the padding entirely Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2020-12-18Add helpers to utilities bundle (#32324)Marc Jansing
Adds currently missing utilities classes which are located in scss/helpers to boostrap-utilities dist files. Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2020-12-17Add variables for modifying button state colours. (#32317)Dylan Anderson
Add some variables to allow users to modify how much a button gets lighter or darker on :hover and :active. Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2020-12-17Extended form validation states customization capabilities (#31757)Dmytro Yaremenko
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2020-12-17Fix: variables collide with globals (#32492)Rafi
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2020-12-15Expand `visually-hidden-focusable` so it can be used on a container, so the ↵Patrick H. Lauke
container becomes visible when focus is inside it / on one of its child elements.
2020-12-14Add two new variables for pagination border-radius values (#32423)Mark Otto
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2020-12-11Use box shadows instead of linear gradients to colorize tables (#32348)Martijn Cuppens
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2020-12-10Reset Popper position in RTL (#32415)Gaël Poupard
The RTL cheatsheet's dropdowns aren't positioned correctly because of RTLCSS transforming `right: auto` to `left:auto` (which conflicts with Popper positioning).
2020-12-10Utility API, RFS option: Only generate responsive classes when needed (#32397)Martijn Cuppens
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2020-12-07Remove vertical-align from .form-select (#32318)Mark Otto
Aligns the component with the .form-control. Closes #32271. Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2020-12-07Prepare v5.0.0-beta1.XhmikosR
2020-12-06fix(dropdown): ensure [style] will override inline stylesGaël Poupard
2020-12-06fix(RTL)Gaël Poupard
2020-12-06Fix conflict with Bootstrap CSSMartijn Cuppens
2020-12-06Override margins set by popperMartijn Cuppens
2020-12-06Update to popper.js v2.xJohann-S
2020-12-04Add `.translate-middle-x` and `.translate-middle-y` utilitiesMartijn Cuppens
2020-12-04Add toast positioningMartijn Cuppens
2020-12-04feat(RTL): implement RTLGaël Poupard
Using RTLCSS directives, renaming things to use logical names and following best practices.
2020-12-01Use $variable-prefixMartijn Cuppens
2020-12-01Update breadcrumb docs and dividersMark Otto
- Add CSS custom property with fallback to Sass variable - Update docs to mention the new CSS custom property - Rewrite some of the docs to use divider instead of separator, and add some context here and there
2020-12-01Remove background, padding, border from breadcrumb containerPatrick H. Lauke
2020-11-30Keep rounded corners for the first .btn in vertical button group (#31303)Rohit Sharma
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2020-11-30Remove default linear gradient (#32277)Martijn Cuppens
Remove the default invisible gradient causing the performance issue in #32266. By removing the custom property, the linear gradient will become invalid, thus not appear by default. There can still be a performance issue with striped tables though. Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2020-11-21Be consistent with Popper's name. (#32224)XhmikosR
The npm package is named "popper.js" but the project is named "Popper", so use the latter consistently.
2020-11-20_reboot.scss: remove needless Stylelint disable (#32213)XhmikosR
2020-11-19fix(container): use $variable-prefix (#32201)Gaël Poupard
Missed that while merging.
2020-11-14Simplify make-container() (#31735)Gaël Poupard
2020-11-14Add `bs` in data attributesRohit Sharma
- Add `bs` in data APIs everywhere - Update unit tests
2020-11-13Add hover utilitiesNikita Mikhaylov
remome several hobers refactoring hover utilities refactoring hover utilities
2020-11-13Rename scale-color() function to shift-color() to avoid collision with ↵Mark Otto
Sass's own color function (#32149)
2020-11-11Prepare v5.0.0-alpha3 (#32122)v5.0.0-alpha3XhmikosR
2020-11-11Use correct value order (#32121)Martijn Cuppens
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2020-11-09Drop `.btn-block` classes, replace with utilities (#31995)Mark Otto
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
2020-11-08Add .gap utilities (#32074)Mark Otto
* Add gap utilities * Update .bundlewatch.config.json * Revamp headings on this page for better organization Co-authored-by: XhmikosR <xhmikosr@gmail.com>