aboutsummaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2021-09-13 22:02:37 -0600
committerGitHub <[email protected]>2021-09-13 22:02:37 -0600
commit70533dcdb84484af4320817a4a36b47ddf0e56f9 (patch)
treefc1b9f737f926af54b67eebfb75eb6a27b23b2cf /scss
parentfde2544899f6728dea35591741662935d56b0362 (diff)
parentc9af4565fdc13eff025736e574ea10690fd21a39 (diff)
downloadbootstrap-split-vars-maps-import.tar.xz
bootstrap-split-vars-maps-import.zip
Merge branch 'main' into split-vars-maps-importsplit-vars-maps-import
Diffstat (limited to 'scss')
-rw-r--r--scss/_tables.scss8
-rw-r--r--scss/mixins/_visually-hidden.scss2
2 files changed, 7 insertions, 3 deletions
diff --git a/scss/_tables.scss b/scss/_tables.scss
index d474ad566..e10e4c4e4 100644
--- a/scss/_tables.scss
+++ b/scss/_tables.scss
@@ -39,8 +39,8 @@
}
// Highlight border color between thead, tbody and tfoot.
- > :not(:last-child) > :last-child > * {
- border-bottom-color: $table-group-separator-color;
+ > :not(:first-child) {
+ border-top: (2 * $table-border-width) solid $table-group-separator-color;
}
}
@@ -91,6 +91,10 @@
> :not(caption) > * > * {
border-bottom-width: 0;
}
+
+ > :not(:first-child) {
+ border-top-width: 0;
+ }
}
// Zebra-striping
diff --git a/scss/mixins/_visually-hidden.scss b/scss/mixins/_visually-hidden.scss
index ed7bc9c13..4fc7f49d6 100644
--- a/scss/mixins/_visually-hidden.scss
+++ b/scss/mixins/_visually-hidden.scss
@@ -3,7 +3,7 @@
// Hide content visually while keeping it accessible to assistive technologies
//
// See: https://www.a11yproject.com/posts/2013-01-11-how-to-hide-content/
-// See: https://hugogiraudel.com/2016/10/13/css-hide-and-seek/
+// See: https://kittygiraudel.com/2016/10/13/css-hide-and-seek/
@mixin visually-hidden() {
position: absolute !important;