aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2020-05-14 10:43:33 -0700
committerGitHub <[email protected]>2020-05-14 19:43:33 +0200
commit46d876314b37e1ada096f259f74cf0c54dcd8618 (patch)
tree8aaacaa64e79576af93850299e52e58c983762ab
parent5d11d5790a00444bdc6625c7229c86bb1a162350 (diff)
downloadbootstrap-46d876314b37e1ada096f259f74cf0c54dcd8618.tar.xz
bootstrap-46d876314b37e1ada096f259f74cf0c54dcd8618.zip
Split table cell padding variables (#30815)
-rw-r--r--scss/_reboot.scss4
-rw-r--r--scss/_tables.scss4
-rw-r--r--scss/_variables.scss6
-rw-r--r--site/content/docs/5.0/migration.md1
4 files changed, 9 insertions, 6 deletions
diff --git a/scss/_reboot.scss b/scss/_reboot.scss
index 2b4eb37b4..d66223a96 100644
--- a/scss/_reboot.scss
+++ b/scss/_reboot.scss
@@ -363,8 +363,8 @@ table {
}
caption {
- padding-top: $table-cell-padding;
- padding-bottom: $table-cell-padding;
+ padding-top: $table-cell-padding-y;
+ padding-bottom: $table-cell-padding-y;
color: $table-caption-color;
text-align: left;
}
diff --git a/scss/_tables.scss b/scss/_tables.scss
index 6aba4def2..b7a50b42a 100644
--- a/scss/_tables.scss
+++ b/scss/_tables.scss
@@ -24,7 +24,7 @@
// Another advantage is that this generates less code and makes the selector less specific making it easier to override.
// stylelint-disable-next-line selector-max-universal
> :not(caption) > * > * {
- padding: $table-cell-padding;
+ padding: $table-cell-padding-y $table-cell-padding-x;
background-color: var(--bs-table-bg);
background-image: linear-gradient(var(--bs-table-accent-bg), var(--bs-table-accent-bg));
border-bottom-width: $table-border-width;
@@ -62,7 +62,7 @@
.table-sm {
// stylelint-disable-next-line selector-max-universal
> :not(caption) > * > * {
- padding: $table-cell-padding-sm;
+ padding: $table-cell-padding-y-sm $table-cell-padding-x-sm;
}
}
diff --git a/scss/_variables.scss b/scss/_variables.scss
index 8b9979e32..2d8aa51cb 100644
--- a/scss/_variables.scss
+++ b/scss/_variables.scss
@@ -470,8 +470,10 @@ $mark-bg: #fcf8e3 !default;
// Customizes the `.table` component with basic values, each used across all table variations.
// scss-docs-start table-variables
-$table-cell-padding: .5rem !default;
-$table-cell-padding-sm: .25rem !default;
+$table-cell-padding-y: .5rem !default;
+$table-cell-padding-x: .5rem !default;
+$table-cell-padding-y-sm: .25rem !default;
+$table-cell-padding-x-sm: .25rem !default;
$table-cell-vertical-align: top !default;
diff --git a/site/content/docs/5.0/migration.md b/site/content/docs/5.0/migration.md
index 98b7036a6..bbaf43d8d 100644
--- a/site/content/docs/5.0/migration.md
+++ b/site/content/docs/5.0/migration.md
@@ -85,6 +85,7 @@ Changes to Reboot, typography, tables, and more.
- Nested tables do not inherit styles anymore.
- `.thead-light` and `.thead-dark` are dropped in favor of the `.table-*` variant classes which can be used for all table elements (`thead`, `tbody`, `tfoot`, `tr`, `th` and `td`).
- The `table-row-variant()` mixin is renamed to `table-variant()` and accepts only 2 parameters: `$color` (colon name) and `$value` (color code). The border color and accent colors are automatically calculated based on the table factor variables.
+- Split table cell padding variables into `-y` and `-x`.
- Dropped `.pre-scrollable` class. [See #29135](https://github.com/twbs/bootstrap/pull/29135)
- `.text-*` utilities do not add hover and focus states to links anymore. `.link-*` helper classes can be used instead. [See #29267](https://github.com/twbs/bootstrap/pull/29267)
- Drop `.text-justify` class. [See #229793](https://github.com/twbs/bootstrap/pull/29793)