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

github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/stylesheets/bootstrap/_tables.scss')
-rw-r--r--assets/stylesheets/bootstrap/_tables.scss13
1 files changed, 6 insertions, 7 deletions
diff --git a/assets/stylesheets/bootstrap/_tables.scss b/assets/stylesheets/bootstrap/_tables.scss
index 8ec35b9..c04e7c9 100644
--- a/assets/stylesheets/bootstrap/_tables.scss
+++ b/assets/stylesheets/bootstrap/_tables.scss
@@ -10,7 +10,6 @@
th,
td {
padding: $table-cell-padding;
- line-height: $line-height;
vertical-align: top;
border-top: $table-border-width solid $table-border-color;
}
@@ -109,7 +108,7 @@
.table-responsive {
display: block;
width: 100%;
- min-height: 0.01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)
+ min-height: .01%; // Workaround for IE9 bug (see https://github.com/twbs/bootstrap/issues/14837)
overflow-x: auto;
// TODO: find out if we need this still.
@@ -172,15 +171,14 @@
tbody,
tfoot {
&:last-child {
- tr:last-child {
- th,
- td {
- border-bottom: $table-border-width solid $table-border-color;
- }
+ tr:last-child th,
+ tr:last-child td {
+ border-bottom: $table-border-width solid $table-border-color;
}
}
}
+ // scss-lint:disable ImportantRule
tr {
float: left;
@@ -190,4 +188,5 @@
border: $table-border-width solid $table-border-color;
}
}
+ // scss-lint:enable ImportantRule
}