https://github.com/twbs/bootstrap
Revision 0d054bb0f1484dbc0c778d3643e96e37ff46d708 authored by Patrick H. Lauke on 05 January 2022, 17:20:15 UTC, committed by GitHub on 05 January 2022, 17:20:15 UTC
 Remove explicit use of aria-hidden & visibility for offcanvas when closed, handling it with css

Co-authored-by: GeoSot <geo.sotis@gmail.com>
Co-authored-by: Gaƫl Poupard <ffoodd@users.noreply.github.com>
1 parent f7a1b18
Raw File
Tip revision: 0d054bb0f1484dbc0c778d3643e96e37ff46d708 authored by Patrick H. Lauke on 05 January 2022, 17:20:15 UTC
Remove explicit use of aria-hidden for offcanvas when closed (#35589)
Tip revision: 0d054bb
.stylelintrc
{
  "extends": [
    "stylelint-config-twbs-bootstrap"
  ],
  "rules": {
    "declaration-property-value-disallowed-list": {
      "border": "none",
      "outline": "none"
    },
    "function-disallowed-list": [
      "calc",
      "lighten",
      "darken"
    ],
    "property-disallowed-list": [
      "border-radius",
      "border-top-left-radius",
      "border-top-right-radius",
      "border-bottom-right-radius",
      "border-bottom-left-radius",
      "transition"
    ],
    "scss/dollar-variable-default": [
      true,
      {
        "ignore": "local"
      }
    ],
    "scss/selector-no-union-class-name": true
  }
}
back to top