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
2018-06-24Update box-shadows on .custom-select (#26754)Mark Otto
- Fixes #25656 where custom selects had the wrong focus shadow - Fixes #26668 where custom selects had no inset shadow (also closes #26572 which had the wrong form classes on the first example anyway)
2018-06-24Render inline svg like img (#25874)Martijn Cuppens
2018-06-03Limit .close hover/focus to non-disabled controls (#26654)Patrick H. Lauke
2018-06-02Stricter stylelint rulesMartijn Cuppens
2018-05-23Add disabled bg color to disabled custom fileysds
2018-05-23Custom forms transitionMartijn Cuppens
2018-05-18Fix double-transition bug (#26452)domq
By applying the transition: CSS property only to classes that are active during sliding, we avoid an unnecessary, non-zero-time animation that although mostly invisible, does interfere with e.g. z-index based parallax
2018-05-07Fix z-index target (#26361)ysds
2018-04-30Bump version to v4.1.1v4.1.1Mark Otto
2018-04-30Simplify custom file inner height for generated browse buttonMark Otto
2018-04-24Closes #26300: Add cursor pointer to carousel indicatorsVarunram
2018-04-24Remove unnecessary resetting of left round (#26238)ysds
2018-04-24add validation styles for .form-control-file (#26181)Mark Otto
2018-04-24Replace reboot monospace hack with system font stacknickg
2018-04-24workaround for IE that check indicator does not appear (#25944)ysds
2018-04-24Print color fix dark tables and dark theads (#26193)Martijn Cuppens
2018-04-16Suppress text-hide deprecation warning (#26242)Alexander Rechsteiner
2018-04-16Remove `dialog` from the HTML5 shim style (#26269)Patrick H. Lauke
`<dialog>`, in browsers that support it, has user agent styles of `dialog { display:block; ...} dialog:not([open]) { display:none; }` by forcing it to `display:block` in the shim, the dialog is shown even when closed. There's no clean way to shim this for non-supporting browsers, but arguably these browsers would have further problems with pure `<dialog>` usage anyway, and it's up to authors to then use different elements/shims.
2018-04-14[trivial] Correct typos (#26297)Varunram Ganesh
2018-04-09Ship v4.1.0 (#26218)v4.1.0Mark Otto
* update docs path from docs/4.0/ to docs/4.1/ * bump version to 4.1.0 * Update redirects to work for 4.1 docs move * Update docs version switcher to include latest and link to 4.0 docs * re-run dist * Update package-lock.json * Update docs-navbar.html
2018-04-02Fix broken URI fragments and redirects.XhmikosR
2018-04-02Use https when possible.XhmikosR
2018-04-02Pagination move `.page-link:focus` outline value to variable ↵Patrick Yeo
`$pagination-focus-outline` so we can unset it via Sass and don't have to re-implement browser defaults
2018-04-02Allow non-string content as breadcrumb divider (#25581)Martijn Cuppens
* Allow url(), attr(), none,... as breadcrumb divider * Update breadcrumb divider docs
2018-04-01Tiny grammar and punctuation tweaks to a comment.Tom Swirly
1. It's == "it is" 2. The subject of the sentence is "Only one" (not "these") so the verb must agree with it. Feel free to do nothing with this change, use it, etc - I just saw this while reading through the code.
2018-04-01Deprecate .text-hide (#26173)Mark Otto
2018-04-01Add box-shadow utilities (#25758)Mark Otto
2018-04-01Add new .flex-grow and .flex-shrink utilsMark Otto
2018-04-01Fix Chrome's rendering of .card-columnsMark Otto
Uses orphans/widows trick from @fran-worley at https://github.com/twbs/bootstrap/issues/20925#issuecomment-333492739. Fixes #20925.
2018-04-01add 50% translucent black and white textMark Otto
2018-04-01add .text-body, fixes #25412Mark Otto
2018-04-01Remove navbar alignMartijn Cuppens
2018-04-01Add .text-monospace utilMark Otto
2018-03-20Making use of `prefers-reduced-motion` media query (#25641)Mike Rogers
* Making use of `prefers-reduced-motion` media query As discussed in #25249 - if a user (Who is using Safari / iOS) requests reduced motion in their system settings, we should avoid transitions. * Ignoring prefers reduced motion for CSS Linting * Updating copy clarifying the reduce motion functionality in accessibility.md
2018-03-12Rename `.custom-file-control` to `.custom-file-label` (#25736)ysds
2018-03-12Add basic position to dropup/right/left and dropdown-menu-right (#25400)ysds
2018-03-12Disable link functionality on disabled `btn-link` (#25645)Peter Etelej
Future-proof disabling of clicks on disabled `btn-link`. Fixes #25639 ensuring consistency between `btn-link` `<button>`s and `<a>`s when disabled.
2018-03-12Replace "loose" HEX values with their respective variables (#25672)Jacob Müller
2018-03-12Allow customization of breadcrumb border radius (#25807)Alexander Hjorth
2018-03-12Fix caret alignment (#25719)ysds
2018-03-12Collapse with flex elements - simple approach (#25806)Martijn Cuppens
* #22600: prevent display:block for visible content * allow transition for elements with show class
2018-03-08style: align some vars (#25785)Catalin Zalog
2018-03-04Adding a variable to handle the change of a modals border-radius. (#25691)Adam Kolinski
2018-02-24Merge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-devMark Otto
2018-02-24Remove disabling of stylelint ruleAdam Bowles
This file no longer has intentional indentation errors
2018-02-20make it a varMark Otto
2018-02-20Merge branch 'nav-divider-mixin' of https://github.com/ysds/bootstrap into ↵Mark Otto
ysds-nav-divider-mixin
2018-02-20Merge branch 'accordion-borders' of ↵Mark Otto
https://github.com/andresgalante/bootstrap into v4-dev
2018-02-20Add color variable for caption (#25657)ysds
2018-02-20Custom range input (#25600)Mark Otto
* added the styling * added the documentation * update for one rule per line * fix hound error: trailing whitespace * trimmed off vendor prefixes * Add note about track and thumb * Psuedo-elements must be split across multiple rulesets to have an affect * Fix firefox inner focus * Seems that FF is the only one affected by this * Add support for gradients * Add labels, clarify min/max changes * add step example * add custom range vars