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:
authorChris Rebert <code@rebertia.com>2014-12-23 04:02:29 +0300
committerChris Rebert <code@rebertia.com>2014-12-23 04:24:26 +0300
commitd84f726da4f55434de853202961310d153f35739 (patch)
tree3af2679a786d86e570a02acc629f106462a0a994
parent15c9c3aef7f047c9cce45fd33ada799e99fbd390 (diff)
IE11 & current Firefox are still affected.
Refs #11623
-rw-r--r--less/tables.less4
1 files changed, 2 insertions, 2 deletions
diff --git a/less/tables.less b/less/tables.less
index ba24498a39..3c801aedbb 100644
--- a/less/tables.less
+++ b/less/tables.less
@@ -133,7 +133,7 @@ th {
// Reset default table behavior
table col[class*="col-"] {
- position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)
+ position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
float: none;
display: table-column;
}
@@ -141,7 +141,7 @@ table {
td,
th {
&[class*="col-"] {
- position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)
+ position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
float: none;
display: table-cell;
}