Skip to content

Commit d445cdc

Browse files
committed
more
1 parent 225dc5e commit d445cdc

File tree

4 files changed

+2
-46
lines changed

4 files changed

+2
-46
lines changed

scss/_mixins.scss

Lines changed: 0 additions & 41 deletions
This file was deleted.

scss/mixins/index.scss

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,3 @@
2929
@forward "box-shadow";
3030
@forward "gradients";
3131
@forward "transition";
32-
33-
// Layout
34-
@forward "clearfix";

site/src/content/docs/content/tables.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ Border styles, active styles, and table variants are not inherited by nested tab
439439

440440
## How nesting works
441441

442-
To prevent _any_ styles from leaking to nested tables, we use the child combinator (`>`) selector in our CSS. Since we need to target all the `td`s and `th`s in the `thead`, `tbody`, and `tfoot`, our selector would look pretty long without it. As such, we use the rather odd looking `.table > :not(caption) > * > *` selector to target all `td`s and `th`s of the `.table`, but none of any potential nested tables.
442+
To prevent *any* styles from leaking to nested tables, we use the child combinator (`>`) selector in our CSS. Since we need to target all the `td`s and `th`s in the `thead`, `tbody`, and `tfoot`, our selector would look pretty long without it. As such, we use the rather odd looking `.table > :not(caption) > * > *` selector to target all `td`s and `th`s of the `.table`, but none of any potential nested tables.
443443

444444
Note that if you add `<tr>`s as direct children of a table, those `<tr>` will be wrapped in a `<tbody>` by default, thus making our selectors work as intended.
445445

site/src/content/docs/customize/color.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ Within `scss/_variables.scss`, you’ll find Bootstrap’s color variables and S
450450

451451
{/*<ScssDocs name="colors-map" file="scss/_variables.scss" />*/}
452452

453-
Add, remove, or modify values within the map to update how they’re used in many other components. Unfortunately at this time, not _every_ component utilizes this Sass map. Future updates will strive to improve upon this. Until then, plan on making use of the `${color}` variables and this Sass map.
453+
Add, remove, or modify values within the map to update how they’re used in many other components. Unfortunately at this time, not *every* component utilizes this Sass map. Future updates will strive to improve upon this. Until then, plan on making use of the `${color}` variables and this Sass map.
454454

455455
### Example
456456

0 commit comments

Comments
 (0)