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
diff options
context:
space:
mode:
Diffstat (limited to 'scss/_tables.scss')
-rw-r--r--scss/_tables.scss8
1 files changed, 6 insertions, 2 deletions
diff --git a/scss/_tables.scss b/scss/_tables.scss
index 95d1c4a867..d1fbdc21d2 100644
--- a/scss/_tables.scss
+++ b/scss/_tables.scss
@@ -12,12 +12,16 @@
td {
padding: $table-cell-padding;
vertical-align: top;
- border-top: $table-border-width solid $table-border-color;
+ border-bottom: $table-border-width solid $table-border-color;
+ }
+
+ td {
+ border-bottom: $table-border-width solid $table-border-color;
}
thead th {
vertical-align: bottom;
- border-bottom: (2 * $table-border-width) solid $table-border-color;
+ border-bottom-color: $table-head-border-color;
}
tbody + tbody {