1. 15 Sep, 2021 7 commits
  2. 14 Sep, 2021 1 commit
  3. 09 Sep, 2021 1 commit
    • Patrick H. Lauke's avatar
      v4: Disabled link cleanup (#34924) · f4a1a35c
      Patrick H. Lauke authored
      manual backport of #34886
      
      per https://www.w3.org/TR/html-aria/#docconformance
      
      > It is NOT RECOMMENDED to use `aria-disabled="true"` on an `a` element with an `href` attribute.
      >
      >NOTE
      >If a link needs to be "disabled", remove the `href` attribute.
      
      This PR removes the unnecessary `href="#"`, `tabindex="-1"`, and `aria-disabled="true"` from disabled links in both docs pages and examples. `aria-disabled="true"` *is* kept for disabled link-based buttons (that have `role="button"`) as there it's appropriate to use (you *want* to convey to assistive technologies that this thing you're claiming is a button is also disabled at the moment)
      
      Further, the PR extends the "Link functionality caveat" to show the "proper" way (removing `href` and adding `.disabled` class only) to disable a link, but then explains what to do if that's not possible (and then keeps an example with all the traditional `href="#" tabindex="-1" aria-disabled="true"`, but explains clearly that it's not ideal). Same sort of explanation is also added to the pointer event utilities page
      Unverified
      f4a1a35c
  4. 08 Sep, 2021 3 commits
  5. 25 Jul, 2021 1 commit
  6. 21 Jul, 2021 9 commits
  7. 08 Jul, 2021 1 commit
  8. 24 Jun, 2021 1 commit
    • k-utsumi's avatar
      :bug: Enable `0.x` with negative margins @ v4 (#33593) · 086c0bfc
      k-utsumi authored
      * :bug: Enable `0.x` with negative margins @ v4
      
      I set it as below, but no negative margin was added.
      `$spacers: (0\.5: ($spacer * .125));`
      
      After investigating, it seems that `0 \ .5` is also evaluated as 0.
      So I changed it to string comparison.
      
      HTML example: `<img class="mt-n0.5">`
      
      * :green_heart: Clear CI errors
      Unverified
      086c0bfc
  9. 09 Jun, 2021 1 commit
  10. 02 Jun, 2021 1 commit
  11. 21 May, 2021 7 commits
  12. 30 Apr, 2021 1 commit
  13. 28 Apr, 2021 1 commit
  14. 15 Apr, 2021 1 commit
  15. 06 Apr, 2021 1 commit
  16. 05 Apr, 2021 3 commits
    • XhmikosR's avatar
      Update devDependencies · 67f873f4
      XhmikosR authored
      * @babel/cli                    ^7.13.0  →  ^7.13.14
      * @babel/core                   ^7.13.8  →  ^7.13.14
      * @babel/preset-env             ^7.13.9  →  ^7.13.12
      * @rollup/plugin-commonjs       ^17.1.0  →   ^18.0.0
      * @rollup/plugin-node-resolve   ^11.2.0  →   ^11.2.1
      * autoprefixer                  ^10.2.4  →   ^10.2.5
      * clean-css-cli                 ^5.2.0  →    ^5.2.2
      * eslint                        ^7.21.0  →   ^7.23.0
      * eslint-plugin-unicorn         ^28.0.2  →   ^29.0.0
      * globby                        ^11.0.2  →   ^11.0.3
      * hugo-bin                      ^0.69.0  →   ^0.70.0
      * karma                         ^6.1.1  →    ^6.3.2
      * postcss                       ^8.2.6  →    ^8.2.9
      * qunit                         ^2.14.0  →   ^2.14.1
      * rollup                        ^2.40.0  →   ^2.44.0
      * stylelint                     ^13.11.0  →  ^13.12.0
      
      Also lock jQuery to v3.5.1 since 3.6.0 has a bug that affects at least our tests
      67f873f4
    • XhmikosR's avatar
      BrowserStack: test on iPhone 12 (#33398) · a06c2b67
      XhmikosR authored
      a06c2b67
    • XhmikosR's avatar
      b58ea4a4