aboutsummaryrefslogtreecommitdiff
path: root/scss
AgeCommit message (Collapse)AuthorFilesLines
2017-03-27Card image fixes (#22288)Mark Otto1-5/+7
* fix image stretching due to flexbox * fix broke text-muted on dark bg * no img-fluid needed
2017-03-26Use the hr-method for the nav-divider, closes #21945Mark Otto1-2/+2
2017-03-26fixes #22111Mark Otto1-1/+2
- add .col-*-auto to the extend in our grid framework mixins so it gets padding - this means we can avoid the col-12 classes in our docs for the responsive variants
2017-03-26fixes #22245: revamp the breakpoint-between and breakpoint-only mixins to ↵Mark Otto1-5/+9
actually work
2017-03-26Drop position relative on container that was added quickly in Alpha 6Mark Otto1-1/+0
2017-03-26.navbar-toggler colorCatalin Zalog1-4/+4
Change the .navbar-toggler to default contextual .navbar-*-color. <iframe height='265' scrolling='no' title='Bootstrap - .navbar-toggler color' src='//codepen.io/zalog/embed/MJLZOE/?height=265&theme-id=light&default-tab=css,result&embed-version=2' frameborder='no' allowtransparency='true' allowfullscreen='true' style='width: 100%;'>See the Pen <a href='http://codepen.io/zalog/pen/MJLZOE/'>Bootstrap - .navbar-toggler color</a> by Catalin Zalog (<a href='http://codepen.io/zalog'>@zalog</a>) on <a href='http://codepen.io'>CodePen</a>. </iframe>
2017-03-23rename from .navbar-toggleable to .navbar-expand to reflect mobile first ↵Mark Otto1-2/+2
approach everywhere else
2017-03-23Allow to customize navbar-brand font-sizePierre-Denis Vanduynslager2-2/+3
2017-03-23Harmonize navbar-brand, navbar-text and nav-link heightPierre-Denis Vanduynslager3-24/+34
2017-03-23revamp the collapse behaviorMark Otto1-5/+20
instead of flex column, use wrap and an explicit flexbox break with flex-basis 100% on the navbar-collapse. add some additional container styles for enabling flex behavior when content isn't immediate child of .navbar
2017-03-23account for fluid containersMark Otto1-2/+4
2017-03-23ditch abs positioned togglers for explicit justify-content: space-between on ↵Mark Otto1-11/+0
parent
2017-03-23Simplify generation and get rid of previously added "breakpoint-previous" ↵Pierre-Denis Vanduynslager2-18/+5
function
2017-03-23Generate correct breakpoints for navbar-toggleable-* and generate toggleable ↵Pierre-Denis Vanduynslager2-4/+17
without media query to never collapse
2017-03-19linting from beforeMark Otto1-1/+1
2017-03-19fixes rest of #21585; adds custom styles for inverse table accent hover and ↵Mark Otto2-0/+17
active states
2017-03-19reorderMark Otto1-7/+6
2017-03-19consistent breaksMark Otto1-1/+0
2017-03-19Do what the comment says; add this only to devices under 768pxMark Otto1-8/+10
2017-03-19correct inverse table border color, add new varMark Otto2-1/+2
2017-03-19Update _screen-reader.scss (#22154)Gaël Poupard1-2/+5
* Update _screen-reader.scss Small improvements that could be important: * `clip` [is deprecated](https://www.w3.org/TR/css-masking-1/#clip-property). Adding `clip-path` as progressive enhancement; the shorter notation came from @ryuran 's [suggestion](https://twitter.com/ryuran78/status/778943389819604992); * [J. Renée Beach warned about single pixel with interfering with screen readers vocalisation](https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe#.vcd5xlpgg) solved with `white-space`. See [the detailed post on Hugo Giraudel's blog](http://hugogiraudel.com/2016/10/13/css-hide-and-seek/). Also kinda related to issue #20732 :) Please let me know if you find any trouble with this technique. Thanks a lot! * Reorder declarations To pass Hound. Didn't think `clip` and `clip-path` would be considered as unrelated… * Trailing spaces * Last trailing space? * Remove margin: -1px
2017-03-19Fix justified nav styles and update nav docs for fill/justifyMark Otto1-1/+2
- Justified and fill nav variants need .nav-item classes on the anchors in addition to .nav-link - Fix broken styles for the .nav-justified class which wasn't actually doing what we needed it to
2017-03-18Merge branch 'v4-dev' of https://github.com/twbs/bootstrap into v4-devMark Otto15-24/+27
2017-03-18fixes #21584Mark Otto1-3/+1
- revert back to display block for list items to prevent unwanted behaviors - fixes a handful of other linked issues (see main thread) - updates docs to include more utilities for the one example
2017-03-18Add :empty to .custom-file-control selector (#22176)Theriault1-1/+1
<label class="custom-file"><input type="file" class="custom-file-input" /><span class="custom-file-control"></span></label> VS <label class="custom-file"><input type="file" class="custom-file-input" /><span class="custom-file-control">test.txt</span></label>
2017-03-18Update scss mixins to comply with scss-linting rules (#22151)naicko15-23/+26
* Fixed some linting issues * Run npm tasks after scss cleanup * Revert "Run npm tasks after scss cleanup" This reverts commit 1103a0da68d1846ad592eb4a105046a939557830. * Property sort order for grid * Let's respest the property order in the mixins * Respect property sort order in reboot file * ::-ms-expand is a vendor-prefix, add it to the scss-lint disable * Revert hover mixin comment * Fixed missing mixin hover-focus
2017-03-12Remove the outline override from dropdown togglesMark Otto1-5/+0
fixes #17573
2017-03-12Use btn-$variant-color variables for outlined btns (#22164)Dominic Watson1-6/+6
Despite now having the ability to override outline-variant color, it's not actually being used so each are still #fff Related: https://github.com/twbs/bootstrap/pull/20734
2017-03-05Clean up spacers a bit moreStarsam802-36/+16
2017-03-05Move box-shadow and transition mixins out of the main mixins file and into ↵Mark Otto3-16/+16
their own files
2017-03-05Drop the .hidden and .visible classes, save for the print onesMark Otto3-51/+42
— Moves print display utils to display utils file — Removes all other .hidden- utils — Expands on .invisible and it's mixin to provide options for visibility: visible and visibility: hidden
2017-03-05Update spacer utilities (#22123)Mark Otto5-42/+42
* Drop -x and -y as they're all the same - Also move -width to elsewhere in the vars because it makes no sense by spacers. - Update values of -x and -y across main Sass and docs Sass. * Update docs to reflect changes; link to spacing utils from options page
2017-03-03Change sticky order (#22027)Catalin Zalog1-1/+1
Based on this pen: http://codepen.io/zalog/pen/jyoyoR
2017-03-03Fix border width calculation for custom-select (#22068)Rutger Laurman1-1/+1
In addition to #22011 and #21994
2017-03-03Remove 'hover' from nav-tabs-active-link-hover-color et al (#22087)Sean Beyer2-6/+6
* Remove 'hover' from variable names * Fix indentation in variables
2017-02-21Remove vendor prefixes from appearance: none.Bardi Harborow1-3/+1
2017-02-11Remove unused input-size mixin (#21971)Pierre Vanduynslager1-26/+0
2017-02-04Fixes #21814. Also accounts for custom file inputs.Mark Otto1-1/+3
2017-02-04Add `utilities/flex` to the dedicated grid Sass bundle so folks can take ↵Mark Otto1-0/+1
advantage of the utilities for basic flex alignment
2017-02-04Fixes #21908Mark Otto1-1/+1
2017-01-28Reduce the width to prevent the modal fills the screen widthJuan Carlos González Cabrero1-1/+1
2017-01-28Add new extra large size for modal containersJuan Carlos González Cabrero2-0/+5
2017-01-24Remove random cursor: default from pill nav (#21835)Mark Otto1-1/+0
Fixes #21560. Pretty sure this wasn't intentional, so should be fine to remove.
2017-01-24Allow button toolbars to wrap (#21826)Mark Otto1-0/+1
Fixes #21699
2017-01-24Add align self to navbar brand (#21626)Sergey Kovalenko1-0/+1
2017-01-24Rename order utilities to intended class names (#21739)Mark Otto1-3/+3
* rename order utilities to intended class names * Documentation fixes.
2017-01-24Pixel perfect navbar toggler (#21821)Geremia Taglialatela1-2/+2
The actual available size of the navbar toggler icon is 30px, but the SVG uses a 32 unit grid. This commit uses a 30 unit grid and updates icon accordingly.
2017-01-23Update _custom.scss imports in other builds (#21825)Mark Otto2-9/+2
- Correctly places the _custom.scss file first in the other two buids. - Also removes the clearfix mixin from the grid build because flexbox yo.
2017-01-23Allow flex-based navs to wrap like they used to (#21824)Mark Otto1-0/+1
2017-01-23Remove `cursor: pointer;` (#21812)Mark Otto6-18/+0
* Remove most of custom cursor: pointer; implementations * turns out that's not so much of a thing