https://github.com/twbs/bootstrap
Revision 37f3977e6d96e274cb73255d99e3e4ec60f03c0f authored by Gaël Poupard on 22 February 2022, 08:02:47 UTC, committed by GitHub on 22 February 2022, 08:02:47 UTC
* fix(reboot): revert hr styles to v4 implementation

* docs(cheatsheet): add a hr example

* fix(reboot): currentColor is the initial border-color value

* Document hr element in Reboot docs

* Update migration guide

* Update scss/_variables.scss

Co-authored-by: Mark Otto <markd.otto@gmail.com>
1 parent 0804c00
Raw File
Tip revision: 37f3977e6d96e274cb73255d99e3e4ec60f03c0f authored by Gaël Poupard on 22 February 2022, 08:02:47 UTC
Rely on `border-width` for `<hr>` size (#35491)
Tip revision: 37f3977
.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