Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/scss
diff options
context:
space:
mode:
authorMartijn Cuppens <martijn.cuppens@gmail.com>2020-12-11 16:49:22 +0300
committerGitHub <noreply@github.com>2020-12-11 16:49:22 +0300
commit62eb5a323226bf61dffaa40a6350b76b46225cc1 (patch)
tree6fc78b1476414433ea1cc1e4089c692ea60782a9 /scss
parent81042ff467827361359e4942e2b5637f4e49c9b9 (diff)
Use box shadows instead of linear gradients to colorize tables (#32348)
Co-authored-by: XhmikosR <xhmikosr@gmail.com>
Diffstat (limited to 'scss')
-rw-r--r--scss/_tables.scss2
1 files changed, 1 insertions, 1 deletions
diff --git a/scss/_tables.scss b/scss/_tables.scss
index 506c60be0e..50368293a9 100644
--- a/scss/_tables.scss
+++ b/scss/_tables.scss
@@ -25,8 +25,8 @@
> :not(caption) > * > * {
padding: $table-cell-padding-y $table-cell-padding-x;
background-color: var(--#{$variable-prefix}table-bg);
- background-image: linear-gradient(var(--#{$variable-prefix}table-accent-bg), var(--#{$variable-prefix}table-accent-bg));
border-bottom-width: $table-border-width;
+ box-shadow: inset 0 0 0 9999px var(--#{$variable-prefix}table-accent-bg);
}
> tbody {