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
2019-08-27Allow modification of the value of remMartijn Cuppens
2019-08-26Update z-indices (#29292)Martijn Cuppens
- `.carousel-caption` doesn't need a z-index. There are no non-static element in its containing block (`.carousel-item`) - The `z-index` of `.carousel-indicators` is way higher than it needs to be (`15`), the highest sibling `z-index` is `1`, so it can be set to `2` to be the top layer.
2019-08-26Link helpers & use utility API for all utilitiesMartijn Cuppens
2019-08-24Document example of datalists with form controls (#29058)Mark Otto
- Add example to the new form control docs - Reset the [list] selector in Reboot to hide the random dropdown arrow in Chrome
2019-08-24Remove padding around color swatchesMartijn Cuppens
2019-08-24Add rounded corners to color swatchesMartijn Cuppens
2019-08-24Add support and docs for color inputMark Otto
2019-08-22Remove `position: relative` from `.collapsing`Martijn Cuppens
2019-08-22Drop `$nav-divider-*` variables (not used)Martijn Cuppens
2019-08-22Drop nav divider mixinMartijn Cuppens
2019-08-18Split up `.form-control` & `.form-select` selectorsMartijn Cuppens
2019-08-18Fix date heightsMartijn Cuppens
2019-08-18set min-height for form-control textaream5o
* set `min-height` for `.form-control` textarea * prevent user from shrink textarea to minimum height
2019-08-18Add possibility to define custom border color for disabled form controls ↵tu4mo
(#29257)
2019-08-16Enable wrapping for elements in .modal-footer (#25103)Martijn Cuppens
2019-08-16Restore `cursor: pointer` for checkbox/radio buttons (#29239)Martijn Cuppens
2019-08-14Function map-get-multiple now returns the correct variable (#29247)Thomas Schaller
2019-08-09Fix Firefox rendering issue (#29234)Martijn Cuppens
2019-08-07Remove unneeded Stylelint suppressions. (#29222)XhmikosR
2019-08-06Fix min-width of input-group flex items (#29209)Shohei Yoshida
2019-08-05Responsive containers (follow-up to #29095) (#29118)Mark Otto
* Follow-up to #29095 This PR fixes the responsive containers that were added in #29095, originally stubbed out in #25631. Apologies to @browner12 for getting that wrong. Fixes #25631. * update navbar as well because we cannot reset all containers uniformly * Update navbars example to include container-xl example to ensure containers match * rewrite responsive containers docs, add table of max-widths * Update container docs - Move table up to the intro - Remove the container example because it's actually hella confusing - Update and link to grid example as a demo instead
2019-08-03Allow .page-links to get left margin. (#28948)GeoSot
* Allow .page-links to get left margin. * Add border-radius to page-links in case they have left margin * Apply MartijnCuppens suggestion to _pagination.scss Co-Authored-By: Martijn Cuppens <martijn.cuppens@gmail.com> * Plus if/else Rules * Formatting fixes * Fix border-radius for pagination-size * Use mixin for default pagination sizing
2019-07-30carousel: fix transition properties order. (#29173)XhmikosR
2019-07-29Remove comment about tabindex (#29165)Shohei Yoshida
2019-07-29Fix reboot for placeholder links (#29140)Shohei Yoshida
2019-07-29Change property from background to background-image (#29149)Chandan Deep
For Gradient, We have to use the background-image instead of only background.
2019-07-27Haha, floats. It's 2019 (#29147)Martijn Cuppens
2019-07-25Update _variables.scssXhmikosR
2019-07-25Remove leftover CSS for custom controlysds
2019-07-25Fix variable nameysds
2019-07-25Merge code page with rebootMartijn Cuppens
2019-07-25Remove duplicateShohei Yoshida
2019-07-25Reboot updatesMartijn Cuppens
- Remove unsupported browsers fixes - More consistent comment blocks - Reorganise order of some blocks - Add height fix for date/month/week/time inputs (#18842) - Remove redundant type selectors - Additional resets and theming options for `legend` - Add date & color inputs to reboot page - Use the same borders for text search, text inputs, textareas and date inputs - Move code styling to reboot
2019-07-25Drop `.pre-scrollable` classMartijn Cuppens
2019-07-25Drop `color()`, `theme-color()` & `gray()` functions (#29083)Martijn Cuppens
Drop `color()`, `theme-color()` & `gray()` functions in favor of variables. The functions just called a `map-get()` of a map where just the variables were defined. Also the `theme-color-level()` now accepts any color you want instead of only `$theme-colors` colors. The first value now is a variable instead of the `$theme-colors` key.
2019-07-24Apply `at-mixin-argumentless-call-parentheses: always` stylelint ruleMartijn Cuppens
2019-07-23Extend `.container-fluid` (#29106)Martijn Cuppens
2019-07-22fix broken classesMark Otto
2019-07-22Fix license header.XhmikosR
2019-07-22Add bootstrap-utilities.scssjulian-hecker
2019-07-22Remove card columns in favor of masonry gridMartijn Cuppens
2019-07-22Revert padding-right on ol and ul in Reboot, update migration docMark Otto
2019-07-22v4/v5: Add responsive containers (#29095)Mark Otto
* create responsive containers provide more flexibility and allow the user to determine when containers switch from fluid to fixed width. * fix the base container code this commit fixes the non-media portion of the generated CSS. I learned about the `@extends` directive and was able to put it to good use. I create a new temporary map that contains all the main `$container-max-widths` and join it to our 2 special cases of 'xs' and 'fluid'. Then we loop through that and, with the appropriate infixes, extend our placeholder * formatting for style forgot to run my tests before the last push, i think these are better. * finish incomplete comment * fix the responsive containers using the `@extend` directive I was able to clean up this code * fix responsive containers in the navbar mostly we just look through all of our breakpoints so we can include all of the responsive container classes in the tweaks we have to do for the navbar (redeclaring flex properties, don't double up on padding, etc) * Simplify container extends * Simplify navbar containers * Rearrange, add comments, ensure everything is nested in $enable-grid-classes * Reduce new CSS by using attribute selector We avoid using `@extend` whenever possible, and this is more readable * Update _grid.scss * Update _navbar.scss * Add docs for responsive containers, redesign the container layout page * Add to the Grid example
2019-07-22Optimize the embedded SVGs. (#29075)XhmikosR
2019-07-20Use escape-svg() function (#29077)Martijn Cuppens
* Use escape-svg() function * Update theming.md
2019-07-18Make it possible to change default alignment & allow to inherit alignment ↵Martijn Cuppens
from table (#29039)
2019-07-17Use :focus-within for .form-file focus state (#29036)Mark Otto
Fixes #26563, closes #26576, closes #29021.
2019-07-17Remove redundant fill-ruleMartijn Cuppens
2019-07-17Move xmlns after `svg` for consistency.XhmikosR
2019-07-17Escape the newly added SVGs.XhmikosR
Also use `viewBox` instead of `viewbox`.