1. 13 Sep, 2018 1 commit
  2. 26 Aug, 2018 2 commits
  3. 13 Aug, 2018 1 commit
  4. 29 Jul, 2018 1 commit
  5. 25 Jul, 2018 3 commits
  6. 20 Jul, 2018 1 commit
  7. 15 Jul, 2018 1 commit
    • ysds's avatar
      Fix custom range thumb style (#26385) · 48c723b6
      ysds authored
      * Fix focus box shadow of custom ranges
      
      * Put `:focus` selector right after `.custom-range`
      * Remove unnecessary `outline: none`
      
      * Fix box-shadow issues in IE/Edge
      
      * Better align
      
      * Fix thumb vertical positions in IE/Edge
      
      * Fix incorrect formula of thumb vertical positions in Webkit
      
      * Fix an incorrect comment
      
      * Fix incorrect box-shadow-width
      48c723b6
  8. 08 Jul, 2018 1 commit
    • Mark Otto's avatar
      Restore feedback icons on validated form fields · 8d8d3ef8
      Mark Otto authored
      - Only applies to textual inputs and textareas with `.form-control` and selects with `.custom-select`
      - Wrap the feedback icons in a Sass variable option, $enable-validation-icons, so folks who theme can disable
      - Update docs to summarize styles, mention the icons, include a textarea demo, and add mention of the Sass variable option to the Theming section
      8d8d3ef8
  9. 24 Jun, 2018 1 commit
  10. 02 Jun, 2018 1 commit
  11. 22 May, 2018 2 commits
  12. 30 Apr, 2018 1 commit
  13. 14 Apr, 2018 1 commit
  14. 02 Apr, 2018 2 commits
  15. 01 Apr, 2018 1 commit
  16. 12 Mar, 2018 2 commits
  17. 08 Mar, 2018 1 commit
  18. 03 Mar, 2018 1 commit
  19. 20 Feb, 2018 1 commit
  20. 19 Feb, 2018 3 commits
    • ysds's avatar
      Add color variable for caption (#25657) · 33f3ba33
      ysds authored
      33f3ba33
    • Mark Otto's avatar
      Custom range input (#25600) · 470b4472
      Mark Otto authored
      * 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
      470b4472
    • Martijn Cuppens's avatar
      3dd0bde6
  21. 11 Feb, 2018 3 commits
  22. 21 Jan, 2018 1 commit
    • Taufek Johar's avatar
      Add CSS Utility for `auto` width and height Properties (#24249) · 2b42ef0d
      Taufek Johar authored
      Currently bootstrap only provides 4 variations of `width` and `height` css utilities, which are:
      
      1. 25%
      2. 50%
      3. 75%
      4. 100%.
      
      Here, I'm adding `auto` to the list. This is useful when we need to reset the width/height value
      back to the browser default value at some point.
      2b42ef0d
  23. 19 Jan, 2018 1 commit
  24. 17 Jan, 2018 1 commit
    • Andrew Luca's avatar
      Fix input height border (#25331) · 4c96f58e
      Andrew Luca authored
      When changing `$input-border-width`, `$input-height-border` does not change and `select.form-control` `custom-select` `custom-file` will still have `$input-height` which is resolved from `$input-btn-border-width`
      
      This will work in cases when want controls with border, and buttons without.
      
      Temporary fix will be to override 2 variables
      
      ```
      $input-border-width: 2px !default;
      
      // which is
      // $input-height-border: $input-btn-border-width * 2 !default;
      $input-height-border: $input-border-width * 2 !default;
      ```
      4c96f58e
  25. 16 Jan, 2018 1 commit
  26. 13 Jan, 2018 1 commit
  27. 11 Jan, 2018 1 commit
    • Mark Otto's avatar
      Deprecate hover media query shim and mixins (#25270) · 92cc0aba
      Mark Otto authored
      * Deprecate hover media query shim and mixins
      
      Fixes #25195.
      
      This never was completed or fully implemented, and the docs are inaccurate as to what browsers are currently affected by this stickied hover problem. This PR aims to update the docs and deprecate the shim from our mixins and only return the pseudo-classes. To reflect the order of these states used elsewhere (e.g., our button styles), I've also updated the order of each within the mixin.
      
      * Mention in docs and variables that it's deprecated
      92cc0aba
  28. 06 Jan, 2018 1 commit
  29. 04 Jan, 2018 1 commit
    • Mark Otto's avatar
      Print tweaks (#25164) · 20765b50
      Mark Otto authored
      * Add min-width to body when printing
      
      This should address some inconsistencies between browsers when printing. It applies a min-width to the body so that the content better resembles what your might see on your screen. I've made it a variable for easy customizing, too.
      
      * Don't underline buttons when printing
      
      * Add basic print styles for page and body size to create a semi-consistent print experience across browsers
      20765b50
  30. 03 Jan, 2018 1 commit
    • Mark Otto's avatar
      Update pagination focus styles · 2dc5762f
      Mark Otto authored
      - Drops the hover-focus mixin for standard :hover
      - Adds explicit :focus styles to match button, input, etc with a box-shadow
      - Adjusts z-index values to ensure the layers go initial, hover, active, focus
      
      Fixes #24838.
      2dc5762f