1. 20 Mar, 2018 1 commit
    • Mike Rogers's avatar
      Making use of `prefers-reduced-motion` media query (#25641) · 2306f62b
      Mike Rogers authored
      * 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
      2306f62b
  2. 12 Mar, 2018 7 commits
  3. 08 Mar, 2018 1 commit
  4. 03 Mar, 2018 1 commit
  5. 24 Feb, 2018 1 commit
  6. 20 Feb, 2018 1 commit
  7. 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
  8. 12 Feb, 2018 1 commit
  9. 11 Feb, 2018 5 commits
  10. 07 Feb, 2018 1 commit
  11. 03 Feb, 2018 1 commit
  12. 02 Feb, 2018 1 commit
  13. 30 Jan, 2018 1 commit
  14. 22 Jan, 2018 3 commits
  15. 21 Jan, 2018 3 commits
  16. 20 Jan, 2018 1 commit
  17. 19 Jan, 2018 1 commit
  18. 18 Jan, 2018 2 commits
    • Mark Otto's avatar
      Bump version to 4.0.0 · 572d00ac
      Mark Otto authored
      572d00ac
    • Mark Otto's avatar
      Prevent print utils from overriding all other display utils (#25269) · 9b0fcbf9
      Mark Otto authored
      * Prevent print utils from overriding all other display utils
      
      Fixes #25221.
      
      I agree with the referenced issue—this is unexpected and also causes a serious bug when mixed with other utility classes. This wasn't an issue in v3 given we had different utilities for hiding that weren't focused on display property.
      
      * Add printing changes to migration docs
      
      * unrelated heading sentence case change
      
      * List out all .d-print- classes
      9b0fcbf9
  19. 17 Jan, 2018 3 commits
    • Mark Otto's avatar
      Outline button hover color (#25339) · a0936c32
      Mark Otto authored
      a0936c32
    • ysds's avatar
    • 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
  20. 16 Jan, 2018 2 commits