1. 15 Apr, 2018 1 commit
    • Patrick H. Lauke's avatar
      Remove `dialog` from the HTML5 shim style (#26269) · e000933c
      Patrick H. Lauke authored
      `<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.
      e000933c
  2. 12 Mar, 2018 1 commit
  3. 19 Feb, 2018 1 commit
  4. 11 Feb, 2018 1 commit
  5. 11 Jan, 2018 1 commit
  6. 28 Dec, 2017 1 commit
  7. 06 Nov, 2017 1 commit
  8. 22 Oct, 2017 1 commit
  9. 06 Oct, 2017 1 commit
  10. 04 Oct, 2017 1 commit
  11. 03 Oct, 2017 1 commit
  12. 27 Sep, 2017 1 commit
  13. 26 Sep, 2017 2 commits
  14. 21 Aug, 2017 1 commit
  15. 15 Aug, 2017 1 commit
    • Jacob Müller's avatar
      Remove remaining v4 alpha references (#23414) · 63909cac
      Jacob Müller authored
      * Remove remaining references to v4 Alpha
      
      This commit removes the remaining refrences to the v4 Alpha website and replaces them with the
      corresponding v4 Beta ones.
      
      **Note:** We have to hard code the current docs version at some places. Wouldn't it be good to have a `/docs/latest/` redirect to solve this "issue" in the future?
      
      * Don't update the domain in the CNAME file
      63909cac
  16. 11 Aug, 2017 3 commits
  17. 05 May, 2017 1 commit
  18. 10 Apr, 2017 1 commit
  19. 18 Mar, 2017 1 commit
    • naicko's avatar
      Update scss mixins to comply with scss-linting rules (#22151) · 890c6041
      naicko authored
      * Fixed some linting issues
      
      * Run npm tasks after scss cleanup
      
      * Revert "Run npm tasks after scss cleanup"
      
      This reverts commit 1103a0da.
      
      * 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
      890c6041
  20. 24 Jan, 2017 1 commit
  21. 21 Jan, 2017 1 commit
    • Mark Otto's avatar
      Drop Normalize, port relevant parts to Reboot (#21741) · 4fa77494
      Mark Otto authored
      * Get this party started by removing mention of Normalize.css
      
      * Nuke the old comment, consolidate to a single line and number as appropriate
      
      * Bring over styles for HTML element from Normalize to Reboot
      
      * Move margin override for body element from Normalize to Reboot
      
      * Drop the block reset for HTML5 elements in IE9- from Normalize given we dropped IE9 support
      
      * Building on previous commit, do the same thing for figure, figcaption, and main
      
      * Remove IE9- display from Normalize given our browser support
      
      * Drop IE8 figure margin because we're IE10+
      
      * No need for the h1 overrides because we reset these font and margin styles anyway in _type.scss already
      
      * Drop Safari 6 b and strong normalization because we're Safari 8+
      
      * Remove mark styles for IE9- from Normalize
      
      * Remove old iOS audio fixes from Normalize
      
      * Remove IE9- display for progress from Normalize
      
      * Remove more IE9- rules from Normalize
      
      * One more IE9- display removal for canvas element
      
      * Move pre overrides from Normalize to Reboot
      
      * Move over some link resets to Reboot, drop others
      
      - Move over background-color and text-decoration
      - Drop focus outline change given it affects the offset on hover of
      focused links
      
      * Move over more code element resets, consolidate with pre overrides, too
      
      * Move over sub and sup wholesale
      
      * Move over img normalization to Reboot
      
      * Move over SVG override too
      
      * - Drop dupe hidden, but add comment for it
      - Move over template
      - Move over summary
      
      * Remove bulk of @viewport comment
      
      * edit down that code comment
      
      * consolidate html-based normalizations
      
      * update comments
      
      * Consolidate abbr styles
      
      * move over more type elements
      
      * move over hr changes
      
      * move over form controls and more
      
      * move over button resets
      
      * move over firefox button changes
      
      * move over search changes and more
      
      * we nuke all these styles for fieldsets anyway, so outright remove them
      
      * no need for those, we override them
      
      * move over legend, fieldset, progress
      
      * line break
      
      * delete normalize file
      
      * linting
      
      * update comment
      
      * clarify docs mentions of normalize and reboot
      
      * remove normalize excludes from linter
      
      * remove normalize excludes from cli task
      
      * linting
      
      * callout license since we forked part of normalize
      
      * Improve comments, move table background reset to .table class instead of in reboot
      
      * trailing space
      4fa77494
  22. 16 Jan, 2017 1 commit
  23. 04 Jan, 2017 1 commit
  24. 31 Dec, 2016 1 commit
  25. 02 Dec, 2016 1 commit
  26. 01 Dec, 2016 2 commits
  27. 29 Nov, 2016 1 commit
    • Mark Otto's avatar
      Fix #20908 (#21244) · af937836
      Mark Otto authored
      Remove the border-bottom from abbr elements since that's covered with an underline in Normalize.css. Updates the docs to match and tweaks some code comments, too.
      af937836
  28. 25 Oct, 2016 1 commit
  29. 03 Oct, 2016 4 commits
  30. 05 Sep, 2016 1 commit
  31. 10 May, 2016 1 commit
    • Patrick H. Lauke's avatar
      Make named anchor/placeholder link style reset more specific · 64251a12
      Patrick H. Lauke authored
      This avoids applying the reset to named anchors/placeholder links (links
      without an `href`) that have explicitly been made keyboard-focusable
      (using `tabindex`). This is not fool-proof - it's not
      easy/straightforward to check for the actual `tabindex` value itself, to
      ensure it's positive, not will this apply if a link has been "blessed"
      with `tabindex` via JS. However, this should catch most common uses (and
      gives a reasonably valid way around the issue for developers who, for
      whatever reason, DO want to use links without `href` - as side effect,
      it forces best practice of at least ensuring these links can also be
      focused with the keyboard)
      64251a12
  32. 08 May, 2016 2 commits