Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2021-12-14 10:51:31 +0300
committerGitHub <noreply@github.com>2021-12-14 10:51:31 +0300
commit8cdb6c40bdf55229459f479111e6a44d49052cf1 (patch)
tree04404e60519407f9a7af2ded8c4411a8604f4b2c /site/content/docs
parentcd50942831c911dc2ff4b6d252361b5cbe708f1d (diff)
Update stylelint and stylelint-config-twbs-bootstrap (#35438)
Diffstat (limited to 'site/content/docs')
-rw-r--r--site/content/docs/5.1/examples/.stylelintrc4
-rw-r--r--site/content/docs/5.1/examples/cheatsheet/cheatsheet.css8
-rw-r--r--site/content/docs/5.1/examples/cheatsheet/cheatsheet.rtl.css8
-rw-r--r--site/content/docs/5.1/examples/features/features.css2
4 files changed, 11 insertions, 11 deletions
diff --git a/site/content/docs/5.1/examples/.stylelintrc b/site/content/docs/5.1/examples/.stylelintrc
index dc76dedbde..79ea92df07 100644
--- a/site/content/docs/5.1/examples/.stylelintrc
+++ b/site/content/docs/5.1/examples/.stylelintrc
@@ -1,12 +1,12 @@
{
"extends": [
- "stylelint-config-twbs-bootstrap/css"
+ "stylelint-config-twbs-bootstrap"
],
"rules": {
"at-rule-no-vendor-prefix": null,
"comment-empty-line-before": null,
"media-feature-name-no-vendor-prefix": null,
- "property-blacklist": null,
+ "property-disallowed-list": null,
"property-no-vendor-prefix": null,
"selector-no-qualifying-type": null,
"selector-no-vendor-prefix": null,
diff --git a/site/content/docs/5.1/examples/cheatsheet/cheatsheet.css b/site/content/docs/5.1/examples/cheatsheet/cheatsheet.css
index 77aa0f23c6..ac0342b375 100644
--- a/site/content/docs/5.1/examples/cheatsheet/cheatsheet.css
+++ b/site/content/docs/5.1/examples/cheatsheet/cheatsheet.css
@@ -99,9 +99,9 @@ body {
@media (min-width: 1200px) {
body {
display: grid;
- gap: 1rem;
- grid-template-columns: 1fr 4fr 1fr;
grid-template-rows: auto;
+ grid-template-columns: 1fr 4fr 1fr;
+ gap: 1rem;
}
.bd-header {
@@ -127,10 +127,10 @@ body {
.bd-cheatsheet section,
.bd-cheatsheet article {
display: inherit; /* 1 */
- gap: inherit; /* 1 */
+ grid-template-rows: auto;
grid-template-columns: 1fr 4fr;
grid-column: 1 / span 2;
- grid-template-rows: auto;
+ gap: inherit; /* 1 */
}
.bd-aside {
diff --git a/site/content/docs/5.1/examples/cheatsheet/cheatsheet.rtl.css b/site/content/docs/5.1/examples/cheatsheet/cheatsheet.rtl.css
index c1a4a1ccce..a68c02559c 100644
--- a/site/content/docs/5.1/examples/cheatsheet/cheatsheet.rtl.css
+++ b/site/content/docs/5.1/examples/cheatsheet/cheatsheet.rtl.css
@@ -96,9 +96,9 @@ body {
@media (min-width: 1200px) {
body {
display: grid;
- gap: 1rem;
- grid-template-columns: 1fr 4fr 1fr;
grid-template-rows: auto;
+ grid-template-columns: 1fr 4fr 1fr;
+ gap: 1rem;
}
.bd-header {
@@ -122,10 +122,10 @@ body {
.bd-cheatsheet section,
.bd-cheatsheet article {
display: inherit; /* 1 */
- gap: inherit; /* 1 */
+ grid-template-rows: auto;
grid-template-columns: 1fr 4fr;
grid-column: 1 / span 2;
- grid-template-rows: auto;
+ gap: inherit; /* 1 */
}
.bd-aside {
diff --git a/site/content/docs/5.1/examples/features/features.css b/site/content/docs/5.1/examples/features/features.css
index 33942f7f13..cf66e7e206 100644
--- a/site/content/docs/5.1/examples/features/features.css
+++ b/site/content/docs/5.1/examples/features/features.css
@@ -30,8 +30,8 @@
.icon-link > .bi {
margin-top: .125rem;
margin-left: .125rem;
- transition: transform .25s ease-in-out;
fill: currentColor;
+ transition: transform .25s ease-in-out;
}
.icon-link:hover > .bi {
transform: translate(.25rem);