diff options
| author | Martijn Cuppens <[email protected]> | 2020-02-03 10:34:20 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-02-03 11:34:20 +0200 |
| commit | fb91ee4d84b9f2028bc7d74c6c4cc9996cdda4e4 (patch) | |
| tree | f59e07641169c6c232c8ffd4fc2231d72c8af9f2 /site | |
| parent | ef6c13c5347637e78e0a2be53f25b09ed8aebb2a (diff) | |
| download | bootstrap-fb91ee4d84b9f2028bc7d74c6c4cc9996cdda4e4.tar.xz bootstrap-fb91ee4d84b9f2028bc7d74c6c4cc9996cdda4e4.zip | |
Cleanup content (#30120)
Diffstat (limited to 'site')
| -rw-r--r-- | site/assets/scss/_content.scss | 55 |
1 files changed, 27 insertions, 28 deletions
diff --git a/site/assets/scss/_content.scss b/site/assets/scss/_content.scss index 9bb9e7e67..f264b5235 100644 --- a/site/assets/scss/_content.scss +++ b/site/assets/scss/_content.scss @@ -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] { @@ -19,6 +18,20 @@ 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 @@ -37,11 +50,16 @@ 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; } @@ -53,27 +71,7 @@ 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; +} |
