aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2013-12-03 13:57:28 -0800
committerChris Rebert <[email protected]>2013-12-03 13:57:28 -0800
commit303f8a33c354b5c8f6132574de55114b8f39a1f1 (patch)
treec8558cf8448ac148b80860f8ececcd41e1060bb9 /less
parentbac153127c4fc9a8f7d511b1424f73f089b1cbb6 (diff)
downloadbootstrap-303f8a33c354b5c8f6132574de55114b8f39a1f1.tar.xz
bootstrap-303f8a33c354b5c8f6132574de55114b8f39a1f1.zip
add <table> case to responsive-visibility mixin; see #10056
Diffstat (limited to 'less')
-rw-r--r--less/mixins.less5
1 files changed, 3 insertions, 2 deletions
diff --git a/less/mixins.less b/less/mixins.less
index 8da6b23ef..4f58d3060 100644
--- a/less/mixins.less
+++ b/less/mixins.less
@@ -560,9 +560,10 @@
// More easily include all the states for responsive-utilities.less.
.responsive-visibility() {
display: block !important;
- tr& { display: table-row !important; }
+ table& { display: table; }
+ tr& { display: table-row !important; }
th&,
- td& { display: table-cell !important; }
+ td& { display: table-cell !important; }
}
.responsive-invisibility() {