]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Cleanup content (#30120)
authorMartijn Cuppens <martijn.cuppens@gmail.com>
Mon, 3 Feb 2020 09:34:20 +0000 (10:34 +0100)
committerGitHub <noreply@github.com>
Mon, 3 Feb 2020 09:34:20 +0000 (11:34 +0200)
site/assets/scss/_content.scss

index 9bb9e7e6790371874665414284491bbede4f4a19..f264b523570b2d56699ad4ef8df07091cf8c1da3 100644 (file)
@@ -1,13 +1,12 @@
-// stylelint-disable no-duplicate-selectors, selector-max-combinators, selector-max-compound-selectors, selector-max-type, selector-no-qualifying-type
-
 //
-// Automatically style Markdown-based tables like a Bootstrap `.table`.
+// Bootstrap docs content theming
 //
 
 .bd-content {
   order: 1;
 
   // Hack the sticky header
+  // stylelint-disable selector-no-qualifying-type
   > h2[id],
   > h3[id],
   > h4[id] {
       margin-top: -6rem;
       content: "";
     }
+    // stylelint-enable selector-no-qualifying-type
+  }
+
+  > h2:not(:first-child) {
+    margin-top: 3rem;
+  }
+
+  > h3 {
+    margin-top: 1.5rem;
+  }
+
+  > ul li,
+  > ol li {
+    margin-bottom: .25rem;
   }
 
   // Override Bootstrap defaults
 
     th,
     td {
-      &:first-child { padding-left: 0; }
-      &:not(:last-child) { padding-right: 1.5rem; }
+      &:first-child {
+        padding-left: 0;
+      }
+
+      &:not(:last-child) {
+        padding-right: 1.5rem;
+      }
     }
 
-    // Prevent breaking of code (e.g., Grunt tasks list)
+    // Prevent breaking of code
     td:first-child > code {
       white-space: nowrap;
     }
   pointer-events: auto;
 }
 
-//
-// Docs sections
-//
-
-.bd-content {
-  > h2:not(:first-child) {
-    margin-top: 3rem;
-  }
-
-  > h3 {
-    margin-top: 1.5rem;
-  }
-
-  > ul li,
-  > ol li {
-    margin-bottom: .25rem;
-  }
-}
-
 .bd-title {
-  margin-bottom: .5rem;
   @include font-size(3rem);
 }
 
@@ -82,5 +80,6 @@
   font-weight: 300;
 }
 
-.bd-text-purple { color: $bd-purple; }
-.bd-text-purple-bright { color: $bd-purple-bright; }
+.bd-text-purple-bright {
+  color: $bd-purple-bright;
+}